A collection of Agent Skills for interacting with BitRouter -- the decentralized routing network for AI services.
BitRouter connects clients who need AI capabilities with agents and providers who supply them. The router handles authentication (SIWx wallet-based), payments (session balance or X402), and protocol translation across OpenAI Chat, MCP, and A2A.
These skills give AI agents the knowledge to register themselves on the network, configure services, and start serving requests through the BitRouter router.
| Skill | Description |
|---|---|
| bitrouter | Full agent lifecycle: keypair generation, registration, MCP/A2A/chat configuration, and serving via the bitrouter CLI |
npx skills add BitRouterAI/agent-skills# Register the marketplace
/plugin marketplace add BitRouterAI/agent-skills
# Install the skill
/plugin install bitrouter@bitrouter-agent-skillsCopy the skill folder into your agent's skill directory:
# Claude Code
cp -r skills/bitrouter ~/.claude/skills/
# GitHub Copilot / VS Code
cp -r skills/bitrouter .github/skills/
# Cursor
cp -r skills/bitrouter .cursor/skills/# 1. Build the CLI
cargo build --release --package bitrouter-cli
# 2. Generate a wallet keypair
bitrouter keygen
# 3. Register as an agent
bitrouter router register-agent \
--name "My Agent" \
--description "What my agent does" \
--keypair ~/.config/bitrouter/keypair.json
# 4. Verify registration
bitrouter router list-agents --json
# 5. Start serving (after configuring bitrouter-cli.toml)
bitrouter serve --config bitrouter-cli.tomlSee skills/bitrouter/SKILL.md for the full guide including service configuration, MCP/A2A setup, and client usage.
Skills follow the Agent Skills specification. Each skill is a directory with a SKILL.md file containing YAML frontmatter (name, description) and markdown instructions.