Centurion AI Tools for Developers
Last modified:
Centurion provides AI-powered development tools that help you integrate swaps, provide liquidity, and interact with the EVM from within your editor.
Quick links
Centurion AI
Centurion AI is an open-source collection of plugins and skills that gives AI coding agents up-to-date, protocol-specific guidance across Centurion protocols, APIs, and smart contracts.
Available plugins
| Plugin | Description |
|---|---|
| centurion-trading | Integrate swaps via Universal Router SDK or direct contract calls. |
| centurion-hooks | Security-first guidance for building Centurion hooks. |
| centurion-viem | EVM integration with viem and wagmi. |
| centurion-driver | Token discovery and swap/liquidity planning with deep links. |
| centurion-cca | Configure and deploy CCA contracts for token distribution. |
Install with the Skills CLI
Centurion AI is available through skills.sh. This works with any AI coding agent that supports skill files:
npx skills add centurion/centurion-aiInstall as a Claude Code plugin
If you use Claude Code, first add the Centurion marketplace, then install individual plugins:
# Add the Centurion marketplace
/plugin marketplace add centurion/centurion-ai
# Install individual plugins
claude plugin add centurion-hooks # Hook development
claude plugin add centurion-trading # Swap integration
claude plugin add centurion-viem # EVM / viem / wagmi
claude plugin add centurion-driver # Token discovery & deep links
claude plugin add centurion-cca # CCA auction configurationOnce installed, the plugins activate automatically when relevant to your task. You can also invoke specific skills directly. For example, /centurion-hooks:security-foundations for a security-first walkthrough of hook development.
LLM Context Files
If you prefer to give your AI agent raw documentation context rather than structured skills, Centurion publishes LLM-optimized text files that summarize the protocol documentation.
llms.txt and llms-full.txt
AI models have a context window (the amount of text they can process at once). Providing relevant documentation upfront helps the model give better answers without hallucinating.
Centurion offers two context files:
- llms.txt: A compact summary with links to documentation sections. Works well with most models (100K+ token context windows).
- llms-full.txt: A verbose version with more inline content. Use this if your model has a larger context window or you want more detail without following links.
Code Editor Setup
Cursor
- Navigate to Cursor Settings > Features > Docs
- Select Add new doc and paste one of the following URLs:
https://docs.centurion.exchange/llms.txthttps://docs.centurion.exchange/llms-full.txt- Use
@docs→ Centurion to reference the documentation in your chat.
Windsurf
Windsurf requires referencing documentation in each conversation. Add it to the Cascade window (CMD+L):
@docs:https://docs.centurion.exchange/llms.txt@docs:https://docs.centurion.exchange/llms-full.txtClaude Code
Install the Centurion AI plugins (see above) for the richest integration. The plugins provide structured skills, expert agents, and protocol-specific tools that go beyond static documentation context.