← 返回 Skills 市场
bvcg204

Filtalgo Shopping

作者 Chen Luo · GitHub ↗ · v0.2.0 · MIT-0
cross-platform ⚠ error
40
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install filtalgo-shopping
功能描述
Use this skill when a user wants to browse, compare, buy, pay for, query orders, track logistics, manage addresses, cancel/refund eligible orders, or apply a...
使用说明 (SKILL.md)

Filtalgo Shopping

Use the bundled CLI with node scripts/filtalgo.js. It talks only to the protocol-adapter Agent Tool Gateway and does not call service, UCP, or ACP endpoints directly.

First Run

node scripts/filtalgo.js config reset remote-dev
node scripts/filtalgo.js auth login
node scripts/filtalgo.js doctor --json

The remote-dev OAuth client id and bootstrap secret are built into the CLI profile for the current MVP. Do not print access tokens, refresh tokens, or client secrets in user-facing output.

Shopping Flow

node scripts/filtalgo.js search "洗面奶" --json
node scripts/filtalgo.js cart clear --confirm --json
node scripts/filtalgo.js cart add-item --sku-id \x3Csku_id> --quantity 1 --json
node scripts/filtalgo.js checkout create --json
node scripts/filtalgo.js checkout prepare-payment \x3Ccheckout_session_id> --handler wallet --json

Give the user the returned payment_url so they can complete wallet payment in the buyer page. After payment, use:

node scripts/filtalgo.js order list --page-size 5 --json
node scripts/filtalgo.js order get \x3Corder_sn> --include-items true --json
node scripts/filtalgo.js logistics get \x3Corder_sn> --json

Addresses And Order Changes

node scripts/filtalgo.js address list --json
node scripts/filtalgo.js address create --name \x3Cname> --mobile \x3Cmobile> --region-path \x3Cpath> --region-id-path \x3Cids> --detail \x3Cdetail> --json
node scripts/filtalgo.js address update \x3Caddress_id> --name \x3Cname> --mobile \x3Cmobile> --region-path \x3Cpath> --region-id-path \x3Cids> --detail \x3Cdetail> --json
node scripts/filtalgo.js address delete \x3Caddress_id> --confirm --json
node scripts/filtalgo.js order cancel \x3Corder_sn> --confirm --json

order cancel supports unpaid order cancellation and paid-undelivered full refund application, matching the current service behavior.

After-Sale

Supported service types are RETURN_MONEY and RETURN_GOODS. Do not request EXCHANGE_GOODS in the current version.

node scripts/filtalgo.js aftersale apply-info --order-sn \x3Corder_sn> --order-item-sn \x3Corder_item_sn> --json
node scripts/filtalgo.js aftersale reasons --service-type RETURN_GOODS --json
node scripts/filtalgo.js aftersale create --order-sn \x3Corder_sn> --order-item-sn \x3Corder_item_sn> --service-type RETURN_GOODS --reason \x3Creason> --problem-desc \x3Cdesc> --apply-refund-price \x3Camount> --json
能力标签
cryptorequires-walletcan-make-purchasesrequires-oauth-tokenrequires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install filtalgo-shopping
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /filtalgo-shopping 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.2.0
Filtalgo Shopping Skill 初始内测版本。 本 Skill 用于让智能体通过 Filtalgo Agent Tool Gateway 完成电商购物流程。Skill 内置配套 CLI,支持 OAuth 登录、商品搜索、购物车管理、创建结算单、生成钱包支付链接、查询历史订单、查看物流、管理收货地址、取消未支付订单、申请已支付未发货订单退款,以及发起基础售后申请。 当前版本的典型用法: 1. 智能体先执行 node scripts/filtalgo.js config reset remote-dev,切换到远程开发环境。 2. 执行 node scripts/filtalgo.js auth login,引导用户在浏览器中完成 OAuth 登录和授权。 3. 使用 node scripts/filtalgo.js search "防晒霜" --json 搜索商品。 4. 使用购物车和 checkout 命令创建订单。 5. 使用 checkout prepare-payment 生成支付链接,并把链接展示给用户。 6. 用户在 Filtalgo Buyer 页面中完成钱包支付。 7. 支付后可继续使用 order、logistics、address、aftersale 等命令查询订单、物流、地址和售后信息。 重要说明: - 当前 Skill 仍处于内测阶段,主要用于 MVP 演示和公网智能体接入验证。 - 当前远程开发环境中的商品数据有限,目前主要只能搜索和购买“防晒霜”类测试商品。 - 本 Skill 只调用 protocol-adapter 的 Agent Tool Gateway,不直接调用 Filtalgo service 后端接口,也不直接使用 UCP 或 ACP 入口。 - 当前支付方式以钱包支付为主,微信支付和支付宝支付暂未开放。 - 售后能力仍处于联调阶段,当前仅支持 RETURN_MONEY 和 RETURN_GOODS,不支持换货类型。
元数据
Slug filtalgo-shopping
版本 0.2.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Filtalgo Shopping 是什么?

Use this skill when a user wants to browse, compare, buy, pay for, query orders, track logistics, manage addresses, cancel/refund eligible orders, or apply a... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 40 次。

如何安装 Filtalgo Shopping?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install filtalgo-shopping」即可一键安装,无需额外配置。

Filtalgo Shopping 是免费的吗?

是的,Filtalgo Shopping 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Filtalgo Shopping 支持哪些平台?

Filtalgo Shopping 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Filtalgo Shopping?

由 Chen Luo(@bvcg204)开发并维护,当前版本 v0.2.0。

💬 留言讨论