English | 简体中文
A collection of Alipay payment skills for AI agents, enabling seamless integration of Alipay's payment capabilities into your AI applications.
- AI Payment Product Introduction - Official demo merchant for Alipay AI wallet and payment products
- Alipay Wallet Authentication - Secure wallet binding and authorization flow
- Payment Processing - Handle Alipay cashier links and payment status tracking
- HTTP 402 Protocol Support - Process A402 protocol payment flows
- Payment Feedback - Built-in feedback mechanism for issue reporting
| Skill | Description |
|---|---|
alipay-aipay-product-intro |
Alipay AI wallet and payment product introduction (Official demo merchant) |
alipay-authenticate-wallet |
Wallet binding, authorization, and management |
alipay-pay-for-service |
Payment processing with status polling |
alipay-pay-for-402-service |
HTTP 402 Payment Required protocol handler |
alipay-payment-feedback |
Issue reporting and feedback |
- Node.js and npm installed
Install all skills and CLI tool in one command:
npx -y @alipay/agent-payment@latest installCopy individual skill folders to your OpenClaw workspace:
# Install a specific skill
cp -r alipay-authenticate-wallet ~/.openclaw/workspace/skills/
# Or install all skills
cp -r alipay-* ~/.openclaw/workspace/skills/Each skill is also available on ClawHub:
| Skill | Description | ClawHub Link |
|---|---|---|
alipay-aipay-product-intro |
Alipay AI wallet and payment product introduction (Official demo merchant) | View on ClawHub |
alipay-authenticate-wallet |
Wallet binding, authorization, and management | View on ClawHub |
alipay-pay-for-service |
Payment processing with status polling | View on ClawHub |
alipay-pay-for-402-service |
HTTP 402 Payment Required protocol handler | View on ClawHub |
alipay-payment-feedback |
Issue reporting and feedback | View on ClawHub |
The CLI tool is automatically installed during the one-click installation. If you need to install it separately:
npx -y @alipay/agent-payment@latest install-cli- Use a skill in your agent:
- The skill will be triggered automatically based on context
- Follow the skill-specific instructions in each SKILL.md
payment-skills/
├── alipay-aipay-product-intro/ # AI payment product introduction skill
│ └── SKILL.md
├── alipay-authenticate-wallet/ # Wallet authentication skill
│ └── SKILL.md
├── alipay-pay-for-service/ # Payment processing skill
│ └── SKILL.md
├── alipay-pay-for-402-service/ # 402 protocol skill
│ └── SKILL.md
├── alipay-payment-feedback/ # Feedback skill
│ └── SKILL.md
├── LICENSE # Apache 2.0 License
├── LEGAL.md # Legal documentation
└── README.md # This file
- All payment operations require explicit user authorization
- Sensitive credentials are never exposed to end users
- Built-in protection against common security pitfalls
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit issues or pull requests.
For issues encountered while using the skills, use the built-in alipay-payment-feedback skill to report problems to the Alipay team.
支付宝 AI 支付技能集合,为 AI 智能体提供支付宝支付能力的无缝集成。
- 支付宝钱包认证 - 安全的钱包绑定与授权流程
- 支付处理 - 处理支付宝收银台链接及支付状态追踪
- HTTP 402 协议支持 - 处理 A402 协议支付流程
- 问题反馈 - 内置问题反馈机制
| 技能 | 描述 |
|---|---|
alipay-aipay-product-intro |
支付宝智能体钱包和AI支付产品介绍(官方模拟商家) |
alipay-authenticate-wallet |
钱包绑定、授权与管理 |
alipay-pay-for-service |
支付处理与状态轮询 |
alipay-pay-for-402-service |
HTTP 402 Payment Required 协议处理器 |
alipay-payment-feedback |
问题上报与反馈 |
- 已安装 Node.js 和 npm
使用一条命令安装所有技能和 CLI 工具:
npx -y @alipay/agent-payment@latest install将单个技能文件夹复制到 OpenClaw 工作目录:
# 安装单个技能
cp -r alipay-authenticate-wallet ~/.openclaw/workspace/skills/
# 或安装所有技能
cp -r alipay-* ~/.openclaw/workspace/skills/各技能已在 ClawHub 上发布:
| 技能 | 描述 | ClawHub 链接 |
|---|---|---|
alipay-aipay-product-intro |
支付宝智能体钱包和AI支付产品介绍(官方模拟商家) | 查看详情 |
alipay-authenticate-wallet |
钱包绑定、授权与管理 | 查看详情 |
alipay-pay-for-service |
支付处理与状态轮询 | 查看详情 |
alipay-pay-for-402-service |
HTTP 402 协议处理器 | 查看详情 |
alipay-payment-feedback |
问题上报与反馈 | 查看详情 |
CLI 工具会在一键安装时自动安装。如需单独安装 CLI:
npx -y @alipay/agent-payment@latest install-cli在智能体中使用技能:
- 技能会根据上下文自动触发
- 按照各 SKILL.md 中的指引操作
payment-skills/
├── alipay-aipay-product-intro/ # AI支付产品介绍技能
│ └── SKILL.md
├── alipay-authenticate-wallet/ # 支付宝支付服务开通和授权技能
│ └── SKILL.md
├── alipay-pay-for-service/ # 支付服务付款处理技能
│ └── SKILL.md
├── alipay-pay-for-402-service/ # 基于402协议的支付技能
│ └── SKILL.md
├── alipay-payment-feedback/ # 问题反馈技能
│ └── SKILL.md
├── LICENSE # Apache 2.0 许可证
├── LEGAL.md # 合规文档
└── README.md # 说明文档
- 所有支付操作需用户明确授权
- 敏感凭证不会暴露给最终用户
- 内置常见安全陷阱防护
本项目采用 Apache License 2.0 许可证 - 详见 LICENSE 文件。
使用技能过程中遇到问题,可使用内置的 alipay-payment-feedback 技能向支付宝团队反馈,我们将尽快定位排查。