forgeplan discover complete
forgeplan discover complete <SESSION_ID> closes a brownfield discovery session. It marks the session row as completed, runs the recommendation pass over all accumulated findings, and prints a list of proposed artifacts — typically Problem cards, PRDs, Notes, and sometimes ADRs — for the user to create with forgeplan new.
This is where the brownfield pipeline turns raw findings into real methodology state.
When to use
Section titled “When to use”- After the agent has finished walking the source tiers and
discover showreports adequate coverage. - At the end of an onboarding sprint — crystalize everything learned into artifacts.
- When you want to stop a session and capture whatever was found so far — partial sessions still produce recommendations.
When NOT to use
Section titled “When NOT to use”- While the agent is still actively submitting findings — wait for it to settle.
- To abort without saving — there’s no rollback; once completed, proposals are emitted.
- On an already-completed session — idempotent but pointless.
forgeplan discover complete <SESSION_ID> [OPTIONS]Arguments
Section titled “Arguments” <SESSION_ID> Discovery session identifier (from discover list / start)Options
Section titled “Options” -h, --help Print help -V, --version Print versionExamples
Section titled “Examples”forgeplan discover complete disc-001
# Full onboarding loopforgeplan init -yforgeplan discover start# ... agent runs ...forgeplan discover show disc-001forgeplan discover complete disc-001# → proposals printed; create the ones you acceptforgeplan new prob "Auth drift between docs and code"forgeplan new prd "Unified config loader"What the recommendation pass does
Section titled “What the recommendation pass does”At completion, the engine:
- Groups findings by category (decisions, invariants, drift, debt, risks, ownership).
- Deduplicates — merges findings that reference the same module/concept.
- Maps categories to artifact kinds — drift → Problem, major decisions → ADR, gaps → PRD, observations → Note.
- Suggests depth — Tactical / Standard / Deep based on blast radius and reversibility heuristics.
- Emits proposals as a list of
forgeplan newcommands the user can accept, edit, or skip.
The user stays in control: proposals are printed, not auto-created.
How it fits
Section titled “How it fits”discover complete is the hand-off point from discovery to the normal Forgeplan lifecycle:
discover start → (findings) → discover complete → proposals ↓ forgeplan new prob/prd/adr/note ... ↓ validate → reason → activateFrom here, the project flows through the standard Shape → Validate → ADI → Code → Evidence → Activate cycle like any greenfield work.
See also
Section titled “See also”forgeplan discover— parent command + pipeline overviewforgeplan discover show— coverage check before completingforgeplan discover list— session indexforgeplan new— create the proposed artifactsforgeplan validate— next step after new- Methodology guide