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-skillsQuery New World NZ stores, product categories, product search results, specials, and store-specific grocery prices using the public website's guest-token APIs. Use when the task involves New World NZ product lookup, Papakura or other store prices, specials, category browsing, or product ID decoration. No account login required.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.