Install the skill pack
This page shows how to install the AgentPay SDK skill pack into a supported host.
The most important detail is this:
the host loads the skill pack
the local machine still runs
agentpay
Do not treat those as the same install step.
Quick install (skills only)
If you only want the AI skill pack and adapters without installing the local AgentPay runtime:
curl -fsSL https://wlfi.sh | bash -s -- --skills-onlyYou can also pin a version:
curl -fsSL https://wlfi.sh/latest | bash -s -- --skills-only
curl -fsSL https://wlfi.sh/0.1.0 | bash -s -- --skills-onlyThis mode:
downloads the same macOS AgentPay bundle used by the full installer and only applies the embedded skill files
auto-detects supported AI agent paths and already-installed destinations
presents a toggleable target list and lets you add custom skill-pack or adapter destinations
supports Codex, Claude, Cline, Goose, Windsurf, OpenClaw, portable/legacy
.agents, Cursor, and workspace adapters (AGENTS.md,CLAUDE.md,GEMINI.md, Copilot instructions)installs the Cursor adapter when
AGENTPAY_SETUP_CURSOR_WORKSPACEis set or the current directory is already a Cursor workspacedoes not install
agentpay, Node.js, shell PATH exports, or wallet runtime files
After the script finishes, skip to After install to verify.
The sections below cover manual installation for operators who installed from source or need to copy files to a custom location.
What the skill pack contains
The skill pack folder includes:
SKILL.md- the main skill definition loaded by compatible hostsagents/- host adapter files (AGENTS.mdfor Codex/OpenClaw,CLAUDE.mdfor Claude Code,cursor-agentpay-sdk.mdcfor Cursor,openai.yamlfor OpenAI-compatible hosts)references/- the playbooks the agent host actually follows:capabilities.md- what the SDK can and cannot doinstall-and-workflows.md- setup, funding, and transfer recipesintents-and-policies.md- intent mapping and policy configuration
scripts/- helper scripts for agent-driven workflows:prepare-funding-request.mjs- generates funding instructions, QR codes, and formatted output for wallet top-up requestsvendor/qrcodegen.mjs- QR code generation library used by the funding request script
Operators should review the files in references/ to understand what their agent host is doing on their behalf.
What you copy
Clone the repository if you have not already:
The skill pack is the skills/agentpay-sdk/ folder inside the checkout. Do not copy the whole repository into the host's skills directory.
If you reinstall or update the pack, replace the existing destination folder instead of copying into it repeatedly.
Codex
OpenClaw
Claude Code
Cursor
Cursor has a purpose-built .mdc adapter file. Use it instead of AGENTS.md:
The .mdc file includes alwaysApply: false front-matter so Cursor only invokes it when relevant.
After install
Open a new host session and try:
A correct install should let the host speak concretely about wallet setup, funding, policy, transfers, and approvals without needing extra pasted instructions.
Next step
With the skill pack installed, continue to Workflows for the end-to-end operator flow.
Last updated