STOP — DO NOT READ THIS FILE. You are already reading it.
/pbr:backlog — Backlog Parking Lot
Manage ideas that aren't ready for active planning. Backlog items use 999.x numbering to stay outside the active phase sequence. They can be promoted to active phases when ready.
Step 0 — Banner
╔══════════════════════════════════════════════════════════════╗
║ PLAN-BUILD-RUN ► BACKLOG ║
╚══════════════════════════════════════════════════════════════╝
Subcommands
/pbr:backlog add <description>
- Create
.planning/phases/directory if needed - Find next 999.x number: scan for existing
999.*dirs, increment - Generate slug from description
- Create
.planning/phases/999.{x}-{slug}/ - Write a minimal PLAN.md with just the description as objective (no tasks — this is a placeholder)
- Display:
Backlog item 999.{x}: {description}
/pbr:backlog review
- Scan
.planning/phases/999.*directories - If none found: display "No backlog items." and exit
- For each item, read its PLAN.md objective
- Display all items in a numbered list
- Use AskUserQuestion for each item:
- Promote — Move to active milestone (renumber into current sequence)
- Keep — Leave in backlog
- Remove — Delete the directory
/pbr:backlog promote <N>
- Find the 999.{N} directory
- Determine next active phase number (highest non-999 phase + 1)
- Rename directory from
999.{N}-{slug}to{next}-{slug} - Update ROADMAP.md to include the new phase
- Display:
Promoted backlog item to Phase {next}: {slug}
Anti-Patterns
- DO NOT create backlog items for work that should be a todo — backlog is for phase-level ideas
- DO NOT auto-promote items — always require user decision
- DO NOT renumber existing active phases when promoting