subagents-creator — Claude subagents subagents-creator, skills-store, community, Claude subagents, ide skills, task delegation, mandatory 7-section structure, subagent domains, atomic task definition, required skills specification

v1.0.0

About this Skill

Ideal for Advanced AI Agents like Claude, AutoGPT, and LangChain needing specialized domain handling through subagents subagents-creator is a skill for defining, using, and improving Claude subagents, handling domains like explore and librarian

Features

Delegates work using a mandatory 7-section structure
Defines atomic tasks with concrete deliverables
Specifies required skills for successful task completion
Supports subagent domains like explore and librarian
Improves subagent performance with success criteria
Utilizes a structured approach for task delegation

# Core Topics

Mineru98 Mineru98
[3]
[0]
Updated: 2/28/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
42
Canonical Locale
en
Detected Body Locale
en

Ideal for Advanced AI Agents like Claude, AutoGPT, and LangChain needing specialized domain handling through subagents subagents-creator is a skill for defining, using, and improving Claude subagents, handling domains like explore and librarian

Core Value

Empowers agents to define and utilize specialized subagents for specific domains such as `explore`, `librarian`, `oracle`, and `frontend-ui-ux-engineer`, leveraging a mandatory 7-section structure for efficient task delegation and outcome management

Ideal Agent Persona

Ideal for Advanced AI Agents like Claude, AutoGPT, and LangChain needing specialized domain handling through subagents

Capabilities Granted for subagents-creator

Delegating tasks to subagents for domain-specific handling
Improving subagent performance through structured outcome analysis
Creating and managing subagent networks for complex task distribution

! Prerequisites & Limits

  • Requires understanding of Claude subagent architecture
  • Mandatory 7-section structure must be followed for task delegation

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is subagents-creator?

Ideal for Advanced AI Agents like Claude, AutoGPT, and LangChain needing specialized domain handling through subagents subagents-creator is a skill for defining, using, and improving Claude subagents, handling domains like explore and librarian

How do I install subagents-creator?

Run the command: npx killer-skills add Mineru98/skills-store/subagents-creator. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for subagents-creator?

Key use cases include: Delegating tasks to subagents for domain-specific handling, Improving subagent performance through structured outcome analysis, Creating and managing subagent networks for complex task distribution.

Which IDEs are compatible with subagents-creator?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for subagents-creator?

Requires understanding of Claude subagent architecture. Mandatory 7-section structure must be followed for task delegation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Mineru98/skills-store/subagents-creator. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use subagents-creator immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

subagents-creator

Unlock efficient task delegation with subagents-creator. Learn how to define and improve Claude subagents for domains like explore and librarian

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Subagents Creator

This skill provides guidance for defining, using, and improving Claude subagents—the specialized agents that handle specific domains like explore, librarian, oracle, and frontend-ui-ux-engineer.

Quick Start

Delegating Work

When delegating to subagents, use the mandatory 7-section structure:

1. TASK: Atomic, specific goal (one action per delegation)
2. EXPECTED OUTCOME: Concrete deliverables with success criteria
3. REQUIRED SKILLS: Which skill to invoke
4. REQUIRED TOOLS: Explicit tool whitelist (prevents tool sprawl)
5. MUST DO: Exhaustive requirements - leave NOTHING implicit
6. MUST NOT DO: Forbidden actions - anticipate and block rogue behavior
7. CONTEXT: File paths, existing patterns, constraints

Choosing a Subagent

See subagent-types.md for detailed guidance on which subagent to use:

  • explore: Contextual grep for codebases
  • librarian: Reference search (docs, OSS, web)
  • oracle: Deep reasoning for architecture/complex decisions
  • frontend-ui-ux-engineer: Visual UI/UX changes

Defining New Subagents

Only create subagents when: The task domain has distinct tooling, expertise, or patterns that benefit from specialization.

See delegation-patterns.md for:

  • Subagent definition templates
  • When to create a new subagent vs using existing ones
  • Naming and description guidelines

Common Pitfalls

See common-pitfalls.md for:

  • Vague delegation prompts and why they fail
  • Over-delegating trivial tasks
  • Subagent misalignment with task type
  • Anti-patterns in agent orchestration

Best Practices

  1. One action per delegation: Combine tasks in parallel calls, not one call
  2. Be exhaustive: "MUST DO" and "MUST NOT DO" sections prevent drift
  3. Background everything: Use background_task for explore and librarian
  4. Explicit tool lists: Prevent subagents from using unauthorized tools
  5. Verify results: Check that delegated work meets expectations before proceeding

Delegation Example

python
1# GOOD: Specific, exhaustive 2background_task( 3 agent="explore", 4 prompt=""" 5 1. TASK: Find all authentication implementations 6 2. EXPECTED OUTCOME: List of files with auth logic, patterns used 7 3. REQUIRED SKILLS: explore 8 4. REQUIRED TOOLS: Grep, Read 9 5. MUST DO: Search for 'jwt', 'session', 'auth' patterns; identify middleware; list all endpoints 10 6. MUST NOT DO: Don't modify any files; don't run build/test commands 11 7. CONTEXT: Working in ./src directory, looking for Express.js patterns 12 """ 13) 14 15# BAD: Vague, implicit expectations 16background_task( 17 agent="explore", 18 prompt="Find auth stuff in the codebase" 19)

Reference Files

Related Skills

Looking for an alternative to subagents-creator or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer