agentsclimarketplace

Subagent driven development

Skill kimtth/agent-skill-100-lines-or-less/skills/subagent-driven-development

Use when: orchestrate specialized subagents to handle distinct parts of one larger task.From its SKILL.md

Install
npx -y skills add kimtth/agent-skill-100-lines-or-less --skill subagent-driven-development

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.1 KB, 199 tokens by cl100k_base, as published. Nobody here has run it

Goal: coordinate focused subagents so each does one job well.

Use for:

  • tasks with separable concerns (research, implement, test, review)
  • work too large for a single context to hold cleanly
  • parallelizable streams that need a coordinator

Workflow:

  1. Decompose the task into independent, well-scoped units.
  2. For each unit, write a self-contained brief and success criteria.
  3. State exactly what each subagent must return.
  4. Dispatch read-only or independent units in parallel.
  5. Integrate results; resolve conflicts and gaps yourself.
  6. Verify the combined outcome against the original goal.

Briefs include:

  • objective and constraints
  • inputs and relevant files
  • required output format
  • what is out of scope

Rules:

  • one clear responsibility per subagent
  • never assume a subagent shares your context; spell it out
  • keep write operations on one unit to avoid collisions
  • the orchestrator owns final verification

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.