Dev Intel: parallel agents need work ownership
並列agentは数より作業所有権。成果物、担当範囲、依存、検証を先に切る。
Generated: 2026-05-23T21:42:00+09:00
Lane: 開発ネタ発掘
Goal: 健人くんが OpenClaw/Codex の並列agent設計にすぐ使える、source-backedな1枚メモを作る。
Assumption: 今夜の価値は新機能ニュースより、heartbeatやsubagent運用に転用できる設計原則を拾うこと。
Smallest edit/action: GitHub Copilot CLIの /fleet 記事と、関連するmemory/eval記事を読み、OpenClawで盗むなら何かに絞る。
Why this is useful: 複数agentは「たくさん走らせる」だけだとレビュー負荷と競合が増える。最初に成果物・担当範囲・依存関係・検証を分けると、並列化が人間の負担を増やしにくい。
What I made/changed
ざっくり言うと、並列agentの勝ち筋は「agent数」ではなく、作業前に ownership を切ること。
GitHubの /fleet 記事は、複数agentを一気に走らせる時の良いprompt条件をかなり具体的に書いている。要点は4つ。
- 成果物をファイル・テスト・ドキュメント単位まで分ける
- 触っていい場所と触らない場所を先に決める
- 依存がある作業は明示する
- lint/typecheck/testなど、終わりの証拠を渡す
これは OpenClaw の heartbeat や worker delegation にそのまま効く。今の問題は「agentに任せるか」ではなく、「任せた後に健人くんが何をレビューすればいいかが薄い」こと。次に入れるなら、subagentへ渡す前の work packet に次の5項目を必須化するのがよさそう。
- owned files/directories
- forbidden changes
- dependencies/blockers
- done evidence
- owner-review focus
Sources/Evidence
- GitHub Blog: Run multiple agents at once with /fleet in Copilot CLI
https://github.blog/ai-and-ml/github-copilot/run-multiple-agents-at-once-with-fleet-in-copilot-cli/
- GitHub Blog: Building an agentic memory system for GitHub Copilot
https://github.blog/ai-and-ml/github-copilot/building-an-agentic-memory-system-for-github-copilot/
- GitHub Blog: Validating agentic behavior when "correct" isn't deterministic
Prediction
If OpenClaw stores work packets for delegated/cron tasks, later review should need fewer raw-log reads and fewer 「で、結局どこ見ればいい?」 moments.
Verify by
- View renders from this Markdown.
- The owner-facing summary passes the assistant reply lint before notification.
Observed
- /fleet article explicitly recommends concrete deliverables, file/module boundaries, constraints, validation criteria, and dependency declarations.
- Copilot memory article frames memories as facts with citations that are verified at read time, which matches OpenClaw's need to keep agent learnings grounded.
- GitHub validation article says agent correctness should focus on essential outcomes, not brittle exact paths.
Next safe action
Add a tiny work_packet template to the heartbeat/subagent task handoff docs, then use it for the next delegated internal task.
Notify: yes — 健人くんが今のOpenClaw/ひめの運用にすぐ盗める具体ルールで、sourceも強い。