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

SkillDescription
wirex-baas-overviewPlatform introduction, environments, credentials, API basics, supported countries
wirex-baas-authS2S OAuth2, Privy authentication, user token issuance, headers, token caching
wirex-baas-onboardingWallet deployment, user registration, 3 KYC flows, user profile, capabilities
wirex-baas-cryptoUnified balance (WUSD/WEUR), global deposit addresses, ERC20 withdrawals, ABI reference
wirex-baas-cardsCard issuance, details (PAN/CVV/PIN), limits, transactions, 3DS authentication
wirex-baas-transfersSEPA/ACH bank transfers, Push-to-Card, recipient management
wirex-baas-webhooksAll webhook endpoints, payload formats, activity history feed
wirex-baas-sandboxHelper 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-skills

Or load directly from a local clone:

git clone https://github.com/wirexapp/wirex-baas-agent-skills.git
claude --plugin-dir ./wirex-baas-agent-skills

OpenAI Codex

Clone the repository. The agents/AGENTS.md file provides automatic skill discovery:

git clone https://github.com/wirexapp/wirex-baas-agent-skills.git

Or 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 --all

Generic 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:

FieldDescription
nameSkill identifier
descriptionOne-line description for skill discovery
licenseApache-2.0
compatibilitySupported agents and requirements

See Also

  • MCP Server — Hosted MCP server for AI-powered editors