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

Grocery Api

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

Use the local groc HTTP API to search Sainsbury's groceries, search favourites, add/update/remove basket items, and view basket.

No reviews yet
0 installs
0 views
view→install

Install

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

✓ 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-api)

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 Grocery Api? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Grocery API Skill

Use this skill when the user asks about Sainsbury's groceries, favourites, searching products, adding/updating/removing basket items, or viewing the basket.

The local API must already be running on port 7876:

GROC_API_PORT=7876 npm run api

Commands

Run from the repo root:

node skills/api/wrapper.js fav-search "milk"
node skills/api/wrapper.js search "milk"
node skills/api/wrapper.js favourites
node skills/api/wrapper.js basket
node skills/api/wrapper.js add  [qty]
node skills/api/wrapper.js remove 
node skills/api/wrapper.js update  

All commands return JSON from the local API.

Add-to-basket workflow

When the user asks to add an item to the basket:

  1. First search favourites:

``bash node skills/api/wrapper.js fav-search "USER ITEM" ``

  1. If there is a clear favourite result that matches the user's intent, add it directly:

``bash node skills/api/wrapper.js add [qty] ``

  1. If there are multiple plausible favourite results, ask the user which one to add. Include names, prices, and product IDs.
  1. If there are no good favourite matches, or if the user explicitly asks to look outside favourites, use regular search:

``bash node skills/api/wrapper.js search "USER ITEM" ``

  1. For regular search results, always confirm with the user before adding anything to the basket.
  1. After adding, show or summarize the basket:

``bash node skills/api/wrapper.js basket ``

Remove/update workflow

When the user asks to remove or update an item:

  1. First inspect the basket to get basket item IDs:

``bash node skills/api/wrapper.js basket ``

  1. Use the basket item_id, not the product ID:

``bash node skills/api/wrapper.js remove node skills/api/wrapper.js update ``

  1. If the item to change is ambiguous, ask the user which basket item they mean.
  1. After removing or updating, show or summarize the basket.

Notes

  • Prefer favourites over regular search for add requests.
  • Do not add ambiguous items without asking.
  • Do not use regular search additions without confirmation.
  • Use the product_uid as the product ID for add.
  • Use the basket item_id for remove and update.

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.