skilly. Buy ad slot
All skills
Agent Development / AGENT SKILL

parallel-contract

ai-digital-architect/github-copilot
0 installs 0 GitHub stars
0

Define isolation, result formats, and merge conflict rules for parallel sub-agents.
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.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

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