create-agent Plugin
Create new Claude Code agents with domain-specific wizards. Each wizard is a domain expert that asks the right questions and builds a fully configured, Trinity-compatible agent.
Installation
/plugin install create-agent@abilityai
Available Wizards
| Wizard | Command | What it creates |
|---|---|---|
| create | /create-agent:create | Discovery entry point — shows all wizards and lets you pick interactively |
| prospector | /create-agent:prospector | B2B SaaS sales research - company research, ICP scoring, CRM integration |
| chief-of-staff | /create-agent:chief-of-staff | Executive assistant - daily briefings, meeting prep, decision tracking |
| webmaster | /create-agent:webmaster | Website management - scaffolds and deploys Next.js 15 sites to Vercel |
| recon | /create-agent:recon | Competitive intelligence - competitor tracking, market research, battlecards |
| receptionist | /create-agent:receptionist | Email gateway - public-facing email communication and request routing |
| ghostwriter | /create-agent:ghostwriter | Content writer - brand voice profiles, platform-specific writing |
| kb-agent | /create-agent:kb-agent | Knowledge-base agent - Cornelius-shaped KB with local vector search |
| website | /create-agent:website | Single website scaffold (no agent, just a site) |
| custom | /create-agent:custom | Custom agent from scratch - you define everything |
| clone | /create-agent:clone | Clone an existing agent repository as starting point |
| adjust | /create-agent:adjust | Review and improve an existing agent |
How It Works
Discovery Entry Point
Run /create-agent:create to see all available wizards and select one interactively.
Wizard Flow
Each wizard guides you through domain-specific questions:
1.Identity - Name, purpose, personality
2.Tools - Which integrations and capabilities
3.Workflows - Key playbooks and automations
4.Configuration - Environment variables, credentials needed
Output
The wizard creates a complete agent directory:
my-agent/ ├── CLAUDE.md # Agent identity and instructions ├── template.yaml # Trinity metadata ├── .env.example # Required environment variables ├── .mcp.json.template # MCP server configuration template ├── dashboard.yaml # Metrics dashboard definition ├── .claude/ │ └── skills/ # Initial playbooks │ ├── onboarding/ # Setup progress tracker │ └── update-dashboard/ └── .gitignore
Usage Examples
Create a Sales Research Agent
/create-agent:prospector
The wizard asks about target market and ICP criteria, CRM system (HubSpot, Salesforce, etc.), research sources (LinkedIn, Crunchbase, etc.), and output formats (reports, CRM updates).
Create a Custom Agent
/create-agent:custom
Blank canvas - you define every aspect from scratch.
Improve an Existing Agent
/create-agent:adjust
Audits the current agent against best practices and suggests improvements.
See Also
•agent-dev Plugin - Extend agents with skills and memory
•trinity Plugin - Deploy to Trinity platform
•Abilities Overview - Full toolkit overview