AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Speckit Parallel Implement

skill-wonyounglee-sdd-parallel-wave-executor-speckit-parallel-implement · by wonyoungLee

Execute GitHub Spec Kit tasks.md by respecting phases, dependencies, and [P] parallel task groups with isolated git worktrees, Codex sub-agents when available, ordered merges, and final local uncommitted changes for review.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-wonyounglee-sdd-parallel-wave-executor-speckit-parallel-implement

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-wonyounglee-sdd-parallel-wave-executor-speckit-parallel-implement)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Speckit Parallel Implement? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Parallel Implement Executor for Spec Kit

Use this skill when the user asks Codex to run GitHub Spec Kit implementation tasks with phase-aware parallelism, for example:

  • "Run the Spec Kit tasks in parallel."
  • "speckit implement를 병렬로 실행해줘"
  • "$speckit-implement 대신 [P] task를 병렬 처리해줘"
  • "Spec Kit phases를 지키면서 병렬 실행해줘"

Scope

This skill targets GitHub Spec Kit feature directories under:

specs/{feature}/tasks.md

Related context should be read from the same feature directory when present:

specs/{feature}/spec.md
specs/{feature}/plan.md
specs/{feature}/research.md
specs/{feature}/data-model.md
specs/{feature}/contracts/**
specs/{feature}/quickstart.md
.specify/memory/constitution.md

This skill is an implementation runner. It does not replace speckit-specify, speckit-plan, or speckit-tasks; use it after tasks.md exists.

Codex Capability Check

Before executing in parallel, verify that Codex sub-agent delegation is available in the current session.

  • If sub-agents are available, use one worker per independent phase slice or [P] task group.
  • If sub-agents are not available, do not fake parallel execution. Report the implementation plan and ask whether to execute sequentially.

Safety Rules

  • Show the execution plan and get user approval before creating worktrees, branches, commits, or running workers.
  • Require a clean git working tree before starting.
  • Never run git push.
  • Never run git reset --hard.
  • Never delete branches, worktrees, or manifests after a failure without user approval.
  • Create a backup branch before merging phase/task-group branches.
  • Keep all intermediate work under .worktrees/speckit-implement-{runId}/.
  • Leave the final result on the user's current branch as local uncommitted changes.

Preflight

  1. Select the Spec Kit feature.
  • If the user names a feature, use specs/{feature}/tasks.md.
  • Otherwise list specs/*/tasks.md and ask the user to choose.
  1. Read tasks.md and all available context files in the feature directory.
  2. Run the Spec Kit prerequisite script when present:
  • .specify/scripts/bash/check-prerequisites.sh --json --require-tasks --include-tasks
  • Use the PowerShell equivalent on Windows if needed.
  1. Run git status --short.
  • Stop if there are uncommitted changes.
  1. Check that .gitignore contains .worktrees/.
  • If missing, include adding it in the approval plan.
  1. Check for leftovers:
  • .worktrees/speckit-implement-*
  • .codex/tmp/speckit-implement-*.json
  • branches matching speckit-implement-*
  1. Generate runId:
  • Format: speckit-{featureSlug}-{YYYYMMDDHHmmss}.

Phase and Parallel Task Group Rules

Spec Kit task files encode phases, dependencies, user story groupings, and [P] parallel markers. Respect those terms.

  1. Use Spec Kit phase headings as the ordered outer execution structure:
  • Setup first.
  • Foundational second and blocking.
  • User story phases after foundational.
  • Polish last.
  1. Within each phase:
  • Tasks marked [P] may run in parallel only when file paths are disjoint.
  • Tasks without [P] run sequentially.
  • Tests for a story run before implementation tasks when tests are present.
  1. Different user story phases may run in parallel only after foundational tasks are complete and only when they are independently testable.
  2. If tasks mention the same file, same component, same schema, same route, same migration, or same config, run them sequentially inside that phase or task group.
  3. If task independence is unclear, choose sequential execution for that group.

For every task, extract:

  • task id, for example T012
  • [P] marker
  • story label, for example [US1]
  • target file paths
  • dependencies implied by task text
  • related requirements from spec.md
  • architecture and constraints from plan.md

Execution Plan

Before modifying anything, show:

  • selected feature
  • tasks file path
  • phase count
  • task list per phase
  • which [P] task groups will run in parallel
  • which groups were downgraded to sequential and why
  • worktree paths
  • branch names
  • merge order
  • backup branch name
  • risks, especially same-file edits and cross-story dependencies

Continue only after user approval.

Preparation

Record:

git branch --show-current
git rev-parse HEAD

Create:

git branch backup/speckit-implement-before-{runId} {startCommit}
mkdir -p .codex/tmp

Write a manifest:

.codex/tmp/speckit-implement-{runId}.json

Include runId, feature, baseBranch, startCommit, backupBranch, phase and task-group metadata, worker status, changed files, and errors.

For every phase or independent task group branch:

git worktree add .worktrees/speckit-implement-{runId}/group-{N} -b speckit-implement-{runId}-{N}

Parallel Execution

Use Codex sub-agents only when available. Assign each worker one worktree and one phase slice or [P] task group.

Worker prompt requirements:

  • Working directory is the absolute path to the assigned worktree.
  • Read Spec Kit context from that worktree only.
  • Implement only the assigned tasks.
  • Modify files only inside that worktree.
  • Run relevant tests/build checks when the task calls for them.
  • Report changed files, tests run, failures, and completed task ids.
  • Do not commit, push, merge, reset, or clean up.

Run at most 10 workers concurrently. If there are more than 10 runnable task groups, batch them.

Update the manifest as each worker starts, completes, or fails.

Merge

After workers finish:

  1. In each successful phase/task-group worktree:

``bash git -C .worktrees/speckit-implement-{runId}/group-{N} add -A git -C .worktrees/speckit-implement-{runId}/group-{N} commit -m "feat(speckit task-group-{N}): {summary}" ``

  1. Merge successful phase/task-group branches into the original branch in Spec Kit execution order:

``bash git merge speckit-implement-{runId}-{N} --no-edit ``

  1. If any merge conflicts:
  • Stop immediately.
  • Report the conflicting phase/task group and files.
  • Do not abort unless the user approves.
  • Point to backup/speckit-implement-before-{runId}.
  1. After all successful merges:

``bash git reset --soft {startCommit} ``

  1. Mark completed tasks in specs/{feature}/tasks.md with [x].
  • Keep failed or skipped tasks unchecked.

Cleanup

For a successful run, remove only resources created by this run:

git worktree remove --force .worktrees/speckit-implement-{runId}/group-{N}
git branch -D speckit-implement-{runId}-{N}

Remove .worktrees/speckit-implement-{runId} if empty. Delete the manifest only after the final report if it is no longer needed.

For a failed run, preserve the manifest and report exact cleanup targets instead of deleting them.

Final Report

Report:

  • completed phases/task groups
  • completed tasks / total tasks
  • failed or skipped tasks
  • changed files
  • tests/build checks run
  • backup branch
  • start commit
  • whether final changes are staged/uncommitted
  • any cleanup still needed

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.