AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Open Supermarkets

skill-abracadabra50-open-supermarkets-open-supermarkets · by abracadabra50

Grocery automation across nine retailers in five countries — UK, Netherlands, Belgium, Spain and the US. Search, compare, basket, delivery slots and checkout, plus Open Food Facts nutrition and allergen enrichment. Available as CLI, MCP server, or agent skill.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-abracadabra50-open-supermarkets-open-supermarkets

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-abracadabra50-open-supermarkets-open-supermarkets)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
yesterday

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Open Supermarkets? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

UK Grocery CLI - Agent Skills

Unified grocery automation across UK supermarkets. Use via CLI, MCP server, or as agent skills.

Location: {baseDir}


Per-Supermarket Skills

Each supermarket has a dedicated skill file with provider-specific commands, authentication, and API details:

| Supermarket | Skill File | Status | |-------------|-----------|--------| | Sainsbury's | [skills/sainsburys.md](skills/sainsburys.md) | Full coverage | | Tesco | [skills/tesco.md](skills/tesco.md) | Full coverage + staples | | Ocado | [skills/ocado.md](skills/ocado.md) | Full coverage except slot booking/checkout (AWS WAF) |


Quick Start

cd {baseDir}
npm install
npx playwright install chromium

CLI Usage

# Search any supermarket
npm run groc -- --provider sainsburys search "milk"
npm run groc -- --provider tesco search "milk"
npm run groc -- --provider ocado search "milk"

# Compare across all stores
npm run groc compare "organic eggs" --json

# Provider is a flag - all commands work the same way
npm run groc -- --provider  basket
npm run groc -- --provider  add  --qty 2
npm run groc -- --provider  slots
npm run groc -- --provider  checkout --dry-run

MCP Server Usage

# Start MCP server (stdio transport)
npx tsx src/mcp-server.ts
# Or after build:
node dist/mcp-server.js

Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "uk-grocery": {
      "command": "node",
      "args": ["/path/to/uk-grocery-cli/dist/mcp-server.js"]
    }
  }
}

MCP Tools Reference

All tools accept a provider parameter (sainsburys, ocado, tesco). Default: sainsburys.

Core Tools (all providers)

| Tool | Description | |------|-------------| | grocery_login | Login to supermarket account | | grocery_status | Check login status across all providers | | grocery_search | Search products | | grocery_compare | Compare prices across all stores | | grocery_basket_view | View basket contents | | grocery_basket_add | Add product to basket | | grocery_basket_remove | Remove from basket | | grocery_basket_update | Update item quantity | | grocery_basket_clear | Clear basket | | grocery_slots | List delivery slots | | grocery_book_slot | Book delivery slot | | grocery_checkout | Checkout (dry_run=true by default) | | grocery_orders | View order history | | grocery_favourites | Favourite / frequently-bought products (Sainsbury's, Ocado) | | grocery_favourites_search | Search within favourites (Sainsbury's, Ocado) | | grocery_categories | List browse categories (Sainsbury's, Ocado) | | grocery_browse | Browse products in a category (Ocado) | | grocery_providers | List providers and login status |

Provider-Specific Tools

| Tool | Description | |------|-------------| | tesco_staples | View, update, or auto-add repeat-purchase staples | | ocado_regulars | List Ocado recurring-shopping ("Regulars") definitions |


When to Use This Skill

Trigger when users:

  • Want to plan meals or order groceries
  • Ask about product prices or availability
  • Want to compare prices across supermarkets
  • Need to manage a shopping basket
  • Want to book delivery slots or checkout
  • Ask about weekly shop, meal prep, or grocery budget

Example Agent Workflows

Meal Planning

# Search ingredients across stores
npm run groc compare "chicken breast" --json
npm run groc compare "basmati rice" --json

# Add to cheapest provider
npm run groc -- --provider tesco add PRODUCT_ID --qty 1
npm run groc -- --provider tesco basket --json
npm run groc -- --provider tesco checkout --dry-run

Restock Staples (Tesco)

npm run groc -- --provider tesco staples --add
npm run groc -- --provider tesco basket --json
npm run groc -- --provider tesco checkout --dry-run

Price Comparison

npm run groc compare "organic milk" --json
# Returns results from all providers with prices

Documentation

  • [skills/sainsburys.md](skills/sainsburys.md) - Sainsbury's skill details
  • [skills/tesco.md](skills/tesco.md) - Tesco skill details
  • [skills/ocado.md](skills/ocado.md) - Ocado skill details
  • [AGENTS.md](AGENTS.md) - Full agent integration guide
  • [docs/SMART-SHOPPING.md](docs/SMART-SHOPPING.md) - Smart shopping decisions
  • [API-REFERENCE.md](API-REFERENCE.md) - API endpoint documentation

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.