Add Cashfree Payments product-specific skills to your AI coding assistant projects.
# Add Payment Gateway skills
npx @cashfreepayments/agent-skills add pg
# Add Secure ID skills
npx @cashfreepayments/agent-skills add secure-id
# Add Subscriptions skills
npx @cashfreepayments/agent-skills add subscriptions
# Add Cross Border skills
npx @cashfreepayments/agent-skills add cross-border
# Add Payouts skills
npx @cashfreepayments/agent-skills add payoutsThis will prompt you to select which AI coding assistants to configure:
- Cursor - Creates
.cursor/skills/cashfree/<product>/ - Claude Code - Creates
.claude/skills/cashfree/<product>/ - OpenCode - Creates
.opencode/skills/cashfree/<product>/ - VS Code Copilot - Creates
.github/skills/cashfree/<product>/ - Gemini CLI - Creates
.gemini/skills/cashfree/<product>/ - Antigravity - Creates
.agent/skills/cashfree/<product>/ - GitHub Copilot CLI - Creates
.github/skills/cashfree/<product>/ - OpenAI Codex CLI - Creates
.codex/skills/cashfree/<product>/
Integrate Cashfree Payments into your app — backend SDK, direct REST APIs, mobile SDKs, and webhook setup.
npx @cashfreepayments/agent-skills add pgBank account verification, penny drop, UPI verification, and settlement reconciliation.
npx @cashfreepayments/agent-skills add secure-idRecurring payments, subscription plans, authorization, and customer management.
npx @cashfreepayments/agent-skills add subscriptionsInternational payments, currency conversion, and cross-border transactions.
npx @cashfreepayments/agent-skills add cross-borderBulk payouts, vendor payments, and disbursement management.
npx @cashfreepayments/agent-skills add payoutsnpx @cashfreepayments/agent-skills add pgYou'll be prompted to select which AI assistants to configure.
npx @cashfreepayments/agent-skills add pg --frameworks cursor,claude-code,gemini-clinpx @cashfreepayments/agent-skills add secure-id --path /path/to/projectnpx @cashfreepayments/agent-skills add pg
npx @cashfreepayments/agent-skills add secure-id
npx @cashfreepayments/agent-skills add subscriptions
npx @cashfreepayments/agent-skills add cross-border
npx @cashfreepayments/agent-skills add payoutsFor each product and framework combination, skill files are created in your project.
.claude/skills/cashfree/pg/api.md ← S2S REST API integration
.claude/skills/cashfree/pg/sdk.md ← Backend SDK (Node.js, Python, Java, Go)
.claude/skills/cashfree/pg/mobile.md ← Mobile SDKs (Android, iOS, React Native, Flutter, Cordova)
.claude/skills/cashfree/pg/webhooks.md ← Webhook setup and signature verification
.cursor/skills/cashfree/pg/api.md
.cursor/skills/cashfree/pg/sdk.md
.cursor/skills/cashfree/pg/mobile.md
.cursor/skills/cashfree/pg/webhooks.md
.cursor/skills/cashfree/secure-id.md
.cursor/skills/cashfree/subscriptions.md
.cursor/skills/cashfree/cross-border.md
.cursor/skills/cashfree/payouts.md
Each skill file contains:
- Product-specific documentation references
- Common API patterns and use cases
- Example queries for the AI assistant
- Best practices for integration
Four focused skills for integrating Cashfree Payments — the AI picks the right one based on your stack:
| Skill file | When the AI uses it |
|---|---|
pg/sdk.md |
Integrating Cashfree Payments via backend SDK (Node.js, Python, Java, Go) |
pg/api.md |
Integrating Cashfree Payments via direct REST/S2S API calls |
pg/mobile.md |
Integrating Cashfree Payments into Android, iOS, React Native, Flutter, or Cordova apps |
pg/webhooks.md |
Setting up webhooks, handling payment events, verifying signatures |
Guides your AI assistant on:
- Bank account verification APIs
- Penny drop verification
- UPI ID verification
- Transaction reconciliation
Guides your AI assistant on:
- Creating subscription plans
- Managing recurring payments
- Subscription authorization flows
- Customer subscription lifecycle
Guides your AI assistant on:
- International payment processing
- Currency conversion and rates
- Cross-border compliance
- Multi-currency transactions
Guides your AI assistant on:
- Bulk payout processing
- Vendor payment management
- Disbursement APIs
- Payout status tracking
| Framework | Skill Location |
|---|---|
| Cursor | .cursor/skills/cashfree/ |
| Claude Code | .claude/skills/cashfree/ |
| OpenCode | .opencode/skills/cashfree/ |
| VS Code Copilot | .github/skills/cashfree/ |
| Gemini CLI | .gemini/skills/cashfree/ |
| Antigravity | .agent/skills/cashfree/ |
| GitHub Copilot CLI | .github/skills/cashfree/ |
| OpenAI Codex CLI | .codex/skills/cashfree/ |
When you ask your AI coding assistant about Cashfree integration:
- The assistant reads the relevant skill file
- Uses the guidance to understand your product context
- Provides accurate, product-specific code examples
- References correct API endpoints and parameters
With PG skill:
You: "Integrate Cashfree Payments with my Express app"
AI: *reads pg/sdk.md* → Provides Node.js SDK setup and order creation code
You: "Add Cashfree payments to my Flutter app"
AI: *reads pg/mobile.md* → Provides Flutter SDK integration steps
You: "Set up webhooks for payment confirmation"
AI: *reads pg/webhooks.md* → Provides webhook handler and signature verification code
With secure-id skill:
You: "Verify a bank account"
AI: *reads secure-id.md skill* → Provides bank verification API code
With Subscriptions skill:
You: "Set up a monthly subscription"
AI: *reads subscriptions.md skill* → Provides subscription plan creation code
With Cross Border skill:
You: "How do I process an international payment?"
AI: *reads cross-border.md skill* → Provides cross-border payment API code
With Payouts skill:
You: "How do I send bulk payouts?"
AI: *reads payouts.md skill* → Provides bulk payout API code
