agent-creator

Solid

Creates new specialized agents with frontmatter, tools, delegation. Triggers: new agent, create agent, agent scaffold, specialized agent.

AI & Automation 155 stars 19 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
73
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Agent Creator $ARGUMENTS Create a new specialized agent following ai-toolkit conventions. ## Workflow 1. **Capture role** -- what problem space should the agent own? 2. **Define triggers** -- which keywords or task types should route to this agent? 3. **Choose tools** -- minimal tool set, least privilege first 4. **Choose model** -- `opus` for deep reasoning, `sonnet` for lighter pattern work 5. **Map supporting skills** -- which knowledge skills should the agent reference? 6. **Write instructions** -- capabilities, constraints, escalation rules, deliverables 7. **Validate** -- frontmatter, naming, skills references, tool whitelist ## Required Frontmatter ```yaml --- name: agent-name description: "When to use this agent. Triggers: keyword1, keyword2." tools: Read, Write, Edit model: sonnet skills: skill-one, skill-two --- ``` ## Authoring Rules - **MUST** match filename and `name:` using lowercase-hyphen format — drift breaks routing - **MUST** include an explicit `Triggers:` list in the description so the router can dispatch deterministically - **NEVER** reference skills that do not exist — either create the dependency first or drop the reference - **NEVER** grant write access to `.claude/agents/` — that authority belongs to `meta-architect` alone - **CRITICAL**: avoid tool bloat. Every extra tool widens blast radius; start from `Read` and justify additions one by one - Give the agent a clear boundary: what it owns and what it must escalate - Prefer specialized, na...

Details

Author
softspark
Repository
softspark/ai-toolkit
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category