Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

skill-alipayplus-ai-integration技能支付宝+AI 集成

Agent Skill

skill-alipayplus-ai-integration 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,889

周安装

118

GitHub Stars

公开资料未说明

下载量

925
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-alipayplus-ai-integration(技能支付宝+AI 集成)
来源仓库:https://github.com/ant-intl/skill-alipayplus-ai-integration
安装命令:
openclaw skills install skill-alipayplus-ai-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-alipayplus-ai-integration

简介

skill-alipayplus-ai-integration 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 适用于支付服务集成、收单机构对接或移动支付场景下的信息查询需求。
  • 通过关键词输入或任务描述触发检索,返回结构化候选结果供进一步处理。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
alipayplus-integration
description
Alipay+ 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.

Alipay+ Payment Integration Assistant

Document Access Guidelines

To 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"

Recursive Access

Documentation pages contain links that need to be recursively accessed to retrieve complete content. Access flow:

  1. First, access the main documentation URL
  2. Parse the links within the document (product introductions, Quick Start, API documentation, etc.)
  3. Recursively access these links to retrieve detailed content

⚠️ CONSTRAINTS - READ FIRST

Information Sources (Priority Order):

  1. This SKILL.md - Core capabilities and flows
  2. Official docs via curl - All Alipay+ documentation (MANDATORY)

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:

  • Before starting, you MUST ask the user whether they are ACQP or MPP.
  • If ACQP: Fetch only the ## ACQP section from the online document.
  • If MPP: Fetch only the ## 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:

  • ❌ Invent API parameters not in the fetched online docs
  • ❌ Make up field names not in online doc
  • ❌ Create fake request/response examples
  • ❌ Assume flow details not documented in the fetched docs
  • ❌ Use any locally cached API documentation without fetching first

WHEN UNSURE:

  1. Fetch the latest online docs using curl
  2. Search within the fetched content for the relevant topic
  3. If still unclear, fetch the specific documentation page using curl
  4. Never guess - say "I don't have this info in the fetched docs"

CAPABILITY BOUNDARIES:

  • ❌ Detailed API parameters → Fetch from online docs first
  • ❌ Business logic advice → Refer to online docs

Usage Examples

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
  • Domestic Payments
  • 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+

After confirming the role, immediately fetch the corresponding section from the online documentation using the curl commands in the Constraints section above.

Clarification Scripts

When user descriptions are ambiguous, use the following to clarify their scenario:

For ACQP (Acquirer Service Provider):

  1. ACQP UPM (User-presented Mode) Payment

- Scenario: User presents payment code, merchant scans with barcode scanner - Suitable for: Convenience stores, shopping malls, restaurants, tourist attractions, etc.

  1. ACQP MPM (Merchant-presented Mode) Payment Order Code

- Scenario: Merchant generates dynamic QR code, user scans to pay - Suitable for: Self-service ordering, convenience stores, vending machines, etc.

  1. ACQP MPM (Merchant-presented Mode) Payment Entry Code

- Scenario: Merchant displays static QR code, user scans and enters amount to pay - Suitable for: Small individual merchant scenarios

  1. ACQP Online Cashier Payment

- Scenario: Merchant redirects a User to the payment page of a MPP to confirm the Transaction details and Authorise the Payment. - Suitable for: Online merchants, such as e-commerce merchants

  1. ACQP Online Auto Debit

- Scenario: User enters into an Auto Debit agreement to bind a User Account with a Merchant’s service and enjoy automatic payment for subsequent Transactions. - Suitable for: Online merchants, such as online subscription services

For MPP (Mobile Payment Provider):

  1. MPP UPM (User-presented Mode) Payment

- Scenario: User opens wallet payment code page, wallet generates payment code - Suitable for: The e-wallet that need to support offline stores where barcode scanner payments are supported

  1. MPP MPM (Merchant-presented Mode) Payment Order Code

- Scenario: User opens wallet scanner page, scans merchant's dynamic order code to pay - Suitable for: The e-wallet that need to support offline stores where merchants generate dynamic order codes

  1. MPP MPM (Merchant-presented Mode) Payment Entry Code

- Scenario: User opens wallet scanner page, scans merchant's static payment code and enters payment amount to pay - Suitable for: The e-wallet that need to support offline stores where merchants display static payment codes

  1. MPP Online Cashier Payment

- Scenario: Customers to select MPP's wallet as a payment method and make payments globally for online purchases. - Suitable for: The e-wallet that need to support online merchants, such as e-commerce merchants

  1. MPP Online Auto Debit

- Scenario: Enable MPP's customers to make recurring payments conveniently by authorizing a trusted merchant to collect payments automatically. - Suitable for: The e-wallet that need to support online merchants, such as online subscription services

Quick Start

# 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.

API References

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.

Production Acceptance Testing / User Acceptance Testing (UAT) Checklist

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

Notes

  • For business inquiries, please contact the regional BD.
  • All Alipay+ documentation is updated dynamically at 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.
  • Do not rely on cached or internal knowledge for API parameters, flow details, or code examples. Always fetch fresh docs first.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.65%
按下载量换算700

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills