A unified, capability-aware agent skill for Bitrefill — enabling AI coding agents to browse, buy, and manage gift cards, mobile top-ups, and eSIMs across 180+ countries with crypto, Lightning, USDC via x402, or pre-funded account balance.
| Item | Status |
|---|---|
| Repo | bitrefill/agents on GitHub |
| Skill | bitrefill — capability-aware, routes to MCP / CLI / API / browser based on host |
| Plugin | .claude-plugin/marketplace.json + manifest; includes eCommerce MCP via root .mcp.json (Claude Code / Cowork) |
| Spec | Agent Skills compliant |
Installing the bitrefill plugin registers the bitrefill skill and the eCommerce MCP server (no separate claude mcp add needed):
/plugin marketplace add bitrefill/agents
/plugin install bitrefill@bitrefill-skillsFirst MCP tool call triggers OAuth in your Claude client (no API key configuration). Other hosts (Cursor, Codex CLI, etc.) still configure MCP manually — see skills/bitrefill/references/mcp.md.
npx skills add bitrefill/agentsWith a specific agent (e.g. Cursor):
npx skills add bitrefill/agents -a cursor -yVia the cross-host installer:
npx skills add bitrefill/agents -a openclaw -yOr via OpenClaw's own ClawHub registry:
openclaw skills install bitrefill
openclaw gateway restartThen wire the eCommerce MCP for typed purchase tools:
openclaw mcp set bitrefill --url "https://api.bitrefill.com/mcp/$BITREFILL_API_KEY"Full setup, channel-aware scenarios (Telegram purchase, cron top-up, mobile-camera context), and required hardening: skills/bitrefill/references/host-openclaw.md.
| Skill | Description |
|---|---|
bitrefill |
Capability-aware skill that detects the host runtime and routes to the highest-fidelity channel: residential-IP browser (ChatGPT Atlas, Cursor, Claude+Chrome), eCommerce MCP (preferred for purchases), @bitrefill/cli via npm, or the REST API (Personal / Business / Affiliate). Includes a dedicated OpenClaw integration guide for chat-channel scenarios — Telegram purchases, cron auto-renewals, mobile-camera context. |
.mcp.json # Claude Code plugin: eCommerce MCP (HTTP) definition
.claude-plugin/
├── plugin.json
└── marketplace.json
skills/bitrefill/
├── SKILL.md # capability decision tree + safeguards summary
└── references/
├── browse.md # residential browser
├── mcp.md # MCP setup per client
├── cli.md # @bitrefill/cli
├── api.md # Personal / Business / Affiliate REST
├── host-openclaw.md # OpenClaw Gateway integration
├── capability-matrix.md # per-client cheat sheet
├── safeguards.md # spending policy + per-host hardening
└── troubleshooting.md
To add a new skill:
- Create a new directory under
skills/(e.g.,skills/my-skill/) - Add a
SKILL.mdfile with valid YAML frontmatter (name,description) and agent instructions - Optionally add a
references/subdirectory with supporting documentation - Update
.claude-plugin/marketplace.jsonto register the skill
Skill names must be lowercase with hyphens and match the directory name exactly.
For the full Agent Skills specification, see agentskills.io/specification.