From devflow
Use when multiple independent tasks can be executed simultaneously — coordinates parallel agent/subagent dispatch
npx claudepluginhub nexuz-sys/devflow --plugin devflowThis skill uses the workspace's default tool permissions.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Processes code review feedback technically: verify suggestions against codebase, clarify unclear items, push back if questionable, implement after evaluation—not blind agreement.
Coordinate parallel execution of independent tasks across multiple agents or subagents.
Announce at start: "I'm using the devflow:parallel-dispatch skill to parallelize these tasks."
From the implementation plan, find task groups where:
For each parallel task, define:
Task: [description]
Agent: [which specialist]
Inputs: [files to read, context needed]
Outputs: [files to create/modify]
Verification: [how to verify completion]
superpowers:dispatching-parallel-agents
Dispatch each task to a fresh subagent with:
- Task description
- Relevant file context
- TDD requirement
- Expected output
Use the Agent tool with isolation: "worktree" for file-level isolation.
Execute tasks sequentially but in optimal order:
After all parallel tasks complete:
Task A: Backend API → backend-specialist (worktree-a)
Task B: Frontend UI → frontend-specialist (worktree-b)
Task C: Database schema → database-specialist (worktree-c)
Task A: User CRUD → feature-developer (worktree-a)
Task B: Admin dashboard → feature-developer (worktree-b)
Task C: Email service → backend-specialist (worktree-c)
Task A: Unit tests → test-writer (worktree-a)
Task B: Integration tests → test-writer (worktree-b)
Task C: E2E tests → test-writer (worktree-c)
agent({ action: "getSequence", task: "<description>" })
dotcontext identifies parallelizable agents and provides handoff sequences.
superpowers:dispatching-parallel-agents handles the actual subagent dispatch mechanics.
superpowers:using-git-worktrees provides isolated workspaces per parallel task.
| Pattern | Problem |
|---|---|
| Parallelizing dependent tasks | Race conditions and merge conflicts |
| No merge verification | Silent integration failures |
| Shared file modifications | Git conflicts and overwritten changes |
| Skipping TDD in parallel tasks | Each subagent must follow TDD independently |
| No integration test after merge | Parallel tasks may work alone but fail together |