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 jeequan/jeepay-skills --skill jeepay-open-integrationgit clone --depth 1 https://github.com/jeequan/jeepay-skillsWrote 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/jeequan/jeepay-skills/jeepay-open-integration)<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.
<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>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.00157 | $0.04670 |
| Opus 5 | $0.00078 | $0.02335 |
| Sonnet 5 | $0.00031 | $0.00934 |
| Haiku 4.5 | $0.00016 | $0.00467 |
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 | 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
前置说明
- 本 Skill 主要提供 Jeepay 开源版支付系统的对接指引和问题排查指引。
- 请开发人员审查 AI 生成的接入代码,自行确认代码逻辑,上线前充分测试确保其适用性与准确性。
- 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 集成校验 | 已输出校验邀请并等待用户回复 |
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.
- README.md 2.0 KB
- references/api-routing.md 4.2 KB
- references/bundle.md 68 KB
- references/checklist.md 7.5 KB
- references/code-examples/interface-guide.md 2.3 KB
- references/code-examples/java/1_统一下单.md 5.2 KB
- references/code-examples/java/10_异步通知.md 6.6 KB
- references/code-examples/java/2_查询订单.md 3.1 KB
- references/code-examples/java/3_关闭订单.md 2.6 KB
- references/code-examples/java/4_退款.md 3.9 KB
- references/code-examples/java/5_查询退款.md 3.3 KB
- references/code-examples/java/6_绑定分账用户.md 3.8 KB
- references/code-examples/java/7_发起分账.md 3.9 KB
- references/code-examples/java/8_转账.md 4.4 KB
- references/code-examples/java/9_查询转账.md 3.3 KB
- references/code-examples/python/1_统一下单.md 3.0 KB
- references/code-examples/python/10_异步通知.md 5.2 KB
- references/code-examples/python/2_查询订单.md 1.8 KB
- references/code-examples/python/3_关闭订单.md 1.5 KB
- references/code-examples/python/4_退款.md 2.4 KB
- references/code-examples/python/5_查询退款.md 1.9 KB
- references/code-examples/python/6_绑定分账用户.md 2.1 KB
- references/code-examples/python/7_发起分账.md 2.3 KB
- references/code-examples/python/8_转账.md 2.3 KB
- references/code-examples/python/9_查询转账.md 1.8 KB
- references/doc-access.md 3.1 KB
- references/docs/Jeepay-常见问题文档.md 7.7 KB
- references/docs/Jeepay-错误码文档.md 4.9 KB
- references/log-guide.md 2.4 KB
- references/scene-routing.md 10 KB
- references/sdk-reminder.md 11 KB
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.
- 12d ago First seen · 323 lines · 157 tokens per session scan A f47ef5237459
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.
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…
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.
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…
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.
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…
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.