A collection of Agent Skills for interacting with AiMo Network -- the decentralized AI marketplace.
AiMo Network provides permissionless access to hundreds of AI models through a single OpenAI-compatible API with blockchain-based pay-per-use payments (X402 protocol on Solana/Base).
These skills allow AI agents (Claude, GPT, LangChain agents, etc.) to integrate with AiMo Network services.
| Skill | Description |
|---|---|
| aimo-network | Chat completions, streaming, X402 payments, and provider routing via AiMo's unified API |
npx skills add AIMOverse/agent-skills# Register the marketplace
/plugin marketplace add AIMOverse/agent-skills
# Install the skill
/plugin install aimo-network@aimoverse-agent-skillsCopy the skill folder into your agent's skill directory:
# Claude Code
cp -r skills/aimo-network ~/.claude/skills/
# GitHub Copilot / VS Code
cp -r skills/aimo-network .github/skills/
# Cursor
cp -r skills/aimo-network .cursor/skills/pip install openai
export AIMO_API_KEY="aimo-sk-v2-<your-key>"
python skills/aimo-network/examples/python_openai.pynpm install openai
export AIMO_API_KEY="aimo-sk-v2-<your-key>"
npx tsx skills/aimo-network/examples/typescript_openai.tsSkills follow the Agent Skills specification. Each skill is a directory with a SKILL.md file containing YAML frontmatter (name, description) and markdown instructions.