一键导入
help
Command reference and workflow guide for Plan-Build-Run.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Command reference and workflow guide for Plan-Build-Run.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | help |
| description | Command reference and workflow guide for Plan-Build-Run. |
| allowed-tools | Read, Bash |
| argument-hint | [command] |
STOP — DO NOT READ THIS FILE. You are already reading it. This prompt was injected into your context by Claude Code's plugin system. Using the Read tool on this SKILL.md file wastes tokens. Begin executing Step 1 immediately.
Before ANY tool calls, display this banner:
╔══════════════════════════════════════════════════════════════╗
║ PLAN-BUILD-RUN ► COMMAND REFERENCE ║
╚══════════════════════════════════════════════════════════════╝
Then proceed to Step 1.
If $ARGUMENTS contains a command name (e.g., plan, build, review, config, quick), show detailed help for just that command:
pbr-tools skill-metadata $ARGUMENTS
Parse the JSON response.
If the response contains a name field (success): Display a formatted detail block:
| Field | Value |
|---|---|
| Command | /pbr:{name} |
| Description | {description} |
| Arguments | {argument_hint} (or "None" if empty) |
| Allowed Tools | {allowed_tools} joined with ", " |
If the response contains an error field (not found): Tell the user the command was not found. List available commands from the available array, formatted as /pbr:{name}.
STOP after displaying single-skill help. Do not continue to Step 2.
If no argument was provided, display the full command reference:
pbr-tools help
Parse the JSON response. The result has a .skills array of objects with name, description, and argument_hint fields.
Group the skills into these categories based on skill name:
Skills not matching any category go under Other.
| Command | Description |
|---|---|
/pbr:{name} {argument_hint} | {description} |
Format command names as /pbr:{name} with the argument_hint appended (space-separated) when present.
Not sure which command to use? Follow this guide:
| I want to... | Command |
|---|---|
| Start a new project | /pbr:new-project |
| Fix a bug or investigate an error | /pbr:debug |
| Think through an idea or approach | /pbr:explore |
| Do a small task (≤3 files) | /pbr:quick |
| Plan a complex change (4+ files) | /pbr:plan-phase <N> |
| See where I am and what's next | /pbr:progress |
| Auto-execute the next step | /pbr:continue |
| Describe something and let PBR route it | /pbr:do <description> |
| Lock decisions for a specific phase | /pbr:discuss-phase <N> |
| Check project health | /pbr:health |
/pbr:new-project ← Start project, define requirements, create roadmap
/pbr:discuss-phase 1 ← (optional) Talk through phase details
/pbr:plan-phase 1 ← Plan the first phase
/pbr:execute-phase 1 ← Build it
/pbr:verify-work 1 ← Verify it works
/pbr:plan-phase 2 ← Plan the next phase
... ← Repeat plan → build → review
/pbr:complete-milestone ← Archive when done
Shortcut: After /pbr:new-project, run /pbr:continue repeatedly — it auto-advances through plan → build → review → next phase, stopping at milestones and errors.
/pbr:progress | /pbr:continue | /pbr:do <text> | |
|---|---|---|---|
| Purpose | Dashboard — show progress, suggest next | Auto-execute the next logical step | Route freeform text to a skill |
| Reads state? | Yes (full scan) | Yes (minimal) | No |
| Modifies files? | Never | Yes (via delegation) | Depends on routed skill |
| Asks questions? | If multiple options | Never — fully automatic | Only if ambiguous |
| Use when... | You want to see where you are before deciding | You trust PBR to pick and run the next step | You'd rather describe a task in plain English |
| Hard stops | N/A | Milestones, checkpoints, errors, verification gaps, session phase limit | N/A |
aggressive (delegate everything) | balanced | minimal (run inline)quick (skip research, ~50% cheaper) | standard | comprehensive (~2x cost).planning/STATE.md (position), .planning/ROADMAP.md (phases), .planning/config.json (settings)/pbr:settings to change depth, models, gates, parallelizationclaude agents in your terminal to see all registered PBR agents and verify loading/pbr:quick for creative/visual work where structured planning adds overhead without benefit..planning/ commits can be filtered using phase branching (git.branching: phase) which squash-merges code-only changes to main.session_phase_limit phases (default 3), PBR auto-pauses and resumes with a fresh context. In TMUX, this is seamless. Configure via /pbr:settings session_phase_limit <N>./pbr:explore can create seed files (.planning/seeds/) with trigger conditions. Seeds auto-inject into planning when their trigger phase is reached.
╔══════════════════════════════════════════════════════════════╗
║ ▶ NEXT UP ║
╚══════════════════════════════════════════════════════════════╝
- `/pbr:new-project` — start a new project
- `/pbr:progress` — check current project status
- `/pbr:settings` — configure workflow settings
- `/pbr:help <command>` — detailed help for a specific command
Run multiple phases hands-free. Chains discuss, plan, build, and verify automatically.
Start a new project. Deep questioning, research, requirements, and roadmap.
Execute all plans in a phase. Spawns agents to build in parallel, commits atomically.
Configure settings: depth, model profiles, features, git, and gates.
Execute the next logical step automatically. No prompts, no decisions — just do it.
Systematic debugging with hypothesis testing. Persistent across sessions.