plugins/agent-scaffolders/skills/create-sub-agent/SKILL.md
Scaffolds a new autonomous sub-agent with its own prompt, system instructions, and tool permissions. NOT for stateless procedural skills (use `create-skill`) and NOT for creating GitHub Actions workflows (use `create-agentic-workflow`).
npx skillsauth add richfrem/agent-plugins-skills create-sub-agentInstall 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.
Follow the create-sub-agent skill workflow to design and generate a Claude Code agent file.
$ARGUMENTS — optional agent name or brief use-case description passed as initial context
to the design interview. Omit to start with open discovery.$ARGUMENTS is provided, use it as the starting context for agent name / purpose.md filevalidate_agent.py.github/agents/ or .claude/agents/ and ensure the path is tracked in .gitignore.Agent .md file with complete YAML frontmatter (name, description with <example> blocks,
model, maxTokens, color, permissions.allowedTools, permissions.deny) and a second-person
system prompt targeting 500-3,000 characters.
Plugin agents: flat .md file — plugins/<plugin-name>/agents/<agent-name>.md
skills/<name>/SKILL.md subdirectory format, but agents do NOT.feature-dev, code-simplifier, hookify).Local/project agents: .claude/agents/<agent-name>.md (also flat, no subdirectory).
To make an agent visible to GitHub Copilot or Claude Code for this repository, follow the Discovery-First Publication pattern:
.github/agents/ (Copilot) or .claude/agents/ (Claude)..gitignore allows the specific agent file or subdirectory.See Agent Discovery and Publication Pattern for details.
$ARGUMENTS is empty: conduct the full Phase 1 design interview — do not pre-filltesting
Skill for creating and managing isolated git worktrees (`.worktrees/issue-NNN`) for issue execution branches. USE ONLY when setting up or cleaning up isolated git worktrees for specific issue execution. DO NOT USE for managing local task files (use `task-agent`) or escalating tasks to issues (use `github-issue-backlog-agent`).
data-ai
Skill for orchestrating the end-to-end GitHub issue lifecycle flow: Issue -> Worktree -> Implementation -> PR Creation -> Resolution Closure. USE ONLY when running or dry-running full lifecycle orchestration for resolving an issue with a PR. DO NOT USE for isolated worktree management only (use `issue-worktree-agent`) or logging issues (use `github-issue-agent`).
tools
Automatically ranks GitHub issues (P0-P3) based on friction tier, frequency, and blockages, synchronizing priority labels and GitHub Projects v2 custom fields.
testing
Bridge skill for escalating ephemeral local task scratchpad items (`tasks/*.md`) into durable, taxonomy-validated, evidence-rich GitHub Issues. USE ONLY when promoting a single-session local task into durable repository backlog. DO NOT USE for managing local kanban boards (use `task-agent` instead) or directly querying/commenting on issues (use `github-issue-agent` instead).