Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Venkateshwar-Reddy-Jambula/razorpay-integration-plugin --skill one-time-paymentgit clone --depth 1 https://github.com/Venkateshwar-Reddy-Jambula/razorpay-integration-pluginWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/venkateshwar-reddy-jambula/razorpay-integration-plugin/one-time-payment)<a href="https://agentmods.dev/skills/venkateshwar-reddy-jambula/razorpay-integration-plugin/one-time-payment"><img src="https://agentmods.dev/badge/skills/venkateshwar-reddy-jambula/razorpay-integration-plugin/one-time-payment/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/venkateshwar-reddy-jambula/razorpay-integration-plugin/one-time-payment"><img src="https://agentmods.dev/badge/skills/venkateshwar-reddy-jambula/razorpay-integration-plugin/one-time-payment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00058 | $0.02089 |
| Opus 5 | $0.00029 | $0.01045 |
| Sonnet 5 | $0.00012 | $0.00418 |
| Haiku 4.5 | $0.00006 | $0.00209 |
Grade A, and why
one-time-payment scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Razorpay One-Time Payments
Two flows for one-time payments: Order flow (Razorpay JS SDK popup) and Invoice flow (hosted page). Both require server-side HMAC verification.
One-Time Payments vs Subscriptions: Completely Different Checkout
This is a common source of confusion. One-time payments and subscriptions use entirely different APIs and checkout experiences:
| One-Time Payment | Subscription | |
|---|---|---|
| API | Orders API (razorpay.orders.create) |
Subscriptions API (razorpay.subscriptions.create) |
| Checkout UI | JS SDK popup (new Razorpay({...}).open()) |
Hosted page redirect (short_url) |
| Client script | checkout.js loaded via <Script> tag |
No client script needed |
| Verification | Client-side HMAC (order_id|payment_id) |
Webhook (subscription.activated) |
| Payment confirmation | Immediate — handler callback fires |
Async — webhook fires minutes later |
| Where it runs | Inline popup on your page | Separate Razorpay-hosted page |
| Key used for HMAC | RAZORPAY_KEY_SECRET (API secret) |
RAZORPAY_WEBHOOK_SECRET (webhook secret) |
Do NOT mix these up. You cannot use short_url for one-time orders, and you cannot use the JS SDK popup for subscriptions (it technically works but breaks on mobile/popup blockers).
Flow 1: Order + JS SDK (Recommended for UX)
Create Order (Server)
// app/api/billing/create-order/route.ts
export async function POST(request: Request) {
const user = await getAuthenticatedUser(request);
const { productKey, amountPaise } = await request.json();
try {
const order = await razorpay.orders.create({
amount: amountPaise, // Amount in paise (e.g., 11682 for Rs 116.82)
currency: "INR",
receipt: `${productKey}_${user.id}_${Date.now()}`,
notes: {
userId: user.id,
productKey,
},
});
return Response.json({
orderId: order.id,
amount: order.amount,
currency: order.currency,
keyId: process.env.NEXT_PUBLIC_RAZORPAY_KEY_ID,
});
} catch (error) {
console.error("Failed to create order:", error);
return Response.json({ error: "Something went wrong" }, { status: 500 });
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 210 lines · 58 tokens per session scan A 68951dccccae
one-time-payment is a skill published in the GitHub repository Venkateshwar-Reddy-Jambula/razorpay-integration-plugin (6 stars, last pushed 6mo ago), licensed MIT. It adds 58 tokens to every session and 2,089 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
asc-ppp-pricing
Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.
stripe
Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments. Use this skill when users want to process payments, manage billing, or handle subscriptions with Stripe. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).…
etsy-pricing-strategy
Etsy pricing — cost calculation, competitor pricing, perceived value, shipping cost integration, sales and coupons.
amazon-wholesale-sourcing
Wholesale product sourcing — supplier discovery, negotiation, MOQ optimization, margin analysis.
ai-slop
Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…
payment-processor
Skill "payment-processor" from Signal-Execution-Labs/forex-trading-ai-agent, covering payment processor skill, supported services, capabilities, view balances and get all balances.