New - pm-ai-shipping (9th plugin) — AI Shipping Kit: document a vibe-coded app, audit security/performance against intended behavior, map test coverage, and compile a reviewer-ready shipping packet (2 skills, 5 commands). - pm-execution: strategy-red-team skill + /red-team-prd command (now 16 skills, 11 commands). Changed - Bump all versions 1.0.1 -> 2.0.0 (marketplace.json + all 9 plugin.json) in lockstep. - README: new plugins.png hero + examples.png in "How It Works"; counts updated to 9 plugins / 68 skills / 42 commands across tagline, install block, and per-plugin sections. - CLAUDE.md: 9-plugin structure, plugin table, and version note updated. Validator: 9 plugins, 68 skills, 42 commands, 110 components, 0 warnings. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
3.2 KiB
description, argument-hint
| description | argument-hint |
|---|---|
| Reverse-engineer an AI-built codebase into the system documents reviewers and auditors need — a core set (architecture, flows, permissions, variables) plus conditional docs (emails, cron, SEO, automation) when they apply | <repo path or area; defaults to the whole repository> |
/document-app -- Make the System Reviewable
Produce the durable documentation an AI-built app is missing: an honest map of what the system is, who can do what, and where the risk lives. These docs are the foundation every later audit compares the code against.
Invocation
/document-app
/document-app supabase/functions
/document-app the backend
Workflow
Step 1: Scope
Audit $ARGUMENTS. If empty, document the whole repository, prioritizing backend code, auth, data access, background jobs, and anything that sends, schedules, or exposes data.
Step 2: Reverse-Engineer the Docs
Apply the shipping-artifacts skill. Reading the code as the source of truth, produce the applicable documents in /documentation/.
Core (always):
architecture.md— system overview, stack, auth flow, trust boundariesflows.md— the permission-relevant journeys: each protected step's authz check, the trust-boundary crossings, and the side effects each flow causespermissions.md— roles, scope derivation, resource × operation × role matrix, RLS vs. code-enforced checksvariables.md— config & secrets mapped to risk and rotation
Conditional (only if the capability exists — otherwise note its absence in one line):
emails.md— notification path, templates, retry/backoff, failure visibilitycron.md— scheduled-work inventory, idempotency, internal-call authseo.md— SPA preview approach, route coverage, metadata sanitizationautomation.md— embedded agents/automations: trigger, tool surface, steering vs. hard guardrails, output contract, app-owned side effects, approval gates
Be brutally honest about the current state without being paranoid. Skip any conditional document that doesn't apply and say so. Add a "Related Documents" reference in architecture.md for each doc produced. (The test-coverage map, tests.md, is produced separately by /derive-tests.)
Step 3: Report
Summarize what was created or updated, what was skipped and why, and any gaps where the code was too unclear to document confidently (those are the first things to fix).
Step 4: Offer Next Steps
- "Want me to derive a test-coverage map (
/derive-tests) so each documented rule has a verification plan?" - "Want me to run a security audit now that the intended behavior is documented?"
- "Should I check for performance issues — over-fetching, missing indexes, caching?"
- "Want me to run
/ship-checkto wire agent context and produce a full shipping packet?"
Notes
- These docs describe this system — keep generic theory and finished templates out.
- Write for two readers: a human reviewer and the next AI coding agent.
- Don't include an "updated date" line.
- The agent operating-context file (
CLAUDE.md/AGENTS.md) is produced separately at the/ship-checkhandoff step — it's instructions derived from these docs, not system documentation.