Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

upi-payment-integrationUPI 支付集成

Agent Skill

upi-payment-integration 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,824

周安装

199

GitHub Stars

公开资料未说明

下载量

1,576
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:upi-payment-integration(UPI 支付集成)
来源仓库:https://github.com/anugotta/upi-payment-integration
安装命令:
openclaw skills install upi-payment-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install upi-payment-integration

简介

设计和实施印度 UPI 支付系统的完整集成方案。upi-payment-integration 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 支持收款、意向支付、QR 码生成及自动扣款等核心功能。
  • 包含生产级 Webhook 处理、幂等性和事务协调机制。
  • 安装前需提供 UPI ID 和商户凭证,并配置 HTTPS 回调端点。
  • 注意遵守 NPCI 规范,避免高频调用触发风控拦截。

SKILL.md

name
upi-payment-integration
description
Design and implement robust UPI payment integrations (collect, intent, QR, and autopay mandates) with production-grade webhook handling, idempotency, reconciliation, and RBI-aligned authentication/compliance guardrails. Use when building or debugging UPI payment flows, payment status issues, recurring mandates, settlement mismatches, or gateway timeout edge cases.
metadata
{"openclaw":{"homepage":"https://www.npci.org.in/what-we-do/upi/product-overview","emoji":"💸","requires":{"env":["UPI_PROVIDER_KEY_ID","UPI_PROVIDER_KEY_SECRET","UPI_WEBHOOK_SECRET","UPI_MERCHANT_ID"],"bins":["curl","jq"]}}}

UPI Payment Integration

What this skill does

Use this skill to help users build, review, or troubleshoot UPI integrations that are safe for production.

Covered flows:

  • UPI collect requests
  • UPI intent payments
  • UPI QR payments (static/dynamic)
  • UPI autopay / e-mandate recurring payments

Disclaimer

This skill provides implementation and operational guidance only. It does not execute payments, move funds, or replace legal/compliance review. Payment regulations, provider APIs, limits, and policies may change; always verify against the latest official PSP, RBI, and NPCI documentation before production use.

Use at your own risk. The skill author/publisher/developer is not liable for direct or indirect loss, fraud, chargebacks, penalties, downtime, or other damages arising from use or misuse of this guidance.

Always validate in sandbox/staging before production and never share secrets or private keys in chat.

Setup

On first use, read setup.md and confirm:

  • provider and environment (sandbox vs production)
  • credentials availability in secret manager
  • webhook endpoint and verification strategy
  • database/reconciliation ownership

Source freshness

  • Last verified date: 2026-03-19
  • Before production changes, re-check provider docs and current RBI/NPCI circulars.

Source validation checklist

  • [ ] Confirm chosen PSP's latest webhook event semantics and retry policy.
  • [ ] Confirm latest UPI transaction limits and mandate policy for your use case.
  • [ ] Confirm current signature verification/auth requirements from provider docs.
  • [ ] Confirm current settlement and reconciliation report fields from provider dashboard.
  • [ ] Confirm any newly introduced compliance/legal requirements with your legal/compliance team.

Core operating principles

  1. Treat payment lifecycle as asynchronous

- API response is not final truth. - Webhook + reconciliation determine final status.

  1. Make every write idempotent

- De-duplicate by event ID / provider payment ID / merchant request ID. - Reprocessing the same webhook must be safe.

  1. Persist before processing

- Store raw webhook payload and headers first. - Process in a retriable job/queue.

  1. Reconcile continuously

- Poll or fetch status for PENDING, timed-out, or disputed records. - Close state gaps between app DB, PSP dashboard, and settlement reports.

  1. Keep compliance explicit

- Follow RBI authentication and risk controls. - Keep consent and cancellation paths clear for recurring mandates.

Mandatory implementation checklist

Use this checklist in every implementation/review:

  • [ ] Payment state machine exists (CREATED, PENDING, SUCCESS, FAILED, EXPIRED, REFUNDED as applicable).
  • [ ] Unique merchant-side request ID/correlation ID is generated and stored.
  • [ ] Webhook signature verification is implemented.
  • [ ] Raw webhook body is stored before business logic.
  • [ ] Duplicate webhook delivery is handled safely.
  • [ ] Out-of-order events are handled safely.
  • [ ] Retry policy exists for provider/network failures.
  • [ ] Reconciliation job exists for stale PENDING records.
  • [ ] Refund and reversal flows are explicit.
  • [ ] Alerting exists for failure spikes and webhook downtime.
  • [ ] Mandate create/pause/cancel paths are implemented and visible to users.

Standard workflow (for the agent)

When user asks for UPI help, do this:

  1. Identify integration mode

- Collect vs intent vs QR vs mandate.

  1. Map current architecture

- Client request path - Backend order/payment records - Provider API call - Webhook receiver - Reconciliation worker

  1. Enforce reliability controls

- Idempotency keys - Signature validation - Event dedupe - Retries and dead-letter handling

  1. Validate business correctness

- No shipment/service unlock before durable success - Correct handling of late success after apparent failure - Correct handling of duplicate attempts

  1. Validate compliance and customer UX

- Authentication and risk controls - Consent and cancellation clarity for mandates - Clear customer-visible status and support trace IDs

Webhook handling rules

  • Always verify signature using provider secret.
  • Use raw request body for signature validation; do not mutate/parse first.
  • Acknowledge quickly (2xx) after durable receipt.
  • Process asynchronously.
  • Never assume strict event ordering.
  • Build handlers as idempotent upserts, not one-time inserts.

Error handling and reconciliation rules

  • On timeout, mark local payment as PENDING_RECON (or equivalent), not immediate failure.
  • Reconcile by provider payment ID and merchant request ID.
  • If provider says success after client saw failure, trust reconciled final state and repair downstream records.
  • Log every status transition with source (api, webhook, recon).

Recurring mandate (Autopay) rules

  • Treat mandate creation as a first-class object with lifecycle states.
  • Store mandate ID, start/end dates, frequency, max amount, and status.
  • Support pause/cancel from product UI and backend admin.
  • Send pre-debit reminders where required by provider/framework.
  • On recurring debit failures, retry only within allowed policy; avoid silent repeated debits.

Compliance and policy guardrails

  • Follow RBI authentication expectations (minimum two factors, with dynamic factor requirements where applicable).
  • Keep evidence logs for user consent and mandate actions.
  • Protect personal/payment data with least-privilege access and retention policy.
  • Keep customer grievance paths clear (transaction reference IDs, support response playbook).

Output format

When responding to a user request, return:

  1. Architecture or fix plan
  2. Concrete code/database changes
  3. Failure-mode checks
  4. Test plan (happy path + retries + duplicates + out-of-order events + reconciliation)

References

Related skills

  • upi-go-live-checklist for phase tracking and launch gates
  • upi-payment-ux-ops for customer messaging and support operations

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.64%
按下载量换算1,302

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills