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

parallel-agents

jssblck/agents
1.3K installs 0 GitHub stars
0

Coordinates concurrent coding agents, recurring merge conflicts, and agent instruction maintenance.
Use when agents work concurrently in a codebase, shared files have recurring merge conflicts, or AGENTS.md or CLAUDE.md needs maintenance.

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

# Parallel agents

Keep independently owned work from colliding in shared files. Apply structural
changes when concurrent work or observed conflict history justifies them.

- Give independent behavior its own file when that creates a useful ownership
  boundary. Keep edits to shared registries small. Do not split a cohesive
  module merely to achieve a one-line registration.
- Shape shared lists for merging: one item per line, stable insertion order,
  and no unrelated reformatting. Regenerate generated files and lockfiles.
- Investigate repeated conflict hotspots before splitting them. Keep structural
  moves separate from behavior changes when both are requested.
- Keep agent docs concise: working agreements, non-obvious constraints, and
  useful setup/check entry points. Keep module detail near its owner.

## References

Read only the reference relevant to the task:

- [one-feature-one-file.md](references/one-feature-one-file.md): choosing file
  boundaries for concurrent feature work.
- [mergeable-edits.md](references/mergeable-edits.md): editing shared registries,
  generated files, or conflicting branches.
- [hotspot-audit.md](references/hotspot-audit.md): measuring conflict hotspots
  when an audit or structural repair is requested.
- [doc-gardening.md](references/doc-gardening.md): maintaining agent instructions
  or reducing duplicated documentation.