Parallel Feature Development
A playbook for splitting a large feature across multiple implementer agents using file ownership, interface contracts, and integration patterns.
Dev & CodingIntermediate★ 39,332⑂ 4,195AI score 8/10Last updated: Sep 1, 2026
What it does
Gives Claude a concrete ruleset for coordinating several implementers on one feature without merge chaos:
- File ownership strategies — by directory, by module, or by architectural layer, with guidance on which fits your codebase
- Conflict avoidance — the cardinal "one owner per file" rule, plus a sequential-change procedure when a file truly must be shared
- Interface contracts — a lead-owned, read-only types file so implementers can build against each other's APIs before they exist
- Integration patterns — vertical slice vs horizontal layer vs hybrid, with pros and cons for each
- Branch management — single shared branch for 2–3 agents, sub-branches for larger teams
- Troubleshooting — blocked implementers, barrel/index file conflicts, contract drift breaking tests
Who it's for
- Developers orchestrating multiple Claude Code sub-agents on one feature
- Tech leads decomposing full-stack work across UI, API, and test streams
- Teams that keep losing time to merge conflicts in a shared repo
- Monorepo or layered-architecture projects needing a work-splitting standard
Examples
- Three-way auth split: assign
src/components/auth/,src/api/auth/, andtests/auth/to separate agents, with shared types frozen insrc/types/auth-contract.ts - Vertical slices: agent 1 owns the entire login feature (form + API + tests), agent 2 owns registration, minimizing integration points
- Fixing barrel-file conflicts: when two agents both edit
index.ts, designate a single owner for all barrel files or have the lead merge them last
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/wshobson/agents/HEAD/plugins/agent-teams/skills/parallel-feature-development/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the plugins/agent-teams/skills/parallel-feature-development folder from the GitHub repo wshobson/agents into my ~/.claude/skills/parallel-feature-development/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/wshobson/agents.git /tmp/agents && mkdir -p ~/.claude/skills && cp -r /tmp/agents/plugins/agent-teams/skills/parallel-feature-development ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo into a temp folder:
git clone https://github.com/wshobson/agents.git /tmp/agents - Create the skills directory if needed:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r /tmp/agents/plugins/agent-teams/skills/parallel-feature-development ~/.claude/skills/ - Optionally copy
team-composition-patternsandteam-communication-protocolsthe same way so the in-document links resolve. - Restart Claude Code and try a prompt like "split this feature across three implementer agents."
- Clean up with
rm -rf /tmp/agents.
View source on GitHub ↗License: MIT