Install
$ agentstack add skill-abracadabra50-open-supermarkets-api ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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:
- First search favourites:
``bash node skills/api/wrapper.js fav-search "USER ITEM" ``
- If there is a clear favourite result that matches the user's intent, add it directly:
``bash node skills/api/wrapper.js add [qty] ``
- If there are multiple plausible favourite results, ask the user which one to add. Include names, prices, and product IDs.
- 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" ``
- For regular search results, always confirm with the user before adding anything to the basket.
- 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:
- First inspect the basket to get basket item IDs:
``bash node skills/api/wrapper.js basket ``
- Use the basket
item_id, not the product ID:
``bash node skills/api/wrapper.js remove node skills/api/wrapper.js update ``
- If the item to change is ambiguous, ask the user which basket item they mean.
- 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_uidas the product ID foradd. - Use the basket
item_idforremoveandupdate.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: abracadabra50
- Source: abracadabra50/open-supermarkets
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.