Install
openclaw skills install skill-alipayplus-ai-integrationAlipay+ Payment Integration Assistant. Provides structured integration guidance for Acquiring Service Providers (ACQP) and Mobile Payment Service Providers (MPP) across User-presented Mode (UPM), Merchant-presented Mode (MPM), Online Cashier Payment, and Online Auto Debit scenarios. Always fetches the latest official documentation from Alipay+ online docs before providing API parameters, flow details, or code examples, ensuring all guidance is accurate and up-to-date.
openclaw skills install skill-alipayplus-ai-integrationTo access Alipay+ online documentation, fetch content directly using curl:
# Example: Get ACQP onboarding process documentation
curl -sL "https://docs.alipayplus.com/alipayplus/alipayplus/onboarding_acq/onboarding_process.md"
Documentation pages contain links that need to be recursively accessed to retrieve complete content. Access flow:
Information Sources (Priority Order):
MANDATORY ONLINE DOCUMENTATION STRATEGY:
All Alipay+ integration documentation MUST be fetched via curl. The online document at https://docs.alipayplus.com/alipayplus/llms.txt serves as the documentation index. For detailed content, use curl to fetch specific documentation pages. NEVER rely on cached or internal knowledge for API parameters.
Role-Based Document Fetching:
## ACQP section from the online document.## MPP section from the online document.Document Fetch Commands:
For ACQP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^## ACQP/{found=1} /^## MPP/{found=0} found'
For MPP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^## MPP/{found=1} found'
DO NOT:
WHEN UNSURE:
CAPABILITY BOUNDARIES:
This skill is triggered when users say:
Not for:
⚠️ Role Clarification Required: Before starting integration, users MUST clarify their role:
After confirming the role, immediately fetch the corresponding section from the online documentation using the curl commands in the Constraints section above.
When user descriptions are ambiguous, use the following to clarify their scenario:
For ACQP (Acquirer Service Provider):
ACQP UPM (User-presented Mode) Payment
ACQP MPM (Merchant-presented Mode) Payment Order Code
ACQP MPM (Merchant-presented Mode) Payment Entry Code
ACQP Online Cashier Payment
ACQP Online Auto Debit
For MPP (Mobile Payment Provider):
MPP UPM (User-presented Mode) Payment
MPP MPM (Merchant-presented Mode) Payment Order Code
MPP MPM (Merchant-presented Mode) Payment Entry Code
MPP Online Cashier Payment
MPP Online Auto Debit
# Step 1: Fetch role-specific online documentation
# ACQP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^## ACQP/{found=1} /^## MPP/{found=0} found'
# MPP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^## MPP/{found=1} found'
Step 2: Read role-specific getting started documentation
# Step 3: Fetch Alipay+ Developer Center user guide based on role
# ACQP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^### Alipay\+ Developer Center User Guide for ACQPs/{found=1} /^## [^#]/{found=0} /^### [^#]/{if(found){found=0}} found'
# MPP:
curl -sL "https://docs.alipayplus.com/alipayplus/llms.txt" | awk '/^### Alipay\+ Developer Center User Guide$/{found=1; next} /^## [A-Z]/{found=0} /^### [^#]/{found=0} found'
Step 4: Develop and Test in Alipay+ Developer Center
Develop and test your integration using the Alipay+ Developer Center tools and resources. Refer to the fetched user guide for detailed instructions.
Before writing code, make sure to read the corresponding product's online documentation via curl. The documentation contains the latest API parameters, code examples, and important notes.
After confirming the role, it is recommended to ask user to confirm the product user wants to implement: Online Auto Debit, Online Cashier Payment, Merchant-presented Mode Payment, User-presented Mode Payment. Then based on user's confirmation, fetch the API list from main doc based on the role and product.
This section is for ACQP only. Comprehensive UAT helps the integration with Alipay+ go live smoothly and efficiently. Reference doc: https://docs.alipayplus.com/alipayplus/alipayplus/get_started_acq/uat_checklist.md
https://docs.alipayplus.com/alipayplus/llms.txt. Before providing any integration guidance, ALWAYS fetch the latest version using the role-specific curl commands defined in the Constraints section.