From nz-skills
Query PAK'nSAVE 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 PAK'nSAVE NZ product lookup, Papakura or other store prices, specials, category browsing, or product ID decoration. No account login required.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:paknsave-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live PAK'nSAVE NZ store and grocery product data through a small deterministic CLI with human-readable and JSON output.
Query live PAK'nSAVE NZ store and grocery product data through a small deterministic CLI with human-readable and JSON output.
scripts/cli.py with the narrowest subcommand that answers the taskstores first when the requested location is not the default storesearch for keyword price/product lookup and specials for promotional productsproduct when exact product IDs are known--json for agent chaining, comparisons, or structured reportsRun with:
python3 skills/paknsave-nz/scripts/cli.py <command> [flags]
Default store is PAK'nSAVE Papakura: a7d09522-bee2-41e4-8fe0-0b82b7f342f5.
Override with --store-id <id> or PAKNSAVE_STORE_ID.
stores [--query text] [--limit N] [--json] — list or filter PAK'nSAVE storescategories [--store-id id] [--depth N] [--json] — browse a store category treesearch <query> [--store-id id] [--limit N] [--page N] [--promo] [--json] — product search with pricesspecials [query] [--store-id id] [--limit N] [--page N] [--json] — promotional productsproduct <product-id...> [--store-id id] [--json] — decorate exact product IDs with detailstoken [--refresh] [--json] — fetch/cache a short-lived guest token without emitting its valueExamples:
python3 skills/paknsave-nz/scripts/cli.py stores --query papakura --limit 5
python3 skills/paknsave-nz/scripts/cli.py search milk --limit 10
python3 skills/paknsave-nz/scripts/cli.py specials cheese --limit 10 --json
python3 skills/paknsave-nz/scripts/cli.py product 5201479 --json
scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.md~/.cache/paknsave-cli/guest-token.json--json output is intended for exact product matching, basket comparison, and agent workflowsnpx 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.