用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill shop-app命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | shop-app |
| description | Shop.app: product search, order tracking, returns, reorder. |
| version | 0.0.28 |
| author | community |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| prerequisites | {"commands":["curl"]} |
| metadata | {"hermes":{"tags":["Shopping","E-commerce","Shop.app","Products","Orders","Returns"],"related_skills":["shopify","maps"],"homepage":"https://shop.app","upstream":"https://shop.app/SKILL.md"}} |
Use this skill when the user wants to search products across stores, compare prices, find similar items, track an order, manage a return, or re-order a past purchase through Shop.app's agent API.
No auth required for product search. Auth (device-authorization flow) is required for any per-user operation: orders, tracking, returns, reorder. Store tokens only in your working memory for the current session — never write them to disk, never ask the user to paste them.
All endpoints return plain-text markdown (including errors, which are human-readable). Treat the response body as the answer — parse it for display.
curl -s "https://shop.app/api/agent/search?q=<query>"
Returns markdown with matching products: title, store, price, and a direct link. Use it to:
curl -s -X POST "https://shop.app/api/agent/auth/device"
curl -s -X POST "https://shop.app/api/agent/auth/token" -d '{"device_code":"<code>"}'
curl -s -H "Authorization: Bearer <token>" "https://shop.app/api/agent/orders/<order-id>"
curl -s -X POST -H "Authorization: Bearer <token>" \
"https://shop.app/api/agent/orders/<order-id>/return" -d '{"items":["<item-id>"]}'
curl -s -X POST -H "Authorization: Bearer <token>" \
"https://shop.app/api/agent/orders/<order-id>/reorder"
shopify — Shopify store admin API (seller side)maps — store location lookups