← スキル一覧に戻る

spec-parallel
by kingpinzs
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: spec-parallel description: Auto-detect and parallelize Spec Kit tasks triggers:
- /tasks completes
- tasks.md updated
- "parallelize spec"
- "spawn spec tasks"
Spec Kit Parallel Executor
I automatically detect when Spec Kit tasks have parallel-eligible items and offer to spawn agents.
Activation
I activate when:
/taskscommand completes- User explicitly requests spec parallelization
.spec/tasks.mdis updated with new tasks
Detection Logic
def should_parallelize(tasks_file):
tasks = parse_tasks(tasks_file)
parallel_tasks = [t for t in tasks if "[P]" in t or "(P)" in t]
return len(parallel_tasks) >= 3
Spec Context
I include all Spec Kit artifacts in each agent's context:
| File | Purpose | Required |
|---|---|---|
.spec/spec.md | Feature specification | Yes |
.spec/plan.md | Implementation plan | Recommended |
.spec/design.md | Design decisions | Optional |
.spec/tasks.md | Task breakdown | Yes |
Agent Prompt Template
You are a Spec Kit implementation agent.
## Your Task
{task_description}
## Feature Specification
{spec_content}
## Implementation Plan
{plan_content}
## Design Decisions
{design_content}
## Instructions
1. Implement ONLY the assigned task
2. Follow the specification exactly
3. Adhere to the implementation plan
4. Write tests for new functionality
5. Commit with message: "feat(spec): {task_name}"
6. Output TASK_COMPLETE when done
Begin implementation.
Files
spawn-tasks.sh- Parse tasks and spawn agents
Integration with Base
This skill extends the base parallel-executor skill:
- Uses same worktree pattern
- Same monitoring commands
- Same merge workflow
Spec Validation
After tasks complete, I can validate against spec:
# Check each worktree's implementation
for wt in ../project-*; do
claude -p "Validate implementation in $wt against .spec/spec.md" --print
done
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です