Skip to main content
Trinity
Guides/Abilities Marketplace

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

Plugin marketplace — A registry of versioned plugin packages hosted at github.com/abilityai/abilities. Claude Code's /plugin marketplace add command connects to it.
Plugin — A named package of skills installed into your Claude Code session. Skills become available as /plugin-name:skill-name commands.
Skill — A single SKILL.md file defining a workflow Claude executes when you invoke it.
abilities — The specific marketplace hosted by Ability.ai, containing 5 plugins for the agent development lifecycle.

Installation

One-time setup

# Add the abilities marketplace to Claude Code
/plugin marketplace add abilityai/abilities

# Or from the terminal:
claude plugin add abilityai/abilities

Install 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 productivity

List available plugins

/plugin list abilityai

create-agent — 12 skills

Create new Claude Code agents with domain-specific wizards.

/create-agent:create    # Discovery — shows all available wizards
WizardWhat it creates
/create-agent:prospectorB2B sales research agent
/create-agent:chief-of-staffExecutive assistant
/create-agent:webmasterWebsite management agent
/create-agent:reconCompetitive intelligence agent
/create-agent:receptionistEmail gateway agent
/create-agent:ghostwriterContent writer agent
/create-agent:kb-agentKnowledge-base agent (Zettelkasten)
/create-agent:websiteNext.js website (no agent)
/create-agent:customBlank canvas — you define everything
/create-agent:cloneClone an existing agent repo
/create-agent:adjustAudit 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 work

Memory systems (via /agent-dev:add-memory)

SystemBest for
file-indexWorkspace file awareness and search
brainZettelkasten-style connected knowledge graph
json-stateStructured state, counters, config
workspaceMulti-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 agent

After 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 source

utilities — 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 commits

The 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:adjust
1

Scaffold

Pick a wizard or use /create-agent:custom. Get a fully wired agent in one session.

2

Develop

Add skills, memory systems, and task management as the agent's role expands.

3

Deploy

Run /trinity:onboard to deploy to your Trinity instance. It runs 24/7 from there.

4

Iterate

Push changes with git push or /trinity:sync. Use /create-agent:adjust to audit and improve over time.