Parallel dev
Plan and coordinate parallel development workstreams across a codebase. Use when the user asks to parallelize implementation, split work into multiple PRs/agents, define file ownership boundaries, coordinate sub-agents, reduce merge conflicts, manage dependencies, or create a merge/integration plan for concurrent changes.From its SKILL.md
npx -y skills add coreline-ai/codex-devflow-plugin --skill parallel-devAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `rg --files` and 1 more.
SKILL.md
1.8 KB, 301 tokens by cl100k_base, as published. Nobody here has run it
Parallel Dev
Overview
Turn one implementation goal into safe, independently executable workstreams. The priority is maximum concurrency without hidden file conflicts.
Workflow
- Confirm goal, non-goals, active local changes, and existing plans.
- Map likely touch points with
rg --files,rg, and docs. - Put shared contracts/types/interfaces into a small foundation workstream.
- Split leaf work by path ownership wherever possible.
- For each workstream, define objective, deliverables, owned paths, non-owned paths, dependencies, tests, and done criteria.
- Decide whether each slice is safe to run in parallel or must be sequential.
- Merge foundation first, then leaf workstreams, then shared wiring/docs.
- Run targeted tests per workstream and full verification after integration.
Sub-Agent Assignment Rules
When using sub-agents:
- Give each worker explicit file ownership and non-ownership.
- Tell workers they are not alone in the codebase.
- Tell workers not to revert or overwrite edits made by others.
- Prefer bounded implementation tasks over broad exploration.
- Keep final integration and full verification in the main agent.
Output Shape
- Parallel workstreams
- Ownership boundaries and contracts
- Integration/merge order
- Tests and smoke checks
- Risks and required coordination
Read references/parallel-templates.md when a structured workstream card or sub-agent prompt is useful.
What ships with it: 2 files
1.4 KB alongside SKILL.md
agents/
- openai.yaml217 B
references/
- parallel-templates.md1.2 KB