← スキル一覧に戻る

executing-plans
by rileyhilliard
⭐ 62🍴 13📅 2026年1月21日
SKILL.md
name: executing-plans description: Executes implementation plans with smart task grouping. Groups related tasks to share context, parallelizes across independent subsystems.
Executing Plans
Core principle: Group related tasks to share agent context. One agent per subsystem, groups run in parallel.
Why Grouping Matters
Without grouping:
Task 1 (auth/login) → Agent 1 [explores codebase, reads auth/]
Task 2 (auth/logout) → Agent 2 [explores codebase, reads auth/ again]
With grouping:
Tasks 1-2 (auth/*) → Agent 1 [explores once, executes both]
Execution Flow
- [ ] Load plan file
- [ ] Group tasks by subsystem
- [ ] Dispatch agents for independent groups in parallel
- [ ] Update plan file (mark IN_PROGRESS)
- [ ] Wait, dispatch dependent groups
- [ ] Run verification (tests, build, lint)
- [ ] Dispatch code-reviewer agent
- [ ] Mark plan COMPLETED
Grouping Rules
| Signal | Group together |
|---|---|
| Same directory prefix | src/auth/* tasks |
| Same domain/feature | Auth tasks, billing tasks |
| Plan sections | Tasks under same ## heading |
Limits: 3-4 tasks max per group. Split if larger.
Parallel vs Sequential
Parallel: Groups touch different subsystems
Group A: src/auth/* ─┬─ parallel
Group B: src/billing/* ─┘
Sequential: Groups have dependencies
Group A: Create shared types → Group B: Use those types
Group Dispatch
Task tool (general-purpose):
description: "Auth tasks: login, logout"
prompt: |
Execute these tasks from [plan-file] IN ORDER:
- Task 1: Add login endpoint
- Task 2: Add logout endpoint
Use skills: <relevant skills>
Commit after each task. Report: files changed, test results
Progress Tracking
- Set plan status to IN_PROGRESS when starting
- Check off
[x]each task as completed - Set status to COMPLETED when all pass verification
Auto-Recovery
- Agent attempts to fix failures (has context)
- If can't fix, report failure
- Dispatch fix agent with error output
- Same error twice → stop and ask user
Final Verification
- Run full test suite
- Run build
- Dispatch
ce:code-reviewer - Fix issues found
- Mark COMPLETED
スコア
総合スコア
65/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です