-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Note: Canonical documentation lives under
docs/. This wiki may lag.
Composable AI capabilities for every major coding assistant β one toolkit, any tool.
agent-toolkit is a modular collection of skills, agent personas, MCP configuration templates, and loop engineering patterns designed to work across all major AI coding assistants. Instead of maintaining separate prompt libraries for each tool, you keep one source of truth and deploy exactly what each tool needs.
| Component | Count | Description |
|---|---|---|
| Skills | 61 | Portable capability definitions across 9 domains |
| Agent personas | 16 | Tool-agnostic specialist role definitions |
| Loop templates | 10 | Recurring agentic workflows across 3 tiers |
| Plugins | 3 | Claude Code and Cursor marketplace bundles |
| Tool profiles | 6 | Per-tool configurations (Claude Code, Cursor, OpenCode, Copilot, Windsurf, Pi) |
| MCP templates | 6 | Ready-to-use Model Context Protocol configs |
| Solution packs | 3 | Curated bundles for common team setups |
- Installation β all 4 install methods, prerequisites, verification, updating, uninstalling
- Profiles β per-tool profile guide for all 6 supported tools
- Skills Reference β all 61 skills organized by domain, frontmatter spec, compatibility matrix
- Agents Reference β all 16 agent personas, triggers, handoffs, invocation patterns
- Loop Engineering β loop YAML spec, all 10 templates, checkpointing, budget sizing, scheduling
- MCP Setup β all 6 MCP providers with env vars, setup commands, and per-tool configuration
- Plugin Marketplace β Claude Code and Cursor plugin installation, plugin structure, building extensions
- Contributing Guide β dev setup, how to add skills, agents, and loops, PR process
- FAQ β common questions answered
/plugin marketplace add ulises-jeremias/agent-toolkit
/plugin install agent-toolkit-core@agent-toolkit
/plugin install agent-toolkit-agents@agent-toolkit
/plugin install agent-toolkit-forge@agent-toolkit
# Global install β all compatible tools pick up skills automatically
npx skills add ulises-jeremias/agent-toolkit -g
# Project-scoped install
npx skills add ulises-jeremias/agent-toolkitgit clone https://github.com/ulises-jeremias/agent-toolkit.git
bash agent-toolkit/scripts/install.shgit clone https://github.com/ulises-jeremias/agent-toolkit ~/.agent-toolkit
bash ~/.agent-toolkit/scripts/install.shAfter installing the Claude Code plugin:
"fix CI"
The gh-fix-ci skill runs automatically: it fetches the failing check logs, identifies the root
cause, and proposes a minimal fix β or opens a draft PR if the change is straightforward.
"review the current diff"
The code-reviewer agent inspects the diff, checks for quality, security, and correctness issues,
and outputs prioritized findings with copy-pasteable fixes.
"write a bug report for the login redirect issue"
The bug skill generates a structured bug report with reproduction steps, expected vs. actual
behavior, and severity classification.
"break down the user profile feature into tasks"
The planning skill decomposes the feature into estimated work items with dependency ordering.
# Initialize the OSS maintenance pack
cp ~/.agent-toolkit/packs/oss-maintenance/config.yaml ~/my-ecosystem.yaml
# Edit to add your repos, then:
agent-toolkit loop run oss-daily-briefing --pack ~/my-ecosystem.yamlThe oss-daily-briefing loop produces a daily read-only briefing across all configured repos β
new PRs, issues needing attention, and CI health on main.
agent-toolkit/
βββ skills/ # 61 skills across 9 domains
βββ agents/ # 16 agent persona definitions
βββ loops/ # 10 loop engineering templates
βββ profiles/ # Per-tool configurations (6 tools)
βββ mcp/templates/ # 6 MCP provider config stubs
βββ plugins/ # 3 marketplace plugin bundles
βββ packs/ # 3 solution packs
βββ catalogs/ # skill-catalog.yaml, agent-catalog.yaml
βββ schemas/ # JSON validation schemas
βββ docs/ # Documentation and how-to guides
βββ scripts/ # Install and validation scripts
| Tool | Plugin | npx | Manual |
|---|---|---|---|
| Claude Code | Yes (recommended) | Yes | Yes |
| Cursor | Yes | Yes | Yes |
| OpenCode | No | Yes | Yes |
| GitHub Copilot | No | No | Yes |
| Windsurf | No | Yes | Yes |
| Pi Coding Agent | No | Yes | Yes |
MIT β see LICENSE for details.
Getting Started
Reference
- π οΈ Skills
- π€ Agents
- π Loop Engineering
- π MCP Setup
- π₯οΈ Profiles
- π Plugin Marketplace
Compiler