parallel-implementation

A team-based implementation workflow that assigns independent coding tasks to multiple agents while a lead coordinates shared files and progress. A separate checker regularly reviews the work.

In plain words
What is it for?
Use it after planning a project with several independent tasks that can be worked on at the same time. It is intended for implementation work when Agent Teams is enabled.
Why use it?
It reduces the waiting time of completing unrelated tasks one after another and helps catch quality problems during implementation.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/xrensiu/claude-code-forge/parallel-implementation
Any agent
npx skills add XRenSiu/claude-code-forge --skill parallel-implementation
Clone the repo
git clone --depth 1 https://github.com/XRenSiu/claude-code-forge

Made for: Claude Code, Codex.

Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,167 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00099 $0.06167
Opus 5 $0.00049 $0.03083
Sonnet 5 $0.00020 $0.01233
Haiku 4.5 $0.00010 $0.00617

Measured yesterday against content hash 6e1a9e765432, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

parallel-implementation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/forge-teams/skills/parallel-implementation/SKILL.md · 670 lines

How it starts

The opening of the file, as written. The whole thing — 670 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Parallel Implementation

用多个 agent 的并行实现替代单 agent 的顺序执行。

实测数据:对于 15+ 个独立任务的计划,并行实现比顺序执行快 2-3x,同时通过 quality-sentinel 的持续抽查保持代码质量。

Announce at start: "I'm using the parallel-implementation skill to execute tasks in parallel with a team of implementers and quality sentinel."

前置条件: 需要启用 Agent Teams 实验性功能。 在 settings.json 中添加: "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" }

When to Use

digraph {
    rankdir=TB;
    start [label="计划已就绪" shape=oval];
    q1 [label="任务数量?" shape=diamond];
    q2 [label="任务独立性?" shape=diamond];
    q3 [label="质量要求?" shape=diamond];
    single [label="executing-plans\n(单 agent 快速)" shape=box];
    subagent [label="subagent-driven-development\n(单 agent 高质量)" shape=box];
    parallel [label="parallel-implementation\n(本 Skill)" shape=box style=filled fillcolor=lightgreen];

    start -> q1;
    q1 -> single [label="< 5 个"];
    q1 -> q2 [label=">= 5 个"];
    q2 -> single [label="强依赖\n无法并行"];
    q2 -> q3 [label="大部分\n可并行"];
    q3 -> subagent [label="极高\n每任务双审查"];
    q3 -> parallel [label="高\n持续抽查"];
}

vs. Other Execution Skills

维度 executing-plans subagent-driven parallel-implementation
Agent 数量 1 1 (多子代理) N+1 (N implementers + 1 sentinel)
并行度 顺序 顺序 并行
质量保证 检查点 每任务双审查 持续抽查
速度 最快
适合任务数 < 10 < 15 10-50
文件冲突管理 不需要 不需要 需要
Token 消耗 最高
适合场景 MVP/快速 关键功能 大规模并行

The Orchestration Protocol

┌─────────────────────────────────────────────────────────────────┐
│                   PARALLEL IMPLEMENTATION                        │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  Step 1: PLAN INTAKE       加载计划文档,提取任务列表              │
│          ↓                                                       │
│                                                                  │
│  Step 2: TASK ANALYSIS     分析任务依赖,划分并行组                │
│          ↓                 分配文件所有权                          │
│                                                                  │
│  Step 3: TEAM ASSEMBLY     TeamCreate                            │
│          ↓                 Spawn N implementers + 1 sentinel     │
│                                                                  │
│  Step 4: PARALLEL EXEC     Implementers 并行执行                  │
│          ↓                 Sentinel 持续抽查                      │
│          ↓                 Lead 协调和监控                         │
│                                                                  │
│  Step 5: CONVERGENCE       所有任务完成 → 最终验证                 │
│          ↓                                                       │
│                                                                  │
│  Step 6: CLEANUP           Shutdown Team → 输出实现报告            │
│                                                                  │
└─────────────────────────────────────────────────────────────────┘

Read the full file on GitHub · 670 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 670 lines · 99 tokens per session scan A 6e1a9e765432

Subscribe to this mod's changes

parallel-implementation is a skill published in the GitHub repository XRenSiu/claude-code-forge (2 stars, last pushed 1mo ago), licensed MIT. It adds 99 tokens to every session and 6,167 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens