Skip to main content
Trinity
Cloud Code Plugins/create-agent

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.

Build an AI Recruiter Agent

Jun 2026

Installation

/plugin install create-agent@abilityai

Available Wizards

WizardCommandWhat it creates
create/create-agent:createDiscovery entry point — shows all wizards and lets you pick interactively
prospector/create-agent:prospectorB2B SaaS sales research - company research, ICP scoring, CRM integration
chief-of-staff/create-agent:chief-of-staffExecutive assistant - daily briefings, meeting prep, decision tracking
webmaster/create-agent:webmasterWebsite management - scaffolds and deploys Next.js 15 sites to Vercel
recon/create-agent:reconCompetitive intelligence - competitor tracking, market research, battlecards
receptionist/create-agent:receptionistEmail gateway - public-facing email communication and request routing
ghostwriter/create-agent:ghostwriterContent writer - brand voice profiles, platform-specific writing
kb-agent/create-agent:kb-agentKnowledge-base agent - Cornelius-shaped KB with local vector search
doctor/create-agent:doctorPersonal medical-records agent - ingests health documents, tracks lab trends, preps doctor visits
website/create-agent:websiteSingle website scaffold (no agent, just a site)
custom/create-agent:customCustom agent from scratch - you define everything
clone/create-agent:cloneClone an existing agent repository as starting point
review/create-agent:reviewRead-only audit of an existing agent - prioritized findings report, no changes made
adjust/create-agent:adjustApply best-practice improvements to an existing agent

How It Works

Discovery Entry Point

Run /create-agent:create to see all 14 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 (carries the playbook-call rule)
├── template.yaml          # Trinity metadata: resources, credentials:, schedules:, plugins:
├── .env.example           # Required environment variables
├── .mcp.json.template     # MCP server configuration template (${VAR} in env blocks only)
├── dashboard.yaml         # Metrics dashboard definition
├── .claude/
│   └── skills/            # Initial playbooks
│       ├── onboarding/    # Setup progress tracker
│       └── update-dashboard/
└── .gitignore

Three conventions every wizard bakes in, so the agent is deployable as generated:

template.yaml declares everything Trinity materializes at creation - the credentials the agent needs (so the guided credential checklist is populated), its recommended schedules:, and the plugins: it depends on (each wizard declares the plugins it already tells you to install, trinity@abilityai at minimum, so the selection survives a rebuild). See Creating Agents.
Schedules are one-line playbook calls - a generated schedule message is /daily-briefing, never a prose description of the work; the human-readable intent lives in the schedule's purpose: field. Cron times default to UTC (the container clock) with canonical IANA zone names.
Delegation is by playbook call - the generated CLAUDE.md guidelines tell the agent to hand work to other agents only by invoking a named playbook, one line, on any transport. See Playbook calls.

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.

Review and Improve an Existing Agent

/create-agent:review    # Read-only audit — prioritized findings, no changes
/create-agent:adjust    # Apply the improvements

review audits the agent against best practices - CLAUDE.md, skills, composition integrity, Trinity readiness - and produces a prioritized findings report without changing anything. Prose inter-agent delegation and prose schedule messages are reported as findings. adjust is the write-side companion: it proposes exact before/after changes and applies the ones you approve.

See Also

agent-dev Plugin - Extend agents with skills and memory
trinity Plugin - Deploy to Trinity platform
Abilities Overview - Full toolkit overview