Reference / command line

The commands that
show the work.

The CLI is the narrowest way to inspect Forge. Use it for local status, readiness, C0 verification, the submission loop, and exact ledger readback.

forge statusenvironment + ledger

Reports the project root, Forge version, local ledger counts, and the observed AO health/readiness surface.

shell
uv run forge status
forge harnessesreadiness gate

Reports supported, installed, authorized, and explicitly smoke-tested harnesses. Two ready harnesses are required before cross-harness transfer can pass.

shell
uv run forge harnesses
forge run-c0frozen verifier

Runs the C0 fixture against an explicit candidate path. The verifier owns the tests and rejects missing or unsafe candidates.

shell
uv run forge run-c0 \
  --candidate path/to/c0_target.py
forge submission-mvp --reflectlearning path

Runs baseline → bounded repair → final verification → structured candidate reflection. It needs the configured provider for the reflection step.

shell
uv run forge submission-mvp --reflect
forge run <run_id>exact readback

Reads the persisted run and its ledger events. Use the printed run ID from the submission command rather than inventing a new one.

shell
uv run forge run submission-c0-82dffafc
Important: forge dashboard is a development scaffold, not a live public control plane. The public website intentionally does not present it as one.