PA
parallel-contract
>
Install
mkdir -p .claude/skills/parallel-contract && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15847" && unzip -o skill.zip -d .claude/skills/parallel-contract && rm skill.zipInstalls to .claude/skills/parallel-contract
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Defines the contract for fan-out parallel workers: isolation boundaries, result schema, and merge conflict resolution rules. Use when running parallel sub-agents on independent work units.188 chars✓ has a “when” trigger
About this skill
:shield: Isolation Rules
Each worker MUST:
- Only modify files within its assigned scope
- Not read or modify files in another worker's scope
- Return results in the standard schema
:page_facing_up: Result Schema
Workers return:
scope: string — the module or file pathstatus:done|partial|failedfiles_changed: list of pathsissues: list of stringsoutput: free-form data
:twisted_rightwards_arrows: Merge Rules
The merge agent resolves conflicts by:
- Checking for overlapping file modifications
- Preferring the worker with narrower scope
- Flagging unresolvable conflicts for human review