Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill skill-name명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| 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.