Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

skill-alipayplus-integration技能支付宝+集成

Agent Skill

skill-alipayplus-integration 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,517

周安装

107

GitHub Stars

公开资料未说明

下载量

882
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-alipayplus-integration

简介

skill-alipayplus-integration 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目时使用。

  • 适用于支付宝+支付集成的前端实现,包括模式支付等客户呈现场景。
  • 提供组件生成、代码模板和接口对接支持,帮助快速完成界面开发。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
alipayplus-integration
description
Alipay+ Payment Integration Assistant. Helps Acquirers and Mobile Service Providers quickly integrate Alipay+ payments, including customer-presented mode payment and merchat-presented mode payment. This skill can help on configuration generation, signature verification testing, asynchronous notification debugging (ACQP only), and reconciliation file processing.
allowed-tools
Read, Write, Bash, WebFetch

Alipay+ Payment Integration Assistant

⚠️ CONSTRAINTS - READ FIRST

Information Sources (Priority Order):

  1. This SKILL.md - Core capabilities and flows
  2. ./references/api-reference.md - API endpoint list only
  3. ./references/flows.md - Flow diagrams (if exists)
  4. Official docs via WebFetch - When details not in above files

DO NOT:

  • ❌ Invent API parameters not in skill files or official docs
  • ❌ Make up field names (e.g., paymentToken, paymentCodeType)
  • ❌ Create fake request/response examples
  • ❌ Assume flow details not documented here

WHEN UNSURE:

  1. Check if info exists in skill files first
  2. If not found, use WebFetch to get official docs
  3. If still unclear, tell user "I need to check official docs" and fetch
  4. Never guess - say "I don't have this info in my skill files"

CAPABILITY BOUNDARIES:

  • ✅ Configuration generation (generate-config.sh)
  • ✅ Signature testing (test-signature.sh)
  • ✅ Webhook debugging (debug-notify.sh, ACQP only)
  • ✅ Reconciliation file processing
  • ❌ Detailed API parameters → Fetch from official docs
  • ❌ Business logic advice → Refer to official docs

Usage Examples

This skill is triggered when users say:

  • "How to integrate with Alipay+"
  • "How to integrate with A+"
  • "Implement Alipay+ products"
  • "Implement A+ products"
  • "Alipay+"
  • "AlipayPlus"
  • "Acquirer integrates with Alipay+"
  • "Wallet integrates with Alipay+"

Not for:

  • Alipay
  • WechatPay
  • Wire transfer

⚠️ Role Clarification Required: Before starting integration, users must clarify their role:

  • Acquirer Service Provider (ACQP) - Payment service providers integrating with merchants
  • Mobile Payment Service Provider (MPP) - E-wallet providers integrating with Alipay+

Clarification Scripts

When user descriptions are ambiguous, use the following to clarify their scenario:

For ACQP (Acquirer Service Provider):

  1. ACQP CPM (Customer-presented Mode)

- Scenario: User presents payment code, merchant scans with barcode scanner - Suitable for: Convenience stores, shopping malls, restaurants, tourist attractions, etc.

  1. ACQP MPM (Merchant-presented Mode) Order Code

- Scenario: Merchant generates dynamic QR code, user scans to pay - Suitable for: Self-service ordering, convenience stores, vending machines, etc.

  1. ACQP MPM (Merchant-presented Mode) Entry Code

- Scenario: Merchant displays static QR code, user scans and enters amount to pay - Suitable for: Small individual merchant scenarios

For MPP (Mobile Payment Provider):

  1. MPP CPM (Customer-presented Mode)

- Scenario: User opens wallet payment code page, wallet generates payment code - Suitable for: Offline stores where merchants support barcode scanner payments

  1. MPP MPM (Merchant-presented Mode) Order Code

- Scenario: User opens wallet scanner page, scans merchant's dynamic order code to pay - Suitable for: Offline stores where merchants generate dynamic order codes

  1. MPP MPM (Merchant-presented Mode) Entry Code

- Scenario: User opens wallet scanner page, scans merchant's static payment code and entry payment amount to pay - Suitable for: Offline stores where merchants display static payment codes

Quick Start

# Generate configuration template
bash "$(dirname "$SKILL_DIR")/scripts/generate-config.sh"

# Signature verification test
bash "$(dirname "$SKILL_DIR")/scripts/test-signature.sh"

Capabilities

1. Configuration Generation

⚠️ SAFE TO USE: This uses generate-config.sh script which reads from skill files. No API parameter guessing needed.

Generate configuration templates for Alipay+ integration:

  • ACQP Config: PartnerId, ClientId, API keys, webhook URLs
  • MPP Config: PartnerId, ClientId, API keys, MPP endpoints
  • Environment: Sandbox vs Production settings

2. Signature Verification

⚠️ SAFE TO USE: This uses test-signature.sh script. Signature algorithm is documented in skill files.

Help debug signature issues:

  • Generate test signatures
  • Verify incoming request's signatures
  • Common signature errors and fixes

3. Webhook Debugging (for ACQP only)

⚠️ SAFE TO USE: Webhook format is defined in official notification docs. Use WebFetch if unsure about payload structure.

Assist with asynchronous notification setup:

  • Webhook endpoint requirements
  • Signature verification for webhooks
  • Retry logic and idempotency

4. Reconciliation Files

⚠️ CHECK DOCS FIRST: Reconciliation file format may change. Verify column definitions with official docs.

Process daily reconciliation files:

  • Parse settlement reports
  • Match transactions
  • Identify discrepancies

Integration Flows

⚠️ CHECK DOCS FIRST: The flows in flows.md file are high-level summaries. For detailed API parameters, request/response schemas, and error codes, use WebFetch to retrieve official docs: - ACQP CPM: https://docs.alipayplus.com/alipayplus/alipayplus/integration_user_mode_acq/accept_payment - ACQP MPM Order Code: https://docs.alipayplus.com/alipayplus/alipayplus/integration_merchant_mode_acq/accept_payment_order_code - ACQP MPM Entry Code: https://docs.alipayplus.com/alipayplus/alipayplus/integration_merchant_mode_acq/accept_payment_entry_code - MPP CPM: https://docs.alipayplus.com/alipayplus/alipayplus/integration_user_mode_mpp/accept_payments - MPP MPM Order Code: https://docs.alipayplus.com/alipayplus/alipayplus/integration_merchant_mode_mpp/accept_payments#imyfn - MPP MPM Entry Code: https://docs.alipayplus.com/alipayplus/alipayplus/integration_merchant_mode_mpp/accept_payments#xSovW

ACQP (Acquirer) Flow

  1. Merchant onboarding
  2. Payment initiation (CPM/MPM)
  3. Payment notification
  4. Settlement

MPP (Wallet) Flow

  1. User authentication
  2. Payment code generation/scan
  3. Payment execution
  4. MPP notifies Alipay+ payment final result

API References

Resources

⚠️ CHECK DOCS FIRST: Documentation for all Alipay+ payment products is provided via dynamic online links. Before integration, be sure to read the relevant product’s online documentation to obtain the latest API parameters and code samples.

Notes

  • For business inquiries, please contact the regional BD.
  • All links in this document point to Alipay+ online documentation, which is updated dynamically. Before coding, be sure to review the latest version.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.6%
按下载量换算693

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills