一键导入
fast
Execute a trivial task inline without subagent overhead. No planning, no research — just do it and commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute a trivial task inline without subagent overhead. No planning, no research — just do it and commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
| name | fast |
| description | Execute a trivial task inline without subagent overhead. No planning, no research — just do it and commit. |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
| argument-hint | <task description> |
STOP — DO NOT READ THIS FILE. You are already reading it.
Execute a trivial task directly in the current context. No subagents, no PLAN.md, no research. For tasks like: fix a typo, update a config value, add a missing import, rename a variable, add a .gitignore entry, bump a version.
Use /pbr:quick for anything needing multi-step planning, research, or verification.
╔══════════════════════════════════════════════════════════════╗
║ PLAN-BUILD-RUN ► FAST ║
╚══════════════════════════════════════════════════════════════╝
If $ARGUMENTS is empty, ask: "What's the quick fix? (one sentence)"
Store as the task description.
A task is trivial if it needs:
If the task seems non-trivial, say:
This looks like it needs planning. Use /pbr:quick instead:
/pbr:quick "{task description}"
And stop.
Do the work directly:
No PLAN.md. No Task() spawn. Just do it.
Stage specific files (NEVER git add .) and commit:
git add {specific files}
git commit -m "{type}(fast): {concise description}"
Use conventional commit types: fix, feat, docs, chore, refactor as appropriate.
If .planning/quick/ exists, create a minimal tracking entry:
.planning/quick/ for highest existing number + 1.planning/quick/{NNN}-fast-{slug}/PLAN.md with a one-line plan.planning/quick/{NNN}-fast-{slug}/SUMMARY.md with the commit hash and descriptionThis ensures fast tasks appear in state tracking alongside quick tasks.
╔══════════════════════════════════════════════════════════════╗
║ FAST ✓ ║
╚══════════════════════════════════════════════════════════════╝
{commit hash} — {commit message}
Files: {changed files}
git add . — stage specific files/pbr:quick