Documentation
CLICommands

ox plan

Work with SageOx-enriched implementation plans: enrich, render, and review. ox computes team-context signals (collision, prior-art, expert-routing) locally, with no LLM or network call.

Lifecycle verbs (approve, work, realize, abandon, supersede) are thin sugar over one event-log engine. Each accepts --json and is idempotent: re-running an already-applied verb is a safe no-op.

Usage

terminal
$

Subcommands

CommandDescription
ox plan enrichEnrich an implementation plan with SageOx team context (JSON by default)
ox plan renderRender a plan to a self-contained HTML page
ox plan reviewOpen a live review loop for a saved plan (serve, collect, auto-reload, approve)
ox plan listBrowse saved Ledger plans
ox plan viewRead a saved plan in the terminal
ox plan statusShow a saved plan's lifecycle timeline and current status
ox plan approveMark a saved plan approved
ox plan workRecord that a coding session worked on a saved plan
ox plan realizeMark a saved plan realized (its intent was carried out)
ox plan abandonMark a saved plan abandoned
ox plan supersedeMark a saved plan superseded by a successor plan

Examples

terminal
$

Consult team context before drafting a plan. Returns JSON badges (collision, prior-art, expert-routing) at zero LLM and network cost. Add --text for a human-readable summary.

terminal
$

Enrich an existing plan document (or pipe one on stdin). With no input, ox auto-discovers the newest ~/.claude/plans/*.md.

terminal
$

Render a plan to a self-contained HTML page and open it in your browser. On a saved plan, --open launches the live review loop, pass --static for a read-only page instead.

terminal
$

Serve a saved plan on a short-lived localhost server and stay up across review rounds. Reviewers mark up sections, risks, and decisions; each round writes to the Ledger and prints a digest for the agent.

What's next

  • ox pr - Emit a PR header that links the plans a change produced
  • ox viz - Author the visualizations a rendered plan can embed
  • ox session - Sessions record which plan they worked on