Alipay+ DocsAlipay+ Docs

Integration Skill

Alipay+ encapsulates the core capabilities of payment integration into a Skill component, making payment integration documentation fully comprehensible by AI. Instead of dealing with the complex underlying payment logic, developers can efficiently complete the integration by using AI programming tools. They simply describe the requirements in natural language, and the AI tools generate the corresponding integration code.

Note:

  • When describing requirements to AI, clarify your role (ACQP) and payment scenarios (such as User-presented Mode Payment, Merchant-presented Mode Payment, Online Cashier Payment, and Online Auto Debit) to avoid ambiguity.
  • The AI-generated code is for reference only. Review the code logic before deploying to production.
  • The Skill is updated alongside Alipay+ product releases. We recommend periodically downloading the latest version.

Applicable scenario

This component is suitable for developers to integrate Alipay+ payment capabilities in Vibe Coding mode:

  • Acquiring Service Providers (ACQP): Integrate Alipay+ payment acceptance capabilities for merchants

Before you begin

Before you begin, complete the following steps:

  1. Get an Alipay+ account: Complete the registration and sign up in Alipay+ Developer Center. For details, see Account setup and login.
  2. Prepare developer tools: Support common AI programming tools (such as Cursor or Claude).
  3. Obtain the key configuration: In Alipay+ Developer Center, go to Developer and obtain the Client ID, Alipay+ public key, and merchant private key. For more information, see Sign a request and validate the signature.

Steps

Follow these steps to get started:

  1. Download the Skill
  2. Describe requirements
  3. Obtain sandbox configuration information

Step 1: Download the Skill

Tab: Install with natural language in AI Agent

copy
Install the skill "skill-alipayplus-integration" (ant-intl/skill-alipayplus-ai-integration) from ClawHub.
Skill page: https://clawhub.ai/ant-intl/antom-integration
Keep the work scoped to this skill only.

Tab: Download via npx

copy
npx clawhub@latest install skill-alipayplus-ai-integration

Note:

  • The Skill follows the open SKILL.md standard and is seamlessly compatible with popular AI programming tools, such as Claude and Cursor.
  • Copy the downloaded Skill folder to your project path, for example, /.claude/skills/.

Step 2: Describe requirements

Describe your payment requirements using natural language, and AI will automatically generate code based on the description. See the following examples:

Role

Payment scenario

Example

ACQP

User-presented Mode Payment

"I'm an ACQP, help me integrate Alipay+ User-presented Mode Payment for my convenience store merchants."

ACQP

Merchant-presented Mode Payment

"I'm an ACQP, help me integrate Alipay+ Merchant-presented Mode Payment with Order Code and Entry Code."

ACQP

Online Cashier Payment

"I'm an ACQP with an e-commerce platform, help me integrate Alipay+ Online Cashier Payment."

ACQP

Online Auto Debit

"I'm an ACQP, help me set up Auto Debit for subscription payments."

Step 3: Obtain sandbox configuration information

The steps are as follows:

  1. Log in to Alipay+ Developer Center.
  2. Go to Developer > Sandbox to get the sandbox configuration information.
  3. Provide the sandbox configuration to AI tools in the following format:
copy
client-id: SANDBOX_xxxxxxxx
your-private-key: MIIEvAIBxxxxxxxx
alipayplus-public-key: MIIBIjANxxxxxxxxxx

Note:

  • Before going live, it is recommended to complete the following:
  • Test the payment flow in the Alipay+ sandbox environment, where you can safely complete full-link verification without using real funds.
  • Replace the sandbox configuration with your live credentials for the production environment.