razorpay-one-time-payment

razorpay-one-time-payment is an agent for Claude Code from Venkateshwar-Reddy-Jambula/razorpay-integration-plugin. It costs 49 tokens per session (2,542 once invoked), scanned A, original, MIT.

An agent that builds a complete one-time Razorpay payment flow for a web application. One-time payments are single purchases, such as a day pass or a credit purchase.

In plain words
What is it for?
It helps create the server endpoint that makes an order, the browser checkout using Razorpay’s JavaScript library, and server-side verification of the payment signature.
Why use it?
It removes the need to design the order, checkout, and payment-verification parts separately. It also checks the project structure and follows its existing framework conventions.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; names the TodoWrite tool.

Part of the razorpay plugin — 15 skills, 9 agents, 1 hook shipped together

Good fit It helps create the server endpoint that makes an order, the browser checkout using Razorpay’s JavaScript library, and server-side verification of the payment signature.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment
Install

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.

Clone the repo
git clone --depth 1 https://github.com/Venkateshwar-Reddy-Jambula/razorpay-integration-plugin

Made for: Claude Code.

Or install razorpay, the plugin that ships this one along with the rest of its 15 skills, 9 agents, 1 hook.

Wrote 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.

agentmods badge for razorpay-one-time-payment

README.md
[![agentmods](https://agentmods.dev/badge/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment/github.svg)](https://agentmods.dev/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment)
Your own site
<a href="https://agentmods.dev/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment"><img src="https://agentmods.dev/badge/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-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.

agentmods 80×15 button for razorpay-one-time-payment

Your own site · 80×15
<a href="https://agentmods.dev/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment"><img src="https://agentmods.dev/badge/agents/venkateshwar-reddy-jambula/razorpay-integration-plugin/razorpay-one-time-payment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,542 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.02542
Opus 5 $0.00024 $0.01271
Sonnet 5 $0.00010 $0.00508
Haiku 4.5 $0.00005 $0.00254

Measured 11d ago against content hash 69847207dc26, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

razorpay-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.

agents/razorpay-one-time-payment.md · 244 lines

How it starts

The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a payment integration engineer specializing in Razorpay one-time payments. Your job is to build a complete one-time payment flow: server-side order creation, client-side checkout popup, and server-side payment verification. You produce production-ready code that follows the existing project conventions.

Follow these steps in order. Be thorough at each stage before moving to the next.


Decisions This Agent Makes

  • Uses Order + JS SDK flow (not Invoice flow) — better UX, inline popup
  • Verifies with RAZORPAY_KEY_SECRET not RAZORPAY_WEBHOOK_SECRET — different secrets for different flows
  • Uses timingSafeEqual — prevents timing attacks on signature verification
  • Adds Razorpay script via Next.js Script component — proper loading

Step 1: Detect project structure

Before writing any code, understand the project you are working in.

1a. Determine framework and router

Use Glob and Grep to identify:

  • Is this Next.js App Router (app/ directory) or Pages Router (pages/ directory)?
  • Is there an existing Express/Fastify/Hono server?
  • Read package.json to confirm the framework and installed dependencies.
  • Read tsconfig.json or jsconfig.json if present.

1b. Identify styling approach

Search for:

  • Tailwind CSS: look for tailwind.config files, @tailwind directives, or className with Tailwind utility classes.
  • CSS Modules: look for *.module.css files.
  • styled-components or emotion: search for styled( or css tagged template literals.
  • Plain CSS: look for global CSS imports.

Use whatever styling approach the project already uses. If none is found, default to Tailwind CSS utility classes.

1c. Identify database and ORM

Search for:

  • Drizzle: drizzle.config.ts, drizzle( imports.
  • Prisma: schema.prisma, @prisma/client imports.
  • Raw SQL: pg, mysql2, better-sqlite3 imports.
  • Supabase: @supabase/supabase-js imports.
  • MongoDB: mongoose or mongodb imports.

1d. Identify authentication

Read the full file on GitHub · 244 lines

Changes

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.

  1. 11d ago First seen · 244 lines · 49 tokens per session scan A 69847207dc26

Subscribe to this mod's changes

razorpay-one-time-payment is an agent published in the GitHub repository Venkateshwar-Reddy-Jambula/razorpay-integration-plugin (6 stars, last pushed 6mo ago), licensed MIT. It adds 49 tokens to every session and 2,542 once invoked, about $0.0002 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.