Skip to main content
After installing PM, run /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:
  1. Creates .conductor/state.json — the durable state of record for all epics, the detour stack, and reconcile links.
  2. Scans for any existing OpenSpec proposals and Superpowers plans and registers them as untriaged epics.
  3. 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.
  4. 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:
  • PriorityP0 (critical, do now) through P3 (low, do later). This is the primary sort key for /pm:next.
  • Statusactive (currently being built), queued (ready to start), later (deprioritized, not yet ready), planned (roadmap item, not yet scaffolded), or untriaged (just discovered, needs review).
If you have no existing OpenSpec proposals or Superpowers plans, PM starts with an empty backlog and you can add epics directly:
Lanes tell PM which execution tool owns the work: 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 /pm:status to see the full conductor briefing:
The briefing shows:
  • 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, and external.
This briefing is also what the 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:next to get a concrete, unambiguous recommendation for what to work on:
PM applies a simple, deterministic rule:
  • 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 queued epic (P0 before P1 before P2 before P3), skipping any epic blocked by an unresolved depends-on link and naming the blocker when it does skip.
There is no ambiguity in the output — you either resume a paused epic or you start the top-priority queued one.
5

Start building

Work in your chosen epic’s lane. The conductor stays aware via hooks:
  • After each git commit, a PostToolUse hook 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:detour to classify and handle it:
When a substantial detour is complete and you’re ready to return to the original epic, run /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:
PROJECT.md is a generated view — it is re-rendered from .conductor/state.json every time you run /pm:status or /pm:sync. Never hand-edit it. If you want to change epic state, use the PM commands (/pm:epic, /pm:detour, /pm:resume). Hand edits will be silently overwritten.

The basic loop

Once initialized, the day-to-day PM workflow is a short cycle:
Multi-epic batches follow a parallel track: use /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.