Supercharge
Claude Code
for Every Team
A standardized collection of AI agents, skills, and commands designed for Claude Code workflows. Install curated plugins — stop configuring, start shipping.
Everything your team needs
for AI-assisted development
Instead of each developer manually configuring AI behaviors per project, the AI Toolkit provides curated, tested plugins — making AI-assisted development consistent, efficient, and accessible.
Plugin Marketplace
CoreInstall curated plugins that bundle agents, skills, commands, and MCP servers — all in one place via the Claude Code Marketplace.
Pre-built AI Agents
AgentsSpecialized subagents for code explanation, refactoring, testing, debugging, security analysis, and research. Claude Code activates them automatically.
Ready-to-Use Skills
SkillsQuick-access slash commands for common workflows: /review-pr, /generate-tests, /plan-implementation and more — instantly available after install.
MCP Server Integrations
IntegrationsPre-configured MCP servers for Linear, Notion, Graphite, GitHub, Vercel, Figma, Slack, Datadog, Amplitude, and more.
Standardized Patterns
TeamworkA common toolset of Claude Code commands and agents shared by the whole team. Consistent, tested, and ready to use on any project.
From ad-hoc configs to
a shared standard
The AI Toolkit was built so that the whole team benefits from the same high-quality Claude Code setup — no more copying CLAUDE.md files between repos, no more rediscovering slash commands. Install once, get consistency everywhere.
Seven plugins,
endless possibilities
Each plugin bundles agents, skills, commands, and MCP servers — all pre-configured and ready to use. Click any install command to copy it.
development-planning
Plan → Execute → Ship
Implementation planning, execution, and PR creation workflows for Claude Code with multi-agent collaboration.
Create detailed implementation plans for features and changes
Execute implementation plans step-by-step
Refine plans through multi-agent expert discussion
Review plans for completeness and feasibility
Create Graphite PRs with conventional commits
Generate well-structured git commit messages
development-pr-workflow
PR Review & Graphite Integration
Pull request review and management workflows for Claude Code with deep Graphite integration for stacked PRs.
Comprehensive code review using specialized agents
Address PR review comments and fix CI failures
Batch resolve issues on all open PRs in parallel
Split monolithic branches into logical PR stacks
Update Graphite PR stacks by resolving comments and syncing
development-codebase-tools
Explore, Refactor & Analyze
Codebase exploration, refactoring, and quality analysis tools with multi-agent architecture for deep code understanding.
Multi-agent code explanation for architecture, patterns, security, and performance
Identify and prioritize technical debt with remediation plans
Generate Excalidraw architecture diagrams from codebase analysis
Deep codebase exploration and understanding
Comprehensive refactoring with safety checks and pattern application
Audit and harden TypeScript type safety — find any, unsafe casts, and missing return types
development-productivity
Docs, Research & Test Generation
Documentation, research, test generation, document generation, and prompt optimization tools for Claude Code.
Generate comprehensive tests with advanced testing strategies
Research topics by combining web search with codebase analysis
Generate professional documents (PDF, DOCX, HTML, and more)
Audit dependencies for security vulnerabilities and outdated packages
Optimize AI prompts for better model performance
Update CLAUDE.md documentation files after code changes
uniswap-integrations
11+ External Service Integrations
External service integrations for Claude Code — Linear, Notion, Nx, Chrome DevTools, GitHub, Pulumi, Figma, Vercel, Slack, Amplitude, Datadog, and more.
Generate daily standup reports from GitHub and Linear activity
Configure GitHub Personal Access Token for MCP server
Orchestrate deployment pipelines with CI/CD configuration
Refine and enhance Linear task descriptions
spec-workflow
OptionalSpec-Driven Development
Autonomous spec-driven development workflow with multi-agent collaboration, specification management, and task orchestration.
Fully autonomous spec creation and implementation with multi-agent collaboration
Orchestrate implementation of existing spec-workflow tasks
Up and running in
five steps
Install once via the Claude Code Marketplace. Your whole team gets the same consistent, powerful AI setup.
Prerequisites
Node.js 22+ with npm 11.7.0
Ensure you have Node.js 22 or later installed. The AI Toolkit uses the Claude Code Marketplace, so you'll also need Claude Code.
# Install Claude Code (if not already installed)npm install -g @anthropic-ai/claude-code# Verify Node.js versionnode --version # Should be 22+# Update npm if needednpm install -g npm@11.7.0Add the Marketplace
Register the Uniswap AI Toolkit source
Open Claude Code in your terminal by running `claude`. Then add the Uniswap AI Toolkit as a marketplace source.
# Open Claude Code REPLclaude# Inside Claude Code, add the marketplace> /plugin marketplace add Uniswap/ai-toolkit✓ Marketplace 'uniswap-ai-toolkit' added successfullyInstall Plugins
Choose the plugins your team needs
Install the plugins you want. Each plugin activates its agents, skills, and commands immediately after installation.
# Install core plugins (recommended)> /plugin install development-planning@uniswap-ai-toolkit> /plugin install development-pr-workflow@uniswap-ai-toolkit> /plugin install development-codebase-tools@uniswap-ai-toolkit> /plugin install development-productivity@uniswap-ai-toolkit> /plugin install uniswap-integrations@uniswap-ai-toolkit# Optional plugins> /plugin install spec-workflow@uniswap-ai-toolkit> /plugin install claude-setup@uniswap-ai-toolkitVerify & Use
Your team's AI toolkit is ready
Verify everything is working, then start using your new slash commands, agents, and skills right away.
# View all installed plugins and their capabilities> /plugins# Use your new skills immediately> /review-pr> /plan-implementation> /generate-tests> /update-claude-md# Or just ask Claude naturally"Help me plan out user authentication""Review the changes in my current branch"Alternative: MCP Server Addons
You can also install via the Nx CLI — useful if you want to clone the repository and run generators locally.
# Stable versionnpx @uniswap/ai-toolkit-nx-claude@latest# Prerelease versionnpx @uniswap/ai-toolkit-nx-claude@nextTrunk-based development
with automated releases
A structured three-branch strategy keeps development fast and releases reliable. Versioning is determined by conventional commits — no manual tagging required.
feature/*Individual feature branches — where development happens. Not published.
- Create: git checkout -b feature/your-feature
- Develop and commit with conventional commits
- Open PR targeting the next branch
nextIntegration branch for testing — automatically published as prerelease.
- Features merge here first
- Auto-publishes as 1.0.0-next.X
- Runs full CI/CD pipeline
- Use npx @uniswap/ai-toolkit-nx-claude@next
mainStable, production-ready code — automatically published on every merge.
- Only stable, tested code
- Auto-publishes as 1.0.0
- Triggers next branch rebase
- Use npx @uniswap/ai-toolkit-nx-claude@latest
Automated Publishing
Packages automatically publish when changes merge to main or next. No manual release steps needed.
Intelligent Versioning
Conventional commits drive automatic version bumps — feat: bumps minor, fix: bumps patch.
Branch Synchronization
After main publishes, next is automatically rebased to stay current with stable changes.
Code Quality Guards
Pre-commit hooks ensure consistent formatting, linting, and type-checking on every commit.