payu-hosted-checkout-skill
v1.0.0
Published
PayU Hosted Payment Integration Skill for AI Agents
Maintainers
Readme
payu-skill
PayU Hosted Payment Integration Skill for AI Agents
A plug-and-play SKILL.md that gives your AI coding agent full knowledge of
the PayU Hosted Payment Page integration — hash generation, payment forms,
status/unmappedStatus routing, webhook handling, and security best practices.
Installation
Option A — npm (Recommended)
npm install payu-skillThe postinstall script auto-copies the skill into your project:
| Folder | Agent |
|---------------------|------------------------------------|
| .cursor/skills/ | Cursor |
| .agents/skills/ | Gemini CLI, Amp, Goose, Windsurf |
| .claude/skills/ | Claude Code |
| .codex/skills/ | OpenAI Codex |
Option B — curl (No Node.js required)
mkdir -p .cursor/skills/payu-hosted-payment-integration
curl -o .cursor/skills/payu-hosted-payment-integration/SKILL.md \
https://raw.githubusercontent.com/payu/payu-agent-skill/main/skills/payu-hosted-payment-integration/SKILL.mdOption C — Shell script (installs to ALL agent dirs at once)
bash <(curl -fsSL https://raw.githubusercontent.com/payu/payu-agent-skill/main/install.sh)Option D — skr CLI
skr install git+https://github.com/payu/payu-agent-skillUsage in Cursor
/payu-hosted-payment-integrationOr describe naturally:
Integrate PayU hosted payment page into my Django appWhat the Skill Covers
- Mandatory & optional request parameters
- SHA-512 hash generation (Python / Node.js / PHP)
- Auto-submitting payment form HTML
surl/furlcallback handling- Response hash verification (reverse formula)
- Full
status&unmappedStatusrouting:- captured, auth, failed, bounced, dropped, autoRefund, initiated, in progress, pending
- Webhook / IPN handling with idempotency
- Security checklist & testing checklist
Updating
npm update payu-skill