agentskills.codes
PA

>

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.zip

Installs 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:

  1. Only modify files within its assigned scope
  2. Not read or modify files in another worker's scope
  3. Return results in the standard schema

:page_facing_up: Result Schema

Workers return:

  • scope: string — the module or file path
  • status: done | partial | failed
  • files_changed: list of paths
  • issues: list of strings
  • output: free-form data

:twisted_rightwards_arrows: Merge Rules

The merge agent resolves conflicts by:

  1. Checking for overlapping file modifications
  2. Preferring the worker with narrower scope
  3. Flagging unresolvable conflicts for human review

Search skills

Search the agent skills registry