Agent Skills
Pre-built skills for AI agents to integrate with Wirex BaaS.
Wirex publishes a skillset for AI agents to ease integration with the Wirex BaaS platform. The skills follow the Agent Skills specification and work with Claude Code, OpenAI Codex, Google Gemini CLI, and other compatible agents.
Repository: github.com/wirexapp/wirex-baas-agent-skills
Available Skills
| Skill | Description |
|---|---|
wirex-baas-overview | Platform introduction, environments, credentials, API basics, supported countries |
wirex-baas-auth | S2S OAuth2, Privy authentication, user token issuance, headers, token caching |
wirex-baas-onboarding | Wallet deployment, user registration, 3 KYC flows, user profile, capabilities |
wirex-baas-crypto | Unified balance (WUSD/WEUR), global deposit addresses, ERC20 withdrawals, ABI reference |
wirex-baas-cards | Card issuance, details (PAN/CVV/PIN), limits, transactions, 3DS authentication |
wirex-baas-transfers | SEPA/ACH bank transfers, Push-to-Card, recipient management |
wirex-baas-webhooks | All webhook endpoints, payload formats, activity history feed |
wirex-baas-sandbox | Helper API for test simulations (mint tokens, SEPA/ACH/card transactions) |
Installation
Claude Code
Add the marketplace and install the plugin:
/plugin marketplace add wirexpay/wirex-baas-agent-skills
/plugin install wirex-baas@wirex-baas-agent-skillsOr load directly from a local clone:
git clone https://github.com/wirexapp/wirex-baas-agent-skills.git
claude --plugin-dir ./wirex-baas-agent-skillsOpenAI Codex
Clone the repository. The agents/AGENTS.md file provides automatic skill discovery:
git clone https://github.com/wirexapp/wirex-baas-agent-skills.gitOr install individual skills with the built-in skill installer from within a Codex session.
Google Gemini CLI
The gemini-extension.json at the repo root provides automatic discovery and MCP server integration.
Any Agent (npx skills)
Install into any supported agent using the skills CLI:
# Install all skills
npx skills add wirexpay/wirex-baas-agent-skills --all
# Install a specific skill
npx skills add wirexpay/wirex-baas-agent-skills --skill wirex-baas-auth
# Install to a specific agent
npx skills add wirexpay/wirex-baas-agent-skills -a claude-code --allGeneric Agents
Each skill follows the Agent Skills specification. Skills are in skills/, each containing a SKILL.md with YAML frontmatter and a references/ directory with detailed documentation.
Skill Structure
Each skill contains:
skills/wirex-baas-{name}/
├── SKILL.md # Main skill file with YAML frontmatter
└── references/ # Detailed documentation
├── REFERENCE.md # API endpoint details
└── ... # Additional reference files
The SKILL.md frontmatter includes:
| Field | Description |
|---|---|
name | Skill identifier |
description | One-line description for skill discovery |
license | Apache-2.0 |
compatibility | Supported agents and requirements |
See Also
- MCP Server — Hosted MCP server for AI-powered editors
Updated about 9 hours ago
