Quick Start
This is the 10-minute walkthrough. If you want a slower, fully annotated tutorial with error recovery, see First Artifact Tutorial.
By the end of this page you will have:
- An initialized Forgeplan workspace
- A routed and validated PRD
- ADI reasoning captured
- Evidence linked to the PRD
- An
R_eff > 0score - An artifact in
activestate
0. Install
Section titled “0. Install”If you have not installed Forgeplan yet, see Installation.
Verify it works:
forgeplan --version# forgeplan 0.18.01. Initialize a workspace
Section titled “1. Initialize a workspace”cd /path/to/your/projectforgeplan init -yThis creates .forgeplan/ with empty prds/, rfcs/, adrs/, evidence/
directories and a config.yaml. The -y flag skips interactive prompts
(required for AI agents).
forgeplan health# -> 0 artifacts, 0 blind spots. Workspace ready.2. Route your task
Section titled “2. Route your task”Before writing anything, let Forgeplan pick the right depth:
forgeplan route "add user authentication"Depth: StandardPipeline: PRD → RFCConfidence: 90%Next: forgeplan new prd "User Authentication"Standard means you create a PRD for the “what” and an RFC for the “how”.
For more context see Routing & Depth.
3. Shape — create the PRD
Section titled “3. Shape — create the PRD”forgeplan new prd "User Authentication"# -> Created: PRD-001 at .forgeplan/prds/PRD-001-user-authentication.mdOpen the file and fill the MUST sections:
- Problem — why does this exist?
- Goals — what does success look like? (SMART criteria)
- Non-Goals — what is explicitly out of scope?
- Target Users — who benefits?
- Functional Requirements (FR) —
[Actor] can [capability]
4. Validate
Section titled “4. Validate”forgeplan validate PRD-001Expected:
PRD-001: PASS ✓ (0 MUST errors, 2 SHOULD warnings)If you see MUST errors, the sections are missing or empty. Fix them and re-run. The validator also catches implementation leakage: writing “Use JWT” in a requirement fails the gate — requirements describe WHAT, not HOW.
5. Reason (ADI)
Section titled “5. Reason (ADI)”For Standard depth, ADI is recommended. For Deep and Critical, it is mandatory:
forgeplan reason PRD-001The router generates 3+ hypotheses, derives predictions for each, and scores them against any evidence already in the workspace. The output is stored with the artifact so future readers can see how you arrived at the decision.
Want FPF knowledge-base context injected into the prompt?
forgeplan reason PRD-001 --fpfSee ADI Reasoning for the full cycle.
6. Build
Section titled “6. Build”Code your feature. The critical rule: write a test for every pub fn
before moving to the next function. Tests become Evidence in step 7.
When the feature is done:
cargo test # or your equivalentcargo fmtcargo checkAll must be green before you activate.
7. Prove — create Evidence
Section titled “7. Prove — create Evidence”forgeplan new evidence "Auth tests — 12 pass, JWT validate 0.3ms"# -> Created: EVID-001Open the evidence file and add the structured fields block to the body:
## Structured Fields
verdict: supportscongruence_level: 3evidence_type: testWithout these fields, the R_eff parser assigns CL0 (0.9 penalty) and your score collapses to near zero. This is the number one beginner mistake.
Link the evidence to the PRD:
forgeplan link EVID-001 PRD-001 --relation informs8. Check the score
Section titled “8. Check the score”forgeplan score PRD-001PRD-001: R_eff = 1.00 — Adequate EVID-001: supports, CL3, test -> score 1.0If R_eff is 0.0, check: (a) is evidence linked? (b) does evidence body contain the structured fields? See Evidence & R_eff.
9. Activate
Section titled “9. Activate”forgeplan review PRD-001# -> Review PASSED — ready to activate
forgeplan activate PRD-001# -> draft → activeThe validation gate runs one more time on activation. If it fails, the transition is rejected.
10. Verify health
Section titled “10. Verify health”forgeplan healthArtifacts: 1 (1 active, 0 draft, 0 stale)Blind spots: 0Orphans: 0Evidence coverage: 100%You now have a fully traced decision with measurable trust. Future-you (or your teammate) can open PRD-001 in six months and see: the problem, the goals, the ADI hypotheses, the chosen approach, and the evidence that justified it.
The full cycle (cheat sheet)
Section titled “The full cycle (cheat sheet)”Route → Shape → Validate → Reason → Build → Prove → Activate 1 2 3 4 5 6 7
1. forgeplan route "task"2. forgeplan new prd "Title" # fill MUST sections3. forgeplan validate PRD-XXX4. forgeplan reason PRD-XXX # ADI, mandatory on Deep+5. code + test6. forgeplan new evidence "..." + link + score7. forgeplan review + activateNext steps
Section titled “Next steps”- First Artifact Tutorial — 20-minute guided version with error recovery
- Methodology Overview — the 10 rules
- CLI Reference — every command documented
- Configuration — LLM providers, embeddings, git sync
- Marketplace Overview — plugins for
/audit,/sprint,/fpfand more