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 v3.0 — harness × touchpoint × wallet routing |
| Plugin | .claude-plugin/marketplace.json + manifest; includes eCommerce MCP via root .mcp.json (Claude Code / Cowork) |
| Spec | Agent Skills compliant |
/plugin marketplace add bitrefill/agents
/plugin install bitrefill@bitrefill-skills
/reload-pluginsRegisters the bitrefill skill and eCommerce MCP (.mcp.json); OAuth on first MCP call. Pin: bitrefill/agents@v3.0.0.
Update:
/plugin marketplace update bitrefill-skills
/plugin update bitrefill@bitrefill-skills
/reload-pluginsCowork: Customize → Plugins → add bitrefill/agents → install bitrefill. claude.ai: Connectors only → claude-chat.md. Other hosts → 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, and hardening: skills/bitrefill/references/harnesses/openclaw.md.
| Skill | Description |
|---|---|
bitrefill |
Capability-driven routing: probe harness (exec, egress, MCP), pick touchpoint (Bitrefill MCP, x402 REST via Base MCP, CLI, API, browse), then wallet (balance, x402, send). Includes OpenClaw, Hermes, ChatGPT+Base MCP, and wallet matrix (Base MCP, AgentCash, CDP awal, Phantom, MetaMask). |
.mcp.json
.claude-plugin/
├── plugin.json
└── marketplace.json
skills/bitrefill/
├── SKILL.md
└── references/
├── harnesses/
│ ├── decision-engine.md
│ ├── capability-matrix.md
│ ├── openclaw.md
│ └── claude-chat.md
├── touchpoints/
│ ├── mcp.md
│ ├── x402.md
│ ├── cli.md
│ ├── cli-headless-auth.md
│ ├── api.md
│ └── browse.md
├── wallets/
│ ├── matrix.md
│ ├── payment.md
│ ├── base-mcp.md
│ ├── siwx.md
│ ├── agentcash.md
│ ├── cdp-awal.md
│ ├── metamask.md
│ └── phantom.md
├── safeguards.md
└── 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.