AppotaPay Skills
AppotaPay Skills are folders of instructions, scripts, and reference material that let AI coding
agents discover and integrate the AppotaPay payment gateway the standard, correct way. Install once,
then ask your agent "integrate AppotaPay payments" — it follows the official flow: build the
X-APPOTAPAY-AUTH JWT, create a payment, verify the IPN/redirect signature, check status, and refund.
Skills follow the open Agent Skills standard, so they work across many agents: Claude Code, Cursor, Copilot, and 40+ others.
Everything is open source at github.com/AppotaPayInc/skills.
What are skills?
Each skill is a folder with a SKILL.md (a short description that lets the agent recognize when to use it),
plus a references/ folder (full field tables) and scripts/ (runnable helpers: build a JWT, verify an
IPN). The agent loads detail only when needed (progressive disclosure) and always reconciles against the
live docs before generating code, so it never works from stale data.
Installation
- Claude Code
- npm
- pnpm
- Yarn
- Bun
- Manual
/plugin marketplace add AppotaPayInc/skills
/plugin install appotapay@appotapay-skills
npx skills add AppotaPayInc/skills
pnpm dlx skills add AppotaPayInc/skills
yarn dlx skills add AppotaPayInc/skills
bun x skills add AppotaPayInc/skills
Copy the folders under skills/ into your agent's skills directory, e.g. ~/.claude/skills/ (Claude Code),
~/.cursor/skills/ (Cursor), or a project's .claude/skills/.
git clone https://github.com/AppotaPayInc/skills.git
Skills work with any standards-compliant Agent Skills agent.
Update skill
Update to the latest version:
- npm
- pnpm
- Yarn
- Bun
npx skills update AppotaPayInc/skills
pnpm dlx skills update AppotaPayInc/skills
yarn dlx skills update AppotaPayInc/skills
bun x skills update AppotaPayInc/skills
On Claude Code, run /plugin marketplace update appotapay-skills then /reload-plugins.