pwguler/skills

parallel

Dispatch independent tasks to concurrent subagents. Use when two or more failures or tasks are independent, sharing no files or state, and can be worked simultaneously.

First seen Aug 4, 2026

Installation

$ npx skills add pwguler/skills --skill parallel

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pwguler/skills · top by installs.

npx skills add pwguler/skills

Browse all from pwguler/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,036 B
  • docs SUMMARY.md 184 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 73 installs

SKILL.md

One agent per independent problem domain, all dispatched in a single response so they run concurrently.

Each agent's prompt carries:

  • Scope: one file, one subsystem, one problem. "Fix all the tests" loses the agent.
  • Context, pasted in: error messages, test names, relevant paths. Agents inherit nothing from the session.
  • Constraints: what must not change ("tests only", "do not touch production code").
  • Expected return: a summary of root cause and changes, so integration is reviewable.

Integrate when they return: read each summary, check the diffs for conflicts, run the full suite, then the verify skill before claiming the batch done.

Do not use when failures are related (fixing one may fix the rest: investigate together first), when the problem is still exploratory, or when agents would touch the same files.