shinpr/codex-workflows · Archived

recipe-reverse-engineer

Generate PRD and Design Docs from existing codebase through discovery, generation, verification, and review.

First seen Jul 22, 2026

Installation

$ npx skills add shinpr/codex-workflows --skill recipe-reverse-engineer

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from shinpr/codex-workflows · top by installs.

npx skills add shinpr/codex-workflows

Browse all from shinpr/codex-workflows

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 26
License LICENSE
Default branch main
Open issues 1
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 12,834 B
  • docs SUMMARY.md 139 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Required Skills [LOAD BEFORE EXECUTION]

  1. [LOAD IF NOT ACTIVE] documentation-criteria — document creation rules and templates
  2. [LOAD IF NOT ACTIVE] ai-development-guide — evidence and completeness discipline
  3. [LOAD IF NOT ACTIVE] subagents-orchestration-guide — agent coordination and review resolution
  4. [LOAD IF NOT ACTIVE] llm-friendly-context — generated document handoffs

Spawn rule: every spawnagent call uses forkturns="none" so the subagent receives only the task message and explicitly provided context.

Context: Reverse engineering workflow to create documentation from existing code

Target: $ARGUMENTS

Orchestrator Definition

Core Identity: Coordinate reverse engineering, perform lightweight artifact routing directly, and invoke specialists for discovery, document generation, and semantic review.

Execution Protocol:

  1. Invoke the named specialists for discovery, generation, and semantic review; perform artifact selection, routing, deterministic transformations, and status updates directly
  2. Process one step at a time: Execute steps sequentially within each unit (2 -> 3 -> 4 -> 5). Each step's output is the required input for the next step. Complete all steps for one unit before starting the next
  3. Pass $STEPNOUTPUT as-is to sub-agents -- the orchestrator bridges data without processing or filtering it, except for steps that explicitly define a deterministic transformation with an input schema, output schema, and mapping rules

Execution Plan: Reuse the active execution plan. When the workflow has multiple dependent actions and no plan exists, create one that tracks them through final verification.

Step 0: Initial Configuration

0.1 Scope Confirmation

Ask the user to confirm:

  1. Target path: Which directory/module to document
  2. Depth: PRD only, or PRD + Design Docs
  3. Reference Architecture: layered / mvc / clean / hexagonal / none
  4. Human review: Yes (recommended) / No (fully autonomous)

0.2 Output Configuration

  • PRD output: docs/prd/ or existing PRD directory
  • Design Doc output: docs/design/ or existing design directory
  • Verify directories exist, create if needed

Workflow Overview

Phase 1: PRD Generation
  Step 1: Scope Discovery (unified, single pass -> group into PRD units -> human review)
  Step 2-5: Per-unit loop (Generation -> Verification -> Review -> Revision)

Phase 2: Design Doc Generation (if requested)
  Step 6: Design Doc Scope Mapping (reuse Step 1 results, no re-discovery)
  Step 7-10: Per-unit loop (Generation -> Verification -> Review -> Revision)

Phase 1: PRD Generation

Confirm these steps are present in the plan:

  • Step 1: PRD Scope Discovery
  • Per-unit processing (Steps 2-5 for each unit)

Step 1: PRD Scope Discovery

Spawn scope-discoverer agent: "Discover functional scope targets in the codebase. targetpath: $USERTARGETPATH. referencearchitecture: $USERRACHOICE. focusarea: $USERFOCUS_AREA (if specified)."

Store output as: $STEP1OUTPUT

Quality Gate:

  • At least one unit discovered -> proceed
  • No units discovered -> ask user for hints
  • $STEP1OUTPUT.prdUnits exists
  • All sourceUnits across prdUnits (flattened, deduplicated) match the set of discoveredUnits IDs — no unit missing, no unit duplicated
  • Each discovered unit's unitInventory has at least one non-empty category. If all categories are empty, re-run discovery with focus on that unit

[STOP — BLOCKING] If human review enabled: Present $STEP1OUTPUT.prdUnits with their source unit mapping to user for confirmation. CANNOT proceed until user explicitly confirms.

Step 2-5: Per-Unit Processing

FOR each unit in $STEP1OUTPUT.prdUnits (sequential, one unit at a time):

Step 2: PRD Generation

Set $PRDUNITINVENTORY to the category-wise deduplicated union of unitInventory from the $STEP1OUTPUT.discoveredUnits named by $PRDUNITSOURCE_UNITS, preserving its routes, testFiles, and publicExports arrays.

Spawn prd-creator agent: "Create reverse-engineered PRD for the following feature. Operation Mode: reverse-engineer. External Scope Provided: true. Feature: $PRDUNITNAME. Description: $PRDUNITDESCRIPTION. Related Files: $PRDUNITCOMBINEDRELATEDFILES. Entry Points: $PRDUNITCOMBINEDENTRYPOINTS. Source Units: $PRDUNITSOURCEUNITS. Unit Inventory: $PRDUNIT_INVENTORY. Use provided scope as an investigation starting point. If tracing entry points reveals directly connected files outside this scope, include them. Create final version PRD based on thorough code investigation."

Store output as: $STEP2OUTPUT (PRD path)

Step 3: Code Verification

Prerequisite: $STEP2OUTPUT (PRD path from Step 2)

Spawn code-verifier agent: "Verify consistency between PRD and code implementation. doctype: prd. documentpath: $STEP2OUTPUT. codepaths: $PRDUNITCOMBINEDRELATEDFILES. unitinventory: $PRDUNITINVENTORY. verbose: false."

Apply Review Resolution to every discrepancy. Pass the apply discrepancies to prd-creator in update mode, rerun code-verifier, and store the resolved summary, declines with reasons, and material limitations as $STEP3RESOLUTION after the apply set becomes empty. A blocked or unusable result enters Orchestrator Escalation Resolution.

Step 4: Review

Required Input: $STEP3RESOLUTION (resolved verification evidence from Step 3)

Spawn document-reviewer agent: "Review the following PRD. doctype: PRD. target: $STEP2OUTPUT. verificationresolution: $STEP3RESOLUTION. Review alignment between PRD claims, resolved verification evidence, and in-scope inventory coverage."

Store output as: $STEP4OUTPUT

If verdict.decision is rejected, apply Orchestrator Escalation Resolution. Continue after an evidence-based self-resolution; ask the user only when that procedure reaches a user-decision condition.

Step 5: Revision (conditional)

  • If verdict.decision is needs_revision, apply Review Resolution with prd-creator, then retain the review of the updated artifact as the current review.
  • After the applicable revision bullets complete, continue to Unit Completion.

Unit Completion

  • Human review passed (if enabled in Step 0)

Next: Proceed to next unit. After all units -> Phase 2.

Phase 2: Design Doc Generation

Execute only if Design Docs were requested in Step 0

Confirm these steps are present in the plan:

  • Step 6: Design Doc Scope Mapping
  • Per-unit processing (Steps 7-10 for each unit)

Step 6: Design Doc Scope Mapping

Step type: Deterministic transformation step executed by the orchestrator.

No additional discovery required. Use $STEP1OUTPUT.discoveredUnits (implementation-granularity units) for technical profiles. Use $STEP1OUTPUT.prdUnits[].sourceUnits to trace which discovered units belong to each PRD unit.

Default mapping rule: Each PRD unit maps to exactly 1 Design Doc unit.

Only split one PRD unit into multiple Design Doc units when BOTH are true:

  1. The source units contain clearly separate technical boundaries with low shared-file overlap
  2. Separate Design Docs would improve verification clarity (different public interfaces, dependencies, or module groups)

If the split conditions are not clearly met, keep 1 PRD unit -> 1 Design Doc unit.

Transform $STEP1OUTPUT into $STEP6OUTPUT using only the mapping rules in this step.

Map PRD units to Design Doc generation targets by resolving each PRD unit's sourceUnits back to $STEP1OUTPUT.discoveredUnits, carrying forward:

  • technicalProfile.primaryModules -> Primary Files
  • technicalProfile.publicInterfaces -> Public Interfaces
  • dependencies -> Dependencies
  • relatedFiles -> Scope boundary
  • the category-wise deduplicated union of unitInventory from all resolved sourceUnits -> Unit Inventory

Store output as: $STEP6OUTPUT

$STEP6OUTPUT MUST be a JSON array of Design Doc generation targets in the following shape:

[
  {
    "unitId": "DD-001",
    "parentPrdUnitId": "PRD-001",
    "unitName": "Authentication",
    "unitDescription": "Current implementation for sign-in and session management",
    "sourceUnits": ["UNIT-001", "UNIT-002"],
    "primaryModules": ["src/auth/service.ts", "src/auth/controller.ts"],
    "publicInterfaces": ["AuthService.login()", "AuthController.handleLogin()"],
    "dependencies": ["UNIT-003"],
    "scopeBoundary": ["src/auth/*"],
    "unitInventory": {
      "routes": [],
      "testFiles": [],
      "publicExports": []
    },
    "mappingRationale": "Default 1:1 mapping from PRD unit because technical scope is cohesive"
  }
]

Quality Gate:

  • Every PRD unit appears in at least one $STEP6OUTPUT item
  • Every $STEP6OUTPUT item references only discovered units from its parent PRD unit
  • Every $STEP6OUTPUT.unitInventory is the union of routes, testFiles, and publicExports from all of its sourceUnits
  • mappingRationale explicitly states whether the mapping is default 1:1 or an intentional split

Step 7-10: Per-Unit Processing

FOR each unit in $STEP6OUTPUT (sequential, one unit at a time):

Step 7: Design Doc Generation

Scope: Document current architecture as-is. This is a documentation task, not a design improvement task.

Spawn technical-designer agent: "Create Design Doc for the following feature based on existing code. Operation Mode: reverse-engineer. Feature: $UNITNAME. Description: $UNITDESCRIPTION. Primary Files: $UNITPRIMARYMODULES. Public Interfaces: $UNITPUBLICINTERFACES. Dependencies: $UNITDEPENDENCIES. Unit Inventory: $UNITINVENTORY. Parent PRD: $APPROVEDPRDPATH. Document current architecture as-is. Use Unit Inventory as the completeness baseline."

Store output as: $STEP7OUTPUT

Step 8: Code Verification

Spawn code-verifier agent: "Verify consistency between Design Doc and code implementation. doctype: design-doc. documentpath: $STEP7OUTPUT. codepaths: $UNITSCOPEBOUNDARY. unitinventory: $UNIT_INVENTORY. verbose: false."

Apply Review Resolution to every discrepancy. Pass the apply discrepancies to technical-designer in update mode, rerun code-verifier, and store the resolved summary, declines with reasons, and material limitations as $STEP8RESOLUTION after the apply set becomes empty. A blocked or unusable result enters Orchestrator Escalation Resolution.

Step 9: Review

Required Input: $STEP8RESOLUTION (resolved verification evidence from Step 8)

Spawn document-reviewer agent: "Review the following Design Doc. doctype: DesignDoc. reviewcontext: as-is. target: $STEP7OUTPUT. verificationresolution: $STEP8RESOLUTION. Parent PRD: $APPROVEDPRD_PATH. Review technical accuracy, parent PRD scope, and in-scope unit boundary coverage."

Store output as: $STEP9OUTPUT

If verdict.decision is rejected, apply Orchestrator Escalation Resolution. Continue after an evidence-based self-resolution; ask the user only when that procedure reaches a user-decision condition.

Step 10: Revision (conditional)

  • If verdict.decision is needs_revision, apply Review Resolution with technical-designer, then retain the review of the updated artifact as the current review.
  • After the applicable revision bullets complete, continue to Unit Completion.

Unit Completion

  • Human review passed (if enabled in Step 0)

Next: Proceed to next unit. After all units -> Final Report.

Final Report

Output summary including:

  • Generated documents table (Type, Name, Verification Status, Review Status)
  • Remaining issues requiring manual intervention, with source ID and effect
  • Next steps checklist

Error Handling

Error Action
Discovery finds nothing Ask user for project structure hints
Generation fails Log failure, continue with other units, report in summary
Code verification is blocked or unusable Apply Orchestrator Escalation Resolution with the exact input or evidence problem
Review Resolution requires a user-owned decision Apply Orchestrator Escalation Resolution

Completion Criteria

  • Scope confirmed with user (target path, depth, architecture, human review preference)
  • Output directories verified/created
  • Phase 1: All PRD units discovered and processed (generation -> verification -> review -> revision)
  • Phase 2: All Design Doc units processed (if requested)
  • All human review points honored (if enabled)
  • Final report presented with document table, action items, and next steps