スキル一覧に戻る
kingpinzs

spec-parallel

by kingpinzs

0🍴 0📅 2026年1月14日
GitHubで見るManusで実行

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:

  • /tasks command completes
  • User explicitly requests spec parallelization
  • .spec/tasks.md is 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:

FilePurposeRequired
.spec/spec.mdFeature specificationYes
.spec/plan.mdImplementation planRecommended
.spec/design.mdDesign decisionsOptional
.spec/tasks.mdTask breakdownYes

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

レビュー

💬

レビュー機能は近日公開予定です