jeepay-open-integration

jeepay-open-integration is a skill for Claude Code, Codex from jeequan/jeepay-skills. It costs 157 tokens per session (4,670 once invoked), scanned A, original, MIT.

A Jeepay integration guide explains how to connect software to the open-source Jeepay payment system deployed privately. It covers payments, refunds, closing and querying orders, asynchronous notifications, transfers, and revenue splitting.

In plain words
What is it for?
Use it when integrating Jeepay payment orders, refunds, order cancellation, order queries, payment notifications, transfers, or split payments in a private deployment.
Why use it?
It helps developers follow Jeepay-specific integration rules and troubleshoot payment flows. For Java projects, it directs developers toward the SDK for signing, verification, and requests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it when integrating Jeepay payment orders, refunds, order cancellation, order queries, payment notifications, transfers, or split payments in a private deployment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jeequan/jeepay-skills/jeepay-open-integration
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.

Any agent
npx skills add jeequan/jeepay-skills --skill jeepay-open-integration
Clone the repo
git clone --depth 1 https://github.com/jeequan/jeepay-skills

Made for: Claude Code, Codex.

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 jeepay-open-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeequan/jeepay-skills/jeepay-open-integration/github.svg)](https://agentmods.dev/skills/jeequan/jeepay-skills/jeepay-open-integration)
Your own site
<a href="https://agentmods.dev/skills/jeequan/jeepay-skills/jeepay-open-integration"><img src="https://agentmods.dev/badge/skills/jeequan/jeepay-skills/jeepay-open-integration/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 jeepay-open-integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeequan/jeepay-skills/jeepay-open-integration"><img src="https://agentmods.dev/badge/skills/jeequan/jeepay-skills/jeepay-open-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 157 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,670 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00157 $0.04670
Opus 5 $0.00078 $0.02335
Sonnet 5 $0.00031 $0.00934
Haiku 4.5 $0.00016 $0.00467

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

Security

Grade A, and why

jeepay-open-integration scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| `Bash(curl *)` | 调用 Jeepay 在线文档 API |
skills/jeepay-open-integration/SKILL.md · 323 lines

How it starts

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

Jeepay 开源版支付系统对接 Skill

前置说明

  1. 本 Skill 主要提供 Jeepay 开源版支付系统的对接指引和问题排查指引。
  2. 请开发人员审查 AI 生成的接入代码,自行确认代码逻辑,上线前充分测试确保其适用性与准确性。
  3. Java 项目优先使用 SDK:当用户项目为 Java 时,优先使用 Jeepay SDK 进行对接,而非直接调用 HTTP 接口。SDK 已封装签名、验签、请求等逻辑,可大幅简化集成工作。

集成原则

⛔ 以下原则必须严格遵守:

  • 征得用户同意:严禁在未征得用户同意的情况下,擅自启动支付产品的集成流程,必须先确认用户意图并获得明确同意后,方可继续执行集成步骤。
  • 单一产品集成:在一次指令中,未经用户许可,严禁同时自动启动多个支付产品的集成,必须先确认单一产品,完成该产品的完整集成流程后,方可视情况讨论下一个产品。

权限配置(引导配置)

⚠️ 本技能需要以下权限才能正常工作(如读取在线文档、查看 SDK 结构等)。

所需权限列表

权限 用途
Bash(curl *) 调用 Jeepay 在线文档 API
Bash(javap *) 查看 SDK 类结构和方法签名
Bash(mvn *) Maven 构建、依赖管理
Bash(jar *) 查看和解压 SDK jar 包
WebFetch(domain:doc.jeequan.com) 访问 Jeepay 官方文档站
WebFetch(domain:gitee.com) 访问 Gitee SDK 源码

配置方式:将以下内容手动添加到项目的 .claude/settings.local.json 中:

{
  "permissions": {
    "allow": [
      "Bash(curl *)",
      "Bash(javap *)",
      "Bash(mvn *)",
      "Bash(jar *)",
      "WebFetch(domain:doc.jeequan.com)",
      "WebFetch(domain:gitee.com)"
    ]
  }
}

强制执行要点

⛔ 以下为全局强制规则,严禁以任何理由跳过或简化:

  • [1] 告知用户本 Skill 主要提供 Jeepay 开源版支付系统的对接指引和问题排查指引
  • [2] 告知用户服务声明(完整内容见步骤 1.1 确认点)
  • [3] 先定计划再动手:先确认用户意图并获得明确同意后,必须先确定功能分支并打印完整的待办步骤清单,禁止未确定计划就直接开始执行
  • [4] 每个步骤完成后对照完成条件自检,有遗漏须补齐后再继续
  • [5] 遇到 <BLOCKING_CONFIRMATION> 必须暂停等待用户明确回复,确认话术必须包含"请回复'同意'或'确认'"等显式要求
  • [6] 禁止编造配置、假数据;禁止绕过确认点;禁止假数据与占位符冒充

功能路由

用户意图 功能分支 执行流程
需要对接 Jeepay 支付系统(支付、退款、转账、分账等) 功能一 步骤 1.1 → 1.2 → 1.3 → 1.4 → 1.5 → 1.6
集成过程中遇到报错或问题 功能二 步骤 2.1 → 2.2/2.3

阻塞确认点索引

以下为流程中必须暂停等待用户明确回复的关键节点,严禁跳过

编号 所在步骤 确认点内容
B-01 步骤 1.1 产品决策 用户同意服务声明并确认接入产品(回复"同意"或"确认")
B-02 步骤 1.2 获取对接文档 已读取对接说明、技术规范、SDK&Demo(三项全部满足)
B-03 步骤 1.6 集成校验 用户确认是否需要进行集成校验(回复"需要"或"确认")

完成条件索引

以下为每个步骤的完成条件,必须全部满足后方可继续下一步骤:

编号 步骤 完成条件
M-01 步骤 1.1 支付方式确认 已确认支付方式、用户已同意服务声明
M-02 步骤 1.2 获取对接文档 已读取对接说明、技术规范、SDK&Demo
M-03 步骤 1.3 获取接口文档 已根据支付方式获取对应的接口文档
M-04 步骤 1.4 集成代码 已完成代码实现、已通过 7 项自检
M-05 步骤 1.5 集成后说明 已输出安全红线和后续指引
M-06 步骤 1.6 集成校验 已输出校验邀请并等待用户回复

Read the full file on GitHub · 323 lines

Files

What ships with it

31 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 323 lines · 157 tokens per session scan A f47ef5237459

Subscribe to this mod's changes

jeepay-open-integration is a skill published in the GitHub repository jeequan/jeepay-skills (9 stars, last pushed 3mo ago), licensed MIT. It adds 157 tokens to every session and 4,670 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

tushare

A Python interface for Tushare, a financial data service that provides market and company information for stocks, funds, futures, and digital assets. It returns queried data as pandas tables.

HKUDS/Vibe-Trading · 79 tokens

stripe-best-practices

Guides Stripe integration decisions across development and test environment planning (separate sandboxes vs the shared test mode sandbox), API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing/subscriptions, tax and registrations (Stripe Tax…

stripe/ai · 161 tokens

pinme-uniwebpay

Use when generating, modifying, or reviewing PinMe Worker (Cloudflare Worker TypeScript) code that accepts payments through UniwebPay — payment links, products/prices, checkout sessions, payment status reads, refunds, subscriptions, or handling UniwebPay webhooks with @uniwebpay/sdk in a PinMe project.

glitternetwork/pinme · 71 tokens

erp-xpp

X++ code development lifecycle for Finance and Operations — scaffold models, author classes, custom services/APIs, and data entities, install matching SDKs, compile deployable packages, deploy packages, synchronize databases, and verify deployed artifacts. Use when the user explicitly requests creating, building…

microsoft/Dataverse-skills · 86 tokens

kalshi-api

Kalshi exchange mechanics — RSA-PSS auth, order schema, YES/NO orderbook convention, WebSocket, and endpoint surface. Market-type-agnostic shared layer for all Kalshi skills.

agiprolabs/claude-trading-skills · 44 tokens