From nz-skills
Queries Bunnings NZ/AU product search, prices, SKUs, store details, category browse, and redemption specials via no-login CLI. Read-only. Useful for shopping assistance and product data retrieval.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:bunningsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live Bunnings NZ product, pricing, store, category, and promotion data through a small deterministic CLI with human-readable and JSON output, without browser automation or account login.
Query live Bunnings NZ product, pricing, store, category, and promotion 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 product when an exact SKU is knownbrowse when a product category path is knownstores --region for location-scoped store lookupspecials for redemption/promotion products, optionally filtered by query--json for agent chaining, comparisons, or structured reports_apis snapshots; redemption specials still come from public page stateRun with:
python3 skills/bunnings/scripts/cli.py <command> [flags]
Set --country au before the subcommand for Bunnings Australia. The default is nz.
search <query> [--limit N] [--json] - product search with pricesproduct <sku-or-product-url> [--json] - fetch product detail, price, default-store stock, and aisle data when presentbrowse <category-path> [--limit N] [--json] - browse a known category path such as tools/power-tools/drillsstores [--region text] [--limit N] [--json] - list store details, optionally filtered by region/path/name textspecials [query] [--limit N] [--json] - list redemption/promotion productsExamples:
python3 skills/bunnings/scripts/cli.py search drill --limit 5
python3 skills/bunnings/scripts/cli.py product 0715241 --json
python3 skills/bunnings/scripts/cli.py browse tools/power-tools/drills --limit 5
python3 skills/bunnings/scripts/cli.py stores --region uppernorthisland --limit 5 --json
python3 skills/bunnings/scripts/cli.py specials dewalt --limit 5
python3 skills/bunnings/scripts/cli.py --country au search drill --limit 5
_apis JSON endpoints with stdlib urllibPOST /_apis/v1/coveo/searchGET /_apis/v1/products/{sku}, GET /_apis/v2/products/{sku}/priceInfo, POST /_apis/v2/products/{sku}/fulfillment, and GET /_apis/v1/item-api/locationsGET /_apis/v1/stores/country/{NZ|AU}?fields=FULL/campaign/redemption-offers; no clean read-only _apis feed was found during CDP discoveryreferences/api-notes.md for detailed endpoint shapes and request patternsnpx claudepluginhub thecolab-ai/.skills --plugin nz-skillsQueries Mitre 10 NZ product search, specials, store locator, and product detail via CLI. Read-only, no account or cart.
Compares live prices across retailers (Amazon, Walmart, eBay, Best Buy, Google Shopping) to rank offers and recommend where to buy. Handles product names, ASINs, and URLs with region awareness.
Resolves Woolworths NZ online grocery exceptions — out-of-stock items, missing SKUs — by searching, substituting, and writing resolved SKUs back to Iris ingredient notes.