clawhub-bundle — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited clawhub-bundle (MCP Server) and scored it 96/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 1 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<p align="center"> <h1 align="center">CLISHOP</h1> <p align="center"> <strong>Order anything from your terminal. Built for AI agents and humans.</strong> </p> <p align="center"> <a href="https://www.npmjs.com/package/clishop"><img alt="npm" src="https://img.shields.io/npm/v/clishop?style=flat-square&color=cb3837" /></a> <a href="https://clishop.ai"><img alt="Website" src="https://img.shields.io/badge/website-clishop.ai-blue?style=flat-square" /></a> <a href="https://discord.gg/vwXMbzD4bx"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join-5865F2?style=flat-square&logo=discord&logoColor=white" /></a> </p> </p>
CLISHOP is an open-source CLI that lets AI agents and humans search for products across multiple stores, compare prices, and place real orders — all from the terminal. Anyone can sell on CLISHOP using a Dark Store.
<p> <img alt="VS Code" src="https://img.shields.io/badge/VS%20Code-Copilot-007ACC?style=for-the-badge&logo=visualstudiocode&logoColor=white" /> <img alt="Claude" src="https://img.shields.io/badge/Claude-Supported-7C3AED?style=for-the-badge&logo=anthropic&logoColor=white" /> <img alt="GPT" src="https://img.shields.io/badge/GPT-Supported-10A37F?style=for-the-badge&logo=openai&logoColor=white" /> <img alt="Gemini" src="https://img.shields.io/badge/Gemini-Supported-4285F4?style=for-the-badge&logo=googlegemini&logoColor=white" /> </p> <p> <img alt="Cursor" src="https://img.shields.io/badge/Cursor-Supported-000000?style=for-the-badge&logo=cursor&logoColor=white" /> <img alt="Windsurf" src="https://img.shields.io/badge/Windsurf-Supported-0EA5E9?style=for-the-badge" /> <img alt="AutoGPT" src="https://img.shields.io/badge/AutoGPT-Agent-111827?style=for-the-badge&logo=github&logoColor=white" /> <img alt="LangGraph" src="https://img.shields.io/badge/LangGraph-Agent-16A34A?style=for-the-badge&logo=langchain&logoColor=white" /> </p>
Requires Node.js ≥ 18. Works on macOS, Windows, and Linux/WSL.
npm install -g clishopThis gives you two commands: clishop (the CLI) and clishop-mcp (the MCP server for AI agents).
Once the ClawHub package is published, install CLISHOP into an OpenClaw workspace with:
openclaw plugins install clawhub:clishopThe bundle exposes the CLISHOP skill under skills/clishop/SKILL.md and merges the packaged MCP defaults from .mcp.json so OpenClaw can launch the bundled CLISHOP MCP runtime locally without fetching npm code at startup.
CLISHOP works out of the box on Linux and WSL. On systems without a native keychain, tokens are stored in a local file (~/.config/clishop/auth.json) with restricted permissions.
For native keychain support (optional):
sudo apt install libsecret-1-0Run clishop doctor to check your system's compatibility.
git clone https://github.com/DavooxBv2/CLISHOP.git
cd CLISHOP
npm install
npm run build
npm linkYou can create your account on clishop.ai or do everything from the CLI.
Setup only needs an email address. Search first, then add your address and payment method when you're ready to buy.
For OpenClaw, MCP clients, Claude-style shells, and other tool runners, use:
clishop setup start --email [email protected] --jsonsetup start returns immediately with account-ready status and stores auth locally.
In OpenClaw, prefer the installed CLISHOP MCP tools over CLI shell commands. For address management, the intended flow is to call list_addresses first, then add_address non-interactively with any known fields, and ask the user only for missing required address fields (label, firstName, lastName, line1, city, postalCode, country). For payments, use add_payment_method to generate a secure setup link for the human, then check list_payment_methods after the human completes the web flow. The agent should never ask for raw card details in chat.
clishop search <query>clishop address addclishop payment addAfter setup is complete, add a shipping address and start ordering:
$ clishop search "wireless headphones"
🔍 Search results for "wireless headphones"
1 Sony WH-1000XM5 $278.00
SUPERSTORE · ★ 8.1 · Free shipping · 3-5 days
2 JBL Tune 770NC Wireless $79.95
EveryMarket · ★ 7.9 · $5.99 shipping · 5-8 days
$ clishop info 1
Sony WH-1000XM5
─────────────────────────────────────
Price: $278.00
Store: SUPERSTORE (★ 8.1)
Shipping: Free · 3-5 business days
Returns: 30-day free returns
In stock: Yes
Industry-leading noise cancellation with
Auto NC Optimizer. 30-hour battery life.
Multipoint connection for two devices.clishop buy 1Tip: use result numbers from a search anywhere —clishop info 1 2 3orclishop buy 2.
If something isn't working, run:
clishop doctorThis checks keychain availability, token storage, authentication status, and API connectivity.
┌─────────────────────────────┐
│ AI Agent / Script / Human │
└──────────────┬──────────────┘
│
┌───────▼───────┐
│ CLISHOP CLI │ ← this repo
│ (Node.js) │
└───────┬───────┘
│ HTTPS
┌───────▼───────┐
│ CLISHOP API │ ← backend (Vercel)
└───────┬───────┘
│
┌──────────┼──────────┐
▼ ▼ ▼
Store A Store B Store C ← vendor Dark StoresYou can run your own store with the Dark Store template. Define your catalog, shipping rules, and pricing in YAML, deploy to Vercel, and you're live. No website needed.
git clone https://github.com/DavooxBv2/CLISHOP.git
cd CLISHOP && npm install
npm run dev -- search "headphones" # Dev mode (no build needed)
npm run build # Production build
npm run lint # Type-checkCLISHOP ships as a native MCP server with 46 tools. Any MCP-compatible client gets shopping capabilities out of the box.
clishop-mcp # If installed globally
node ./dist/mcp.js # From the installed package directoryThe MCP onboarding tools now follow the same email-first model:
setup creates the account immediately from the email addresssetup_status remains available only for legacy setup IDsSee the MCP setup guides for VS Code, Claude Desktop, Cursor, and Windsurf configuration.
Full command reference, agent configuration, search filters, and more:
[→ clishop.ai/docs](https://clishop.ai/docs)
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.