recursive-status to get a high-level view of a run’s progress and health. Use lint-recursive-run to validate artifact structure in detail before locking a phase.
recursive-status
recursive-status shows the current state of a run: which phases are complete, which are locked, which have audit blockers, and whether the lock chain is intact.
What it shows
- Phase-by-phase status (draft, pass, locked)
- Lock-chain validity for each locked artifact
- Audit blockers that would prevent a phase from passing
- Missing required fields or malformed lock fields
Usage
<run-id> with the run directory name under /.recursive/run/ (for example, 2026-04-09-add-search).
Output
The script prints a summary for each phase artifact found in the run directory. For each artifact you will see:- The phase filename and its current
Statusfield value - Whether the phase is
LOCKEDand whether theLockHashis still valid - Any audit blockers (for example, a missing
Audit: PASSline, an undeclared TDD mode, or a requirement with no disposition)
lint-recursive-run
lint-recursive-run performs a thorough structural audit of all phase artifacts in a run. It checks artifact headers, required sections, gate completeness, lock fields, and audit-discipline rules.
What it checks
- Required header fields are present and non-empty
- Audited phases include all required audit sections (
Audit Context,Effective Inputs Re-read, and others) - Gate fields (
Coverage,Approval,Audit) are present and hold valid values Status: LOCKEDartifacts have bothLockedAtandLockHashfields- Requirement traceability entries exist for every in-scope
R#in the applicable artifacts - TDD mode is declared in
03-implementation-summary.md - QA execution mode is declared in
05-manual-qa.md - Diff basis fields are present in all diff-audited artifacts
Usage
When to run lint
Lint passes but status still shows blockers
Lint passes but status still shows blockers
recursive-status and lint-recursive-run check overlapping but distinct things. The status script focuses on lock-chain integrity and high-level phase progression; the lint script checks structural conformance in detail. Run both before locking a phase.Lint reports a missing section in a late-phase artifact
Lint reports a missing section in a late-phase artifact
Late-phase artifacts (phases 6, 7, and 8) are compact delta receipts that point to control-plane docs. Some audit-section requirements apply to these phases; check the lint output message for the specific field or heading that is missing.