Skip to content

bitrouter/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agent Skills for BitRouter

A collection of Agent Skills for interacting with BitRouter -- the decentralized routing network for AI services.

Overview

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.

Skills

Skill Description
bitrouter Full agent lifecycle: keypair generation, registration, MCP/A2A/chat configuration, and serving via the bitrouter CLI

Installation

Any agent (Claude Code, Copilot, Cursor, Codex, etc.)

npx skills add BitRouterAI/agent-skills

Claude Code plugin

# Register the marketplace
/plugin marketplace add BitRouterAI/agent-skills

# Install the skill
/plugin install bitrouter@bitrouter-agent-skills

Manual

Copy 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/

Quick start

# 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.toml

See skills/bitrouter/SKILL.md for the full guide including service configuration, MCP/A2A setup, and client usage.

Skill format

Skills follow the Agent Skills specification. Each skill is a directory with a SKILL.md file containing YAML frontmatter (name, description) and markdown instructions.

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages