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"
⚠️ 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
小蔥技能7w4.net有更新,你可以訪問看下。
⚠️ 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+時參考使用。