.claude/skills/subagent-creator/SKILL.md
Create specialized Claude Code sub-agents with custom system prompts and tool configurations. Use when users ask to create a new sub-agent, custom agent, specialized assistant, or want to configure task-specific AI workflows for Claude Code.
npx skillsauth add greatsumini/cc-system subagent-creatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create specialized AI sub-agents for Claude Code that handle specific tasks with customized prompts and tool access.
Sub-agents are Markdown files with YAML frontmatter stored in:
.claude/agents/ (higher priority)~/.claude/agents/ (lower priority)---
name: subagent-name
description: When to use this subagent (include "use proactively" for auto-delegation)
tools: Tool1, Tool2, Tool3 # Optional - inherits all if omitted
model: sonnet # Optional - sonnet/opus/haiku/inherit
permissionMode: default # Optional - default/acceptEdits/bypassPermissions/plan
skills: skill1, skill2 # Optional - auto-load skills
---
System prompt goes here. Define role, responsibilities, and behavior.
| Field | Required | Description |
|-------|----------|-------------|
| name | Yes | Lowercase with hyphens |
| description | Yes | Purpose and when to use (key for auto-delegation) |
| tools | No | Comma-separated tool list (omit to inherit all) |
| model | No | sonnet, opus, haiku, or inherit |
| permissionMode | No | default, acceptEdits, bypassPermissions, plan |
| skills | No | Skills to auto-load |
.claude/agents/) or user (~/.claude/agents/).md file to the appropriate locationThe description field is critical for automatic delegation:
# Good - specific triggers
description: Expert code reviewer. Use PROACTIVELY after writing or modifying code.
# Good - clear use cases
description: Debugging specialist for errors, test failures, and unexpected behavior.
# Bad - too vague
description: Helps with code
Read, Grep, Glob, BashRead, Write, Edit, Grep, Glob, Bashtools fieldSee references/available-tools.md for complete tool list.
See references/examples.md for complete examples:
Copy from assets/subagent-template.md to start a new sub-agent.
Create a code reviewer sub-agent:
mkdir -p .claude/agents
Write to .claude/agents/code-reviewer.md:
---
name: code-reviewer
description: Reviews code for quality and security. Use proactively after code changes.
tools: Read, Grep, Glob, Bash
model: inherit
---
You are a senior code reviewer.
When invoked:
1. Run git diff to see changes
2. Review modified files
3. Report issues by priority
Focus on:
- Code readability
- Security vulnerabilities
- Error handling
- Best practices
data-ai
유튜브 채널을 등록하고 새 컨텐츠를 수집하여 자막 기반 요약을 생성하는 skill. 사용자가 (1) 유튜브 채널 등록/관리를 요청하거나, (2) 등록된 채널의 새 영상 수집을 요청하거나, (3) 유튜브 영상 요약을 요청할 때 사용. 데이터는 .reference/ 폴더에 YAML 형식으로 저장됨.
development
Guide for creating Claude Code slash commands. Use when the user wants to create a new slash command, update an existing slash command, or asks about slash command syntax, frontmatter options, or best practices.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
tools
Create and configure Claude Code hooks for customizing agent behavior. Use when the user wants to (1) create a new hook, (2) configure automatic formatting, logging, or notifications, (3) add file protection or custom permissions, (4) set up pre/post tool execution actions, or (5) asks about hook events like PreToolUse, PostToolUse, Notification, etc.