Help us improve
Share bugs, ideas, or general feedback.
From nz-skills
Queries live Woolworths NZ product prices, specials, categories, and SKU details via CLI. Read-only, no account or browser automation needed.
npx claudepluginhub thecolab-ai/.skills --plugin nz-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:woolworths-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live Woolworths NZ product data through a small deterministic CLI with human-readable and JSON output, without browser automation or account login.
Queries The Warehouse NZ for product search, specials, product details, and store locations. Supports keyword search, SKU lookup, and region-based store finder with optional browser mode.
Resolves exceptions in a Woolworths NZ online grocery workflow by finding SKUs for out-of-stock or unknown items and writing them back to Iris Ingredient elements.
Searches Olive Young stores, products, and inventory via the daiso CLI. Guides users through CLI-first setup before MCP integration for finding nearby locations and checking stock.
Share bugs, ideas, or general feedback.
Query live Woolworths NZ product data through a small deterministic CLI with human-readable and JSON output, without browser automation or account login.
scripts/cli.py with the narrowest subcommand that answers the tasksearch for keyword price/product lookup and specials for promotional productsproduct when exact SKUs are knownbrowse only when a numeric category id is known from product/category data--json for agent chaining, comparisons, or structured reportsRun with:
python3 skills/woolworths-nz/scripts/cli.py <command> [flags]
search <query> [--limit N] [--page N] [--size text] [--in-stock-only] [--json] — product search with pricesspecials [query] [--limit N] [--page N] [--in-stock-only] [--json] — promotional productsbrowse <category-id> [--limit N] [--page N] [--in-stock-only] [--json] — browse a known numeric category idproduct <sku...> [--json] — fetch exact product SKUsExamples:
python3 skills/woolworths-nz/scripts/cli.py search milk --limit 10
python3 skills/woolworths-nz/scripts/cli.py search "wholemeal bread" --limit 5 --json
python3 skills/woolworths-nz/scripts/cli.py specials cheese --limit 10 --json
python3 skills/woolworths-nz/scripts/cli.py product 705692 --json
scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.md