Skip to main content

Agent Skills

Bluvo publishes a machine-readable skill file at https://github.com/bluvoinc/sdk/blob/main/skill.md. This file tells AI agents what Bluvo can do, what inputs are needed, and what constraints apply, so coding assistants like Claude, Cursor, and Copilot can generate accurate Bluvo integrations out of the box.

Install the Bluvo Skill

npx skills add https://github.com/bluvoinc/sdk
This downloads Bluvo’s capability summary and adds it to your agent’s context. Any AI assistant that supports the skills protocol will automatically pick it up.
llms.txt vs skill.md, what’s the difference?
  • llms.txt is a directory, it lists every documentation page so agents know where to look things up.
  • skill.md is a capability summary, it tells agents what they can build, what inputs they need, and what constraints apply.
Both are available at docs.bluvo.dev. Use skill.md when you want agents to build with Bluvo, and llms.txt when you want agents to research Bluvo’s docs.

What the Skill Enables

Once an agent has the Bluvo skill loaded, it can:
  • Scaffold exchange integrations, generate OAuth2 connection flows for supported exchanges
  • Build withdrawal UIs, wire up the full withdrawal state machine with quote, confirm, and status steps
  • Handle 2FA / SMS / KYC challenges, implement the correct challenge-response patterns during withdrawals
  • Manage wallets server-side, use BluvoClient for privileged operations like listing wallets and initiating withdrawals
  • Set up real-time updates, configure WebSocket subscriptions for live withdrawal status


SDK Sub-Skills

The Bluvo skill automatically references deeper SDK skill files that agents load on demand when they need implementation details:
  • @bluvo/react, React hooks, Next.js patterns, and the useBluvoFlow hook
  • @bluvo/sdk-ts, Core TypeScript state machine, REST client, and server-side BluvoClient
These are fetched from GitHub when the agent drills into a specific SDK package.

Next Steps

View skill.md

Read the raw capability file that agents consume

Browse llms.txt

See the full documentation directory for AI agents

skill.md Spec

Learn about the skills protocol and specification