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
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
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+
When user descriptions are ambiguous, use the following to clarify their scenario:
For ACQP (Acquirer Service Provider):
Suitable for: Convenience stores, shopping malls, restaurants, tourist attractions, etc.
ACQP MPM (Merchant-presented Mode) Order Code
Suitable for: Self-service ordering, convenience stores, vending machines, etc.
ACQP MPM (Merchant-presented Mode) Entry Code
For MPP (Mobile Payment Provider):
Suitable for: Offline stores where merchants support barcode scanner payments
MPP MPM (Merchant-presented Mode) Order Code
Suitable for: Offline stores where merchants generate dynamic order codes
MPP MPM (Merchant-presented Mode) Entry Code
# Generate configuration template bash "$(dirname "$SKILL_DIR")/scripts/generate-config.sh" # Signature verification test bash "$(dirname "$SKILL_DIR")/scripts/test-signature.sh"小葱技能7w4.net有更新,你可以访问看下。
⚠️ SAFE TO USE: This uses
generate-config.shscript which reads from skill files. No API parameter guessing needed.
Generate configuration templates for Alipay+ integration:
⚠️ SAFE TO USE: This uses
test-signature.shscript. Signature algorithm is documented in skill files.
Help debug signature issues:
⚠️ SAFE TO USE: Webhook format is defined in official notification docs. Use
WebFetchif unsure about payload structure.
Assist with asynchronous notification setup:
⚠️ CHECK DOCS FIRST: Reconciliation file format may change. Verify column definitions with official docs.
Process daily reconciliation files:
⚠️ CHECK DOCS FIRST: The flows in
flows.mdfile are high-level summaries. For detailed API parameters, request/response schemas, and error codes, useWebFetchto 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
⚠️ 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.
这是一款专注于跨境支付集成的中等质量Skill,文档结构清晰、约束明确,能有效指导集成工作。配置生成和签名验证工具实用便捷,API参考覆盖完整。不足之处在于缺少使用说明文档,部分指南内容组织不够紧凑,对新手不太友好。总体而言,适合有一定经验的开发者在正式集成Alipay+时参考使用。