claudegoodies
Skill

shop

From NousResearch

Shop catalog search, checkout, order tracking, returns.

Facts

Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this skill runs.

# Shop CLI Skill

## Setup
Prefer the installed `shop` CLI. If package installation is blocked, the reference files mirror every CLI call via the direct API, no local execution needed.

```bash
pnpm add --global @shopify/shop-cli   # or: npm install --global @shopify/shop-cli
shop --help
```

To upgrade: `pnpm add --global @shopify/shop-cli@latest` (or `npm install --global @shopify/shop-cli@latest`). Uninstall: `pnpm rm -g @shopify/shop-cli` (or `npm rm -g @shopify/shop-cli`).

**Reference files:**
- [catalog-mcp.md](references/catalog-mcp.md) — direct catalog MCP calls + manual token exchange
- [direct-api.md](references/direct-api.md) — auth, checkout, and orders API details
- [safety.md](references/safety.md) — safety, security, and prompt-injection rules
- [legal.md](references/legal.md) — personal-use limits and prohibited commercial uses

## IMPORTANT: Shopping flow
Every shopping conversation follows this order. Each step links to its rules below; each rule lives in exactly one place.

1. **Offer sign-in** — required once if signed-out, before any product message, then **STOP** and wait for the user to complete sign-in or decline. → *Sign in*
2. **Search** the catalog with `shop search`. → *Searching*
3. **Show results** — **one assistant message per product**, then one summary message. → *Showing products*
4. **Offer visualization** when the item is visual. → *Visualiz
View full source on GitHub →

Other skills