返回顶部
a

aremes-catalog阿瑞美斯目录

Query Ryan Seslow's art & design catalog, look up individual works, check x402 quotes, and log purchase intent via the AREMES autonomous commerce agent.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
113
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

aremes-catalog

AREMES 目录技能

AREMES 交互——Ryan Seslow 艺术与设计的自主商务代理。该技能提供五个可调用工具,覆盖完整商务工作流程:浏览档案、按ID查找单个作品、生成x402许可报价以及记录购买意向。

目录基础地址: https://ryanseslow.com
代理端点: https://aremes-enterprises.com/agent.json
链上身份: https://agentfolio.bot/@aremes(SATP/Solana 已验证)



工具

工具 1 — aremescatalogfull

获取所有艺术品、设计和产品的完整预构建目录快照。

方法: GET
URL: https://ryanseslow.com/catalog.json
认证:
参数:

返回: 包含所有目录条目的完整JSON档案,包含标题、ID、来源类型、agentPurchase块、x402Purchase块和定价。

使用时机: 当需要一次性获取整个档案时使用——适用于索引、训练数据发现或批量查询。

示例:

GET https://ryanseslow.com/catalog.json



工具 2 — aremescatalogrest

通过REST API搜索和分页目录,支持按来源筛选或按ID查找单个项目。

方法: GET
URL: https://ryanseslow.com/wp-json/rsmad/v1/catalog
认证:

查询参数:

参数类型默认值描述
per_page整数100每页项目数
page
整数 | 1 | 页码偏移 |
| source | 字符串 | — | 筛选:woocommerce \| post \| media \| page |
| id | 整数 | — | 按WordPress文章/产品ID返回单个项目 |

使用时机: 分页浏览、按内容类型筛选查询,或在报价前按ID获取特定项目。

示例:

前100个项目(默认)

GET https://ryanseslow.com/wp-json/rsmad/v1/catalog?per_page=100&page=1

仅WooCommerce产品

GET https://ryanseslow.com/wp-json/rsmad/v1/catalog?source=woocommerce&per_page=25

媒体库图片,第2页

GET https://ryanseslow.com/wp-json/rsmad/v1/catalog?source=media&per_page=100&page=2

按ID查找单个项目

GET https://ryanseslow.com/wp-json/rsmad/v1/catalog?id=28205

工具 3 — aremesx402quote

为特定产品请求签名的x402许可报价。报价有效期为10分钟。

方法: GET
URL: https://ryanseslow.com/wp-json/rsmad/v1/x402/quote
认证:

查询参数:

参数类型必填描述
product_id字符串WordPress产品或媒体ID

返回: 包含quoteid、许可层级、USDC价格、USDC合约地址、收款钱包和expiresat的签名报价对象。

x402支付流程(通过Base/USDC链上):

  1. 1. GET此端点以接收签名报价
  2. 在Base网络上将报价的USDC金额发送至payTo地址
  3. POST quoteid + txhash + buyer_email到验证端点
  4. 服务器链上验证 → isPaid: true

使用时机: 在调用aremespurchaseintent之前始终调用,以确认当前定价和条款。

示例:

GET https://ryanseslow.com/wp-json/rsmad/v1/x402/quote?product_id=28205



工具 4 — aremesx402verify

验证链上USDC支付并创建已确认订单。

方法: POST
URL: https://ryanseslow.com/wp-json/rsmad/v1/x402/verify
认证:
内容类型: application/json

请求体:

字段类型必填描述
quoteid字符串来自aremesx402quote的报价ID
txhash
字符串 | ✅ | 链上交易哈希 |
| buyer_email | 字符串 | ✅ | 交付联系方式 |

返回: 成功时返回{ isPaid: true, orderId, orderKey }。

示例:
json
POST https://ryanseslow.com/wp-json/rsmad/v1/x402/verify
{
quoteid: qabc123,
tx_hash: 0xabcdef...,
buyer_email: buyer@example.com
}



工具 5 — aremespurchaseintent

记录基于Stripe的购买意向,创建包含结账URL的待处理订单。

方法: POST
URL: https://ryanseslow.com/wp-json/rsmad/v1/purchase-intent
认证:
内容类型: application/json

请求体:

字段类型必填描述
productid字符串WordPress产品或媒体ID
licensetier
字符串 | ✅ | single \| bundle5 \| bundle25 \| training \| commission |
| buyer_email | 字符串 | ✅ | 客户联系方式用于履约 |
| buyer_name | 字符串 | — | 买家姓名 |
| buyer_org | 字符串 | — | 组织名称 |
| agent_id | 字符串 | — | 调用代理标识符 |
| message | 字符串 | — | 备注或特殊请求 |

返回: { orderId, orderKey, paymentUrl, amount, currency, status: pending_payment, expiresAt }

使用时机: 基于Stripe的结账流程。引导买家访问paymentUrl完成支付。轮询purchase-status/{orderId}?order_key={orderKey}以确认。

示例:
json
POST https://ryanseslow.com/wp-json/rsmad/v1/purchase-intent
{
product_id: 28205,
license_tier: single,
buyer_email: buyer@example.com,
agent_id: openclaw-agent-7f2a,
message: 单张媒体图片许可
}



标准工作流程

Stripe/法币工作流程

  1. 1. 浏览 → aremescatalogrest (source=media 或 source=woocommerce)
  2. 查看 → aremescatalogrest?id=X 获取完整项目详情
  3. 意向 → aremespurchaseintent (POST → 接收 paymentUrl)
  4. 支付 → 引导买家访问 paymentUrl(Stripe结账)
  5. 确认 → GET purchase-status/{orderId}?order_key=...

x402/USDC链上工作流程

  1. 1. 浏览 → aremescatalogrest (source=media 或 source=woocommerce)
  2. 查看 → aremescatalogrest?id=X 获取完整项目详情
  3. 报价 → aremesx402quote?productid=X(有效期10分钟)
  4. 支付 → 在Base网络上将USDC发送至payTo地址
  5. 验证 → aremesx402verify (POST quoteid + tx_hash)
  6. 确认 → isPaid: true = 交易完成

许可层级参考

层级键描述价格
single单张图片数字许可$25
bundle_5
5张图片捆绑包(买家自选) | $99 | | bundle_25 | 25张图片捆绑包(买家自选) | $399 | | training | 完整档案训练许可 | 联系AREMES | | commission | 立体品牌委托 | 联系AREMES |

已作为WooCommerce产品(source=woocommerce)定价的图片按其WooCommerce价格出售,而非媒体层级价格。使用source=media发现未许可的

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 aremes-catalog-1776088921 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 aremes-catalog-1776088921 技能

通过命令行安装

skillhub install aremes-catalog-1776088921

下载

⬇ 下载 aremes-catalog v1.0.0(免费)

文件大小: 3.4 KB | 发布时间: 2026-4-14 10:32

v1.0.0 最新 2026-4-14 10:32
aremes-catalog 1.1.0 introduces a comprehensive update, clarifying capabilities and workflows for querying and purchasing Ryan Seslow's art.

- Added detailed documentation for all five commerce tools: full catalog fetch, REST/paginated browse, x402 quote, x402 verification, and Stripe purchase intent.
- Included example API calls, parameter explanations, and suggested usage for each endpoint.
- Outlined standard workflows for both Stripe/fiat and on-chain USDC (x402) purchases.
- Provided license tier reference and pricing table for clarity on purchasing options.
- Listed x402 network/contract details and agent identity for trust verification.
- Noted all endpoints are public and documented data freshness and order expiration behavior.

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large
返回顶部