AgentStack
SKILL verified MIT Self-run

Subagent Driven Development

skill-a-ariff-ariff-claude-plugins-subagent-driven-development · by a-ariff

Use fresh agents for focused subtasks to avoid context pollution

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-a-ariff-ariff-claude-plugins-subagent-driven-development

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Subagent Driven Development? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Subagent Driven Development

Core Concept

FRESH AGENT = FRESH CONTEXT
Use subagents for focused work without baggage

When to Use Subagents

| Situation | Why Subagent Helps | |-----------|-------------------| | Complex subtask | Focused context, clear scope | | Going in circles | Fresh perspective breaks loops | | Parallel work | Multiple things at once | | Context pollution | Main agent too cluttered | | Specialized task | Pass only relevant info | | Research/exploration | Keep main context clean |

How to Launch Subagent

The Handoff:

1. DEFINE clear scope - what exactly to do
2. PROVIDE needed context - files, constraints, requirements
3. SPECIFY deliverable - what to return
4. SET success criteria - how to know it's done

Template:

Task: [Specific action to take]

Context:
- Working in [repo/directory]
- Relevant files: [list]
- Constraints: [any limits]

Deliverable:
- [Exact output expected]

Success when:
- [Criteria 1]
- [Criteria 2]

Anti-Patterns

Vague handoffs

Bad: "Look into this bug"
Good: "Find root cause of TypeError in user.ts:45"

Context dumping

Bad: Passing entire conversation history
Good: Passing only relevant files and specific question

No success criteria

Bad: "Make it better"
Good: "Refactor to reduce duplication, all tests must pass"

Too broad scope

Bad: "Implement the whole feature"
Good: "Implement the validation logic for email field"

Good Subagent Tasks

Research:

  • "Find how X is implemented in this codebase"
  • "Search for similar patterns in the repo"
  • "Understand the data flow from A to B"

Focused fixes:

  • "Fix the specific test failure in X"
  • "Resolve the lint error in file Y"
  • "Update function Z to handle edge case"

Generation:

  • "Generate tests for this function"
  • "Create documentation for this module"
  • "Write migration for schema change"

Analysis:

  • "Analyze dependencies of this module"
  • "Identify all usages of this API"
  • "Review this PR for issues"

Receiving Subagent Results

When subagent returns:

1. READ the full response
2. VERIFY against success criteria
3. INTEGRATE results into main context
4. CONTINUE from where you left off

Integration with Checkers

Before launching subagent:

  • scope-boundary-checker → Is scope clear and bounded?
  • assumption-checker → Are handoff assumptions valid?

After receiving results:

  • fact-checker → Verify subagent claims
  • pre-action-verifier → Before using results

Context Management

Main agent responsibilities:

  • High-level plan
  • User communication
  • Final integration
  • Overall progress

Subagent responsibilities:

  • Focused execution
  • Detailed work
  • Return clean results
  • No side conversations

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.