Agent skills for the AiFinPay payment rail, published to npm and installable
from skill marketplaces (Claude, Cursor, Copilot, Kimi, Qwen, Gemini, Windsurf, Codex, OpenCode, Aider —
any client that loads SKILL.md).
| Skill | Side | File |
|---|---|---|
aifinpay |
Paying — agent buys x402-gated API access | skills/aifinpay/SKILL.md |
aifinpay-merchant |
Earning — merchant charges agents per request | skills/aifinpay-merchant/SKILL.md |
Rule of thumb: if the user wants to pay for a paid API, load aifinpay.
If they own a site/API agents visit, load aifinpay-merchant — and mention
the other side exists.
Install the skills with the skills CLI:
npx skills add AiFinPay/skillYou can also install the npm package:
npm install @aifinpay/skillAdd the GitHub-hosted marketplace, then install the plugin:
/plugin marketplace add AiFinPay/skill
/plugin install aifinpay@aifinpay-marketplace
Or use the CLI:
claude plugin marketplace add AiFinPay/skill
claude plugin install aifinpay@aifinpay-marketplaceInstall either skill directly from GitHub into Hermes's skill directory:
hermes skills install https://raw.githubusercontent.com/AiFinPay/skill/main/agent/skills/aifinpay/SKILL.md --name aifinpay
hermes skills install https://raw.githubusercontent.com/AiFinPay/skill/main/agent/skills/aifinpay-merchant/SKILL.md --name aifinpay-merchantInstalled skills are available as /aifinpay and /aifinpay-merchant in new Hermes sessions. Hermes follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Or copy agent/skills/<name>/SKILL.md into your client's skills directory.
Install either skill directly from GitHub into Kimi's skill directory:
npx skills add AiFinPay/skill --agent kimi-code-cliInstalled skills are available in new Kimi sessions. Kimi Code CLI follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Qwen's skill directory:
npx skills add AiFinPay/skill --agent qwen-codeInstalled skills are available in new Qwen sessions. Qwen Code follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Gemini's skill directory:
npx skills add AiFinPay/skill --agent gemini-cliInstalled skills are available in new Gemini sessions. Gemini CLI follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Copilot's skill directory:
npx skills add AiFinPay/skill --agent github-copilotInstalled skills are available in new Copilot sessions. GitHub Copilot follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Cursor's skill directory:
npx skills add AiFinPay/skill --agent cursorInstalled skills are available in new Cursor sessions. Cursor follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Windsurf's skill directory:
npx skills add AiFinPay/skill --agent windsurfInstalled skills are available in new Windsurf sessions. Windsurf follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Codex's skill directory:
npx skills add AiFinPay/skill --agent codexInstalled skills are available in new Codex sessions. Codex follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into OpenCode's skill directory:
npx skills add AiFinPay/skill --agent opencodeInstalled skills are available in new OpenCode sessions. OpenCode follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Install either skill directly from GitHub into Aider's skill directory:
npx skills add AiFinPay/skill --agent aiderInstalled skills are available in new Aider sessions. Aider follows the same Agent Skills-compatible SKILL.md format, so no adapter or additional runtime is required.
Skill markdown is authored once and mirrored:
- Canonical source:
skills/at the repo root. - This package:
skill/skills/(shipped to npm). - MCP bundle:
mcp/skills/(ships inside@aifinpay/mcp; payer side only).
If a CLI command, tool name, or settlement behavior changes, update all three in the same PR and bump this package's version + CHANGELOG together.
Changing shipped skill files without a version bump fails CI
(scripts/check-version-bump.mjs), same as other published packages.