/pm:init in any project to activate the conductor. PM wires up its hooks, scans for existing work, and writes the rules block that keeps it oriented across every future context compaction. This walk-through takes you from a fresh install to your first concrete work recommendation.
1
Initialize the conductor
Navigate to your project directory and run the init command:On first run, the conductor engine does four things:
- Creates
.conductor/state.json— the durable state of record for all epics, the detour stack, and reconcile links. - Scans for any existing OpenSpec proposals and Superpowers plans and registers them as untriaged epics.
- Writes the managed rules block into your project’s
CLAUDE.md. This block is the recurring briefing carrier — it tells every future agent (including post-compaction agents) how to drive PM correctly without re-reading the full documentation. - Renders
PROJECT.md— the generated human-readable view of the current project state.
/pm:init is safe to run more than once. If the project is already initialized, it is a no-op. Re-running will not overwrite your existing state or duplicate the rules block in CLAUDE.md.2
Triage your epics
After scaffolding, PM will present any epics it discovered and walk you through triage. For each epic you’ll set:Lanes tell PM which execution tool owns the work:
- Priority —
P0(critical, do now) throughP3(low, do later). This is the primary sort key for/pm:next. - Status —
active(currently being built),queued(ready to start),later(deprioritized, not yet ready),planned(roadmap item, not yet scaffolded), oruntriaged(just discovered, needs review).
openspec for spec-driven proposals, superpowers for Superpowers plans, claude-code for direct agentic work, decision for architecture decisions, and external for issues tracked outside the session.3
Check your status briefing
Run The briefing shows:
/pm:status to see the full conductor briefing:- The active epic — what PM considers currently in flight, with its lane and priority.
- The detour stack — any paused epics awaiting reconcile, listed from most-recent PUSH to oldest.
- The next-up queue — the top queued epics sorted by priority, with any blocked epics annotated with their blocker.
- Per-lane counts — a summary across
openspec,superpowers,claude-code,decision, andexternal.
SessionStart hook re-injects automatically after every context compaction — so you will see this view at the start of every new context window, not just when you run the command manually.4
Get a work recommendation
Run PM applies a simple, deterministic rule:
/pm:next to get a concrete, unambiguous recommendation for what to work on:- If the detour stack is non-empty, the recommendation is to resume the top of the stack (and run the reconcile gate first).
- Otherwise, the recommendation is the highest-priority
queuedepic (P0 before P1 before P2 before P3), skipping any epic blocked by an unresolveddepends-onlink and naming the blocker when it does skip.
5
Start building
Work in your chosen epic’s lane. The conductor stays aware via hooks:When a substantial detour is complete and you’re ready to return to the original epic, run
- After each
git commit, aPostToolUsehook nudges you to update the epic’s status and auto-detects whether the commit shape looks like an unlogged minimal detour. - If an interrupt arrives mid-build, use
/pm:detourto classify and handle it:
/pm:resume. PM pops the detour stack, dispatches a fresh-context reconciler agent to validate the paused epic against what the detour shipped, and writes the verdict back durably before allowing any further writes to the original epic.When an epic is fully complete, run /pm:sync to pick up any new proposals or plans that arrived during the build.Your project structure
After/pm:init, PM creates the following files in your project:
The basic loop
Once initialized, the day-to-day PM workflow is a short cycle:/pm:hierarchy to plan and dispatch a parent epic’s children as worktree-isolated, unattended agents that converge back through sequential merge.
Now that you have PM running, explore the full feature set:
- Core Concepts — epics, lanes, the detour stack, and the reconcile gate in depth.
- Commands — the complete reference for every PM command.