Abilities Marketplace
A curated collection of Claude Code plugins covering the full agent lifecycle — from scaffolding and onboarding to deployment, scheduling, and ongoing operations.
Concepts
github.com/abilityai/abilities. Claude Code's /plugin marketplace add command connects to it./plugin-name:skill-name commands.Installation
One-time setup
# Add the abilities marketplace to Claude Code
/plugin marketplace add abilityai/abilities
# Or from the terminal:
claude plugin add abilityai/abilitiesInstall the plugins you need
/plugin install create-agent@abilityai # Agent creation wizards
/plugin install agent-dev@abilityai # Development tools
/plugin install trinity@abilityai # Trinity platform integration
/plugin install dev-methodology@abilityai # Documentation-driven dev
/plugin install utilities@abilityai # Ops and productivityList available plugins
/plugin list abilityaicreate-agent — 12 skills
Create new Claude Code agents with domain-specific wizards.
/create-agent:create # Discovery — shows all available wizards| Wizard | What it creates |
|---|---|
| /create-agent:prospector | B2B sales research agent |
| /create-agent:chief-of-staff | Executive assistant |
| /create-agent:webmaster | Website management agent |
| /create-agent:recon | Competitive intelligence agent |
| /create-agent:receptionist | Email gateway agent |
| /create-agent:ghostwriter | Content writer agent |
| /create-agent:kb-agent | Knowledge-base agent (Zettelkasten) |
| /create-agent:website | Next.js website (no agent) |
| /create-agent:custom | Blank canvas — you define everything |
| /create-agent:clone | Clone an existing agent repo |
| /create-agent:adjust | Audit and improve an existing agent |
Every wizard-created agent includes CLAUDE.md, 2–4 starter skills, template.yaml, dashboard.yaml, and an onboarding tracker.
agent-dev — 9 skills
Extend and develop existing agents.
/agent-dev:create-playbook # Add a new skill/playbook
/agent-dev:adjust-playbook # Modify an existing skill
/agent-dev:add-memory # Add a memory system
/agent-dev:add-backlog # Add GitHub Issues task management
/agent-dev:pick-work # Claim the next issue
/agent-dev:close-work # Close the current issue
/agent-dev:work-loop # Run an autonomous work loop
/agent-dev:plan # Plan multi-session workMemory systems (via /agent-dev:add-memory)
| System | Best for |
|---|---|
| file-index | Workspace file awareness and search |
| brain | Zettelkasten-style connected knowledge graph |
| json-state | Structured state, counters, config |
| workspace | Multi-session project tracking |
trinity — 3 skills
Connect, deploy, and sync agents to Trinity.
/trinity:connect # One-time: authenticate and save MCP config
/trinity:onboard # Per-agent: compatibility check + deploy
/trinity:sync # Sync local changes to the running remote agentAfter connecting, Trinity MCP tools are available directly in your session: mcp__trinity__list_agents, mcp__trinity__chat_with_agent, mcp__trinity__deploy_local_agent.
dev-methodology — 15 skills
Documentation-driven development methodology for any codebase.
/dev-methodology:init # Scaffold methodology into your project
/dev-methodology:implement # End-to-end feature implementation
/dev-methodology:validate-pr # Validate PR against methodology
/dev-methodology:security-analysis # Deep security audit
/dev-methodology:commit # Well-formatted commits
/dev-methodology:refactor-audit # Review changed code for reuse and quality
/dev-methodology:generate-user-docs # Generate user-facing docs from sourceutilities — 7 skills
General-purpose ops and productivity.
/utilities:investigate-incident # Structured incident investigation
/utilities:safe-deploy # Deployment with backup/rollback
/utilities:docker-ops # Docker container management
/utilities:save-conversation # Export conversation as markdown
/utilities:sync-ops-knowledge # Update ops docs from commitsThe Four-Step Agent Workflow
Scaffold Develop Deploy Iterate
/create-agent:* /agent-dev:create-playbook /trinity:onboard /trinity:sync
/agent-dev:add-memory git push
/agent-dev:add-backlog /create-agent:adjustScaffold
Pick a wizard or use /create-agent:custom. Get a fully wired agent in one session.
Develop
Add skills, memory systems, and task management as the agent's role expands.
Deploy
Run /trinity:onboard to deploy to your Trinity instance. It runs 24/7 from there.
Iterate
Push changes with git push or /trinity:sync. Use /create-agent:adjust to audit and improve over time.