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-aiInstall 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 testSystem Requirements
| Requirement | Version | Purpose |
|---|---|---|
| Claude Code | Latest | Plugin runtime |
| Node.js | 22.x | Local development |
| npm | 11.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 higherVerifying Installation
After plugin installation, the plugin's skills should be available as slash commands. For example, after installing uniswap-hooks:
text
/v4-security-foundationsTroubleshooting
Plugin Not Found
If skills don't appear after installation:
- Verify the plugin was installed successfully
- Try reinstalling with
/plugin install <plugin-name> - Check that Claude Code is up to date