Parallelism aware skill step design
Skill ychampion/cskill-agents/agents/codex/skills/parallelism-aware-skill-step-design
Design skill steps with explicit execution topology, asking which parts run directly, in subagents, in teammate swarms, or in parallel.From its SKILL.md
npx -y skills add ychampion/cskill-agents --skill parallelism-aware-skill-step-designAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
2.1 KB, 360 tokens by cl100k_base, as published. Nobody here has run it
SKILL: Parallelism-Aware Skill Step Design
Domain: multi-agent
Trigger: Use when converting a workflow into a skill and some steps may run in parallel, through task agents, through teammate swarms, or require human checkpoints.
Source Pattern: Distilled from reviewed multi-agent coordination and child-runtime patterns.
Core Method
Model each major step not just by what it does, but by how it executes. During the interview, ask whether steps are independent, whether they should run directly or via agents, and whether any human confirmation is required before advancing. Then encode those answers into the saved skill so later agents know where concurrency is safe, where isolation is useful, and where execution must pause for a person.
Key Rules
- Ask explicitly whether sibling steps can run in parallel before assuming a sequential workflow.
- Distinguish direct execution, task-agent execution, teammate-swarm execution, and human-owned steps in the final step design.
- Capture the artifacts that parallel steps must hand back before downstream steps can continue.
- Mark irreversible or judgment-heavy transitions with a human checkpoint even if surrounding steps are automated.
- Keep the execution annotations tied to concrete workflow behavior, not to abstract enthusiasm for subagents.
Example Application
If a launch skill needs one branch to post release notes and another to monitor CI, mark those steps as parallel and note the artifacts they return. If the next step merges a release branch, add a human checkpoint before that merge even though earlier monitoring ran through subagents.
Anti-Patterns (What NOT to do)
- Do not flatten every workflow into a purely sequential script when some steps are independent and could safely overlap.
- Do not label steps as agent-driven without defining what result they must return or when a person needs to intervene.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most design frontend skills give in 360 tokens
Counted across 1,169 of the 1,878 authors here whose files we hold, read 2026-08-07
- Use CSS variables for color consistencyin 72 of 1169, across 23 files
- Commit to one bold aesthetic direction before codingin 72 of 1169, across 27 files
- Match implementation complexity to the aesthetic visionin 70 of 1169, across 20 files
- Add atmospheric background effects and texturesin 57 of 1169, across 9 files
- Use unexpected spatial compositions and layoutsin 56 of 1169, across 8 files
- Implement real working codein 55 of 1169, across 7 files
- Vary themes and aesthetics across different designsin 48 of 1169, across 7 files
- Launch chromium in headless modein 47 of 1169, across 4 files
- Close the browser when donein 47 of 1169, across 4 files
- Run provided scripts with help flag firstin 47 of 1169, across 4 files
- Wait for network idle statein 47 of 1169, across 4 files
- Use descriptive selectors for elementsin 47 of 1169, across 4 files
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.