From nz-skills
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:the-warehouse-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live The Warehouse NZ product and store data through a small deterministic CLI with human-readable and JSON output, using direct public HTTP by default and optional CloakBrowser `--browser` mode for public read-only fetches when edge protection makes browser context useful.
Query live The Warehouse NZ product and store data through a small deterministic CLI with human-readable and JSON output, using direct public HTTP by default and optional CloakBrowser --browser mode for public read-only fetches when edge protection makes browser context useful.
scripts/cli.py with the narrowest subcommand that answers the tasksearch for keyword product lookup and specials for promotional productsproduct when an exact R... SKU is knownstores --region for region-scoped store lookups--browser when CI/headless edge protection blocks direct HTTP; if CloakBrowser is missing, the CLI returns cloakbrowser_not_installed--json for agent chaining, comparisons, alerts, or structured reportsRun with:
python3 skills/the-warehouse-nz/scripts/cli.py <command> [flags]
search <query> [--limit N] [--page N] [--json] [--browser] - product search with pricesproduct <sku> [--json] [--browser] - fetch public product details for one SKUstores [--region name/code] [--json] [--browser] - list stores, optionally scoped to a NZ regionspecials [query] [--limit N] [--page N] [--json] [--browser] - promotional products, optionally filtered by queryExamples:
python3 skills/the-warehouse-nz/scripts/cli.py search lego --limit 5
python3 skills/the-warehouse-nz/scripts/cli.py search "school bag" --limit 5 --json
python3 skills/the-warehouse-nz/scripts/cli.py product R3077131 --json
python3 skills/the-warehouse-nz/scripts/cli.py stores --region auckland --json
python3 skills/the-warehouse-nz/scripts/cli.py specials lego --limit 5 --json
python3 skills/the-warehouse-nz/scripts/cli.py search toys --limit 3 --json --browser
scripts/cli.pyreferences/api-notes.md--browser imports CloakBrowser only when requested and uses a headless public page context for search, specials, product, and store fetches--browser --json is requested and CloakBrowser is missing, the CLI returns {"error": "cloakbrowser_not_installed", ...} so agents can recommend installationnpx claudepluginhub thecolab-ai/.skills --plugin nz-skillsQueries live Woolworths NZ product prices, specials, categories, and SKU details via CLI. Read-only, no account or browser automation needed.
Resolves Woolworths NZ online grocery exceptions — out-of-stock items, missing SKUs — by searching, substituting, and writing resolved SKUs back to Iris ingredient notes.
Fetches and filters today's deal products from ohou.se without login. Supports keyword, minimum discount rate, free delivery, and sorting by discount/price/review/sales.