Install
openclaw skills install skill-alipayplus-integrationAlipay+ 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.
openclaw skills install skill-alipayplus-integrationInformation Sources (Priority Order):
DO NOT:
paymentToken, paymentCodeType)WHEN UNSURE:
WebFetch to get official docsCAPABILITY BOUNDARIES:
generate-config.sh)test-signature.sh)debug-notify.sh, ACQP only)This skill is triggered when users say:
Not for:
⚠️ Role Clarification Required: Before starting integration, users must clarify their role:
When user descriptions are ambiguous, use the following to clarify their scenario:
For ACQP (Acquirer Service Provider):
ACQP CPM (Customer-presented Mode)
ACQP MPM (Merchant-presented Mode) Order Code
ACQP MPM (Merchant-presented Mode) Entry Code
For MPP (Mobile Payment Provider):
MPP CPM (Customer-presented Mode)
MPP MPM (Merchant-presented Mode) Order Code
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
⚠️ 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.