Skip to content

Installation

Multiple installation options are available depending on your use case.

Claude Code Plugin

Via Marketplace

Install all plugins from the Claude Code Marketplace:

bash
/plugin marketplace add uniswap/uniswap-ai

Install Individual Plugins

bash
/plugin install uniswap-hooks      # V4 hook development
/plugin install uniswap-trading    # Swap integration
/plugin install uniswap-cca        # CCA auctions
/plugin install uniswap-driver     # Swap & liquidity planning
/plugin install uniswap-viem       # EVM integration (viem/wagmi)

Development Setup

To contribute or develop locally:

bash
# Clone the repository
git clone https://github.com/uniswap/uniswap-ai.git
cd uniswap-ai

# Install dependencies
npm install

# Build all packages
npx nx run-many -t build

# Run tests
npx nx run-many -t test

System Requirements

RequirementVersionPurpose
Claude CodeLatestPlugin runtime
Node.js22.xLocal development
npm11.7.0+Local development

npm Version (for contributors)

Local development requires npm 11.7.0+:

bash
npm install -g npm@latest
npm --version  # Should output: 11.7.0 or higher

Verifying Installation

After plugin installation, the plugin's skills should be available as slash commands. For example, after installing uniswap-hooks:

text
/v4-security-foundations

Troubleshooting

Plugin Not Found

If skills don't appear after installation:

  1. Verify the plugin was installed successfully
  2. Try reinstalling with /plugin install <plugin-name>
  3. Check that Claude Code is up to date

Released under the MIT License.