用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rlaope/bestwork-agent --skill blitz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Evidence-driven causal tracing — competing hypotheses, falsification, rebuttal round, recommended next probes
Feature validation gate — research, define purpose, stress-test from real user perspective before building
Persistent completion mode — tasks must finish fully with verify/fix loops until done
基于 SOC 职业分类
正在显示 SKILL.md
| name | blitz |
| description | Maximum parallelism burst — all tasks execute simultaneously with no coordination overhead |
When this skill is invoked, you MUST follow this exact output sequence.
[BW] blitz — maximum parallelism, zero overhead...
Split the user's request into the MAXIMUM number of independent sub-tasks. Blitz splits more aggressively than trio:
[BW] blitz: {N} parallel tasks identified
1. "{task}" → bestwork:{agent}
2. "{task}" → bestwork:{agent}
...
N. "{task}" → bestwork:{agent}
[BW] launching all...
Print each launch line, then spawn immediately. Do NOT wait between spawns:
[BW] ▶ blitz: bestwork:{agent1} (task 1)
[BW] ▶ blitz: bestwork:{agent2} (task 2)
[BW] ▶ blitz: bestwork:{agent3} (task 3)
[BW] ▶ blitz: bestwork:{agent4} (task 4)
[BW] ▶ blitz: bestwork:{agent5} (task 5)
ALL agents use run_in_background: true. Every agent runs independently with no cross-communication.
For EACH agent, call TaskCreate so the user sees live spinners:
TaskCreate: subject="bestwork:{agent} (task N)", description="{task}", activeForm="bestwork:{agent} working..."
When done, TaskUpdate to completed.
[BW] ✓ task 3 done — bestwork:{agent3} — {summary}
[BW] ✓ task 1 done — bestwork:{agent1} — {summary}
[BW] ✓ task 5 done — bestwork:{agent5} — {summary}
[BW] ✓ task 2 done — bestwork:{agent2} — {summary}
[BW] ✗ task 4 failed — bestwork:{agent4} — {error}
If multiple agents edited the same file, detect and resolve:
[BW] blitz: conflict detected in {file}
[BW] task 2 wrote lines 10-20
[BW] task 4 wrote lines 15-25
[BW] resolving: merging changes (task 2 priority — completed first)
Run a single verification pass over all changes:
[BW] blitz verify: type check... {PASS|FAIL}
[BW] blitz verify: tests... {PASS|FAIL}
If any verify fails, fix inline (no retry loop — blitz is about speed).
[BW] ═══════════════════════════════════
[BW] blitz complete: {N} tasks, {M} parallel agents, {K} conflicts resolved
[BW] ═══════════════════════════════════
After printing the summary line, call report-writer (src/observe/report-writer.ts) to save detailed output:
writeReport("blitz", {
total: {N},
done: {M},
agents: [list of all agents used],
tasks: [list of task descriptions],
durationMs: {elapsed ms},
decisions: [conflict resolutions and key choices]
}, projectRoot)
Then call summarize (src/observe/result-summarizer.ts) and print the 1-liner:
[BW] ✓ {M}/{N} done — details: .bestwork/reports/blitz-{timestamp}.md