Skip to main content
The Corbits Skill is the fastest way to use Corbits from an AI agent. Install it once, and your agent can search for APIs, browse endpoints, check pricing, and make paid calls — all through simple slash commands, with payment handled automatically.

Install

Add the marketplace and install:
/plugin marketplace add corbits-infra/corbits-skill
/plugin install corbits

Setup

Run the init command to configure your wallet keys and install dependencies:
/corbits init
This will:
  1. Prompt for your Solana keypair and/or EVM private key (both optional — configure at least one)
  2. Install Bun if not already present
  3. Scaffold a local project for handling API calls and payment
  4. Store credentials securely (macOS Keychain, or ~/.config/corbits/credentials/ on Linux)
You can skip either wallet during setup. The skill works with whichever chains you configure.

Commands

CommandDescription
/corbits initSet up wallet keys and install dependencies
/corbits search <query>Search for API proxies matching a query
/corbits searchList all available proxies
/corbits statusShow the currently selected proxy
/corbits listShow all endpoints for the current proxy
/corbits callPick an endpoint and call it
/corbits call <filter>Filter endpoints by name (e.g. /corbits call models)

Typical workflow

1. Find an API

/corbits search openai
The skill queries the Discovery API and presents matching proxies with their endpoints, descriptions, and pricing.

2. Browse endpoints

/corbits list
Shows all available endpoints for the selected proxy in a table with path, description, methods, and price.

3. Make a call

/corbits call models
The skill filters endpoints matching “models”, shows the cost, collects any required parameters, and executes the call. Payment is handled automatically — your wallet signs the transaction and the API response is returned. For endpoints with request bodies (like chat completions), the skill pre-fills sensible defaults and lets you customize before sending.

Credential storage

PlatformStorage
macOSKeychain (security CLI)
Linux~/.config/corbits/credentials/ (mode 600)
OpenClawEnvironment variables via openclaw.json

Uninstall

/plugin uninstall corbits
To also remove wallet keys from macOS Keychain:
security delete-generic-password -a corbits -s corbits-solana-keypair
security delete-generic-password -a corbits -s corbits-evm-key