用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill skill-name命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| title | Plugins Overview |
| order | 1 |
Plugins are the primary distribution mechanism for Uniswap AI tools. Each plugin is a self-contained package that provides skills and agents for Claude Code.
| Plugin | Description | Skills |
|---|---|---|
| uniswap-hooks | Security-first Uniswap V4 hook development | v4-security-foundations |
| uniswap-cca | CCA auction configuration and deployment | configurator, deployer |
| uniswap-trading | Uniswap swap integration | swap-integration |
| uniswap-viem | EVM blockchain integration with viem/wagmi | viem-integration |
| uniswap-driver | Swap and liquidity deep link planning | swap-planner, liquidity-planner |
Installation:
/plugin marketplace add uniswap/uniswap-ai
Each plugin follows this structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/ # AI skills
│ └── skill-name/
│ ├── SKILL.md # Skill definition
│ └── references/ # Supporting materials
├── agents/ # Specialized agents (optional)
├── package.json # Package metadata
├── project.json # Nx configuration
└── README.md # Documentation
The plugin.json file defines the plugin:
{
"name": "uniswap-hooks",
"version": "1.3.0",
"description": "AI-powered assistance for creating Uniswap V4 hooks",
"author": {
"name": "Uniswap Labs",
"email": "ai-services@uniswap.org"
},
"license": "MIT",
"skills": ["./skills/v4-security-foundations"]
}
Skills are AI-powered capabilities defined in markdown:
---
name: skill-name
description: What the skill does
license: MIT
metadata:
author: uniswap
---
# Skill Name
Instructions for the AI on how to perform this skill...
See Skills for available skills.
Agents are specialized AI configurations defined as markdown files in the agents/ directory. They provide expert-level assistance for specific domains:
---
name: swap-integration-expert
description: Expert agent for complex swap integration questions
---
Instructions for the agent on how to handle specialized queries...
Not all plugins include agents. Currently, uniswap-trading and uniswap-viem provide specialized expert agents.
Plugins follow semantic versioning:
| Change | Version Bump |
|---|---|
| Bug fixes | Patch (1.0.X) |
| New features (backward compatible) | Minor (1.X.0) |
| Breaking changes | Major (X.0.0) |
Version is tracked in .claude-plugin/plugin.json.
See Creating Plugins for a detailed guide.