PAK'nSAVE NZ
SkillSearchQuery PAK'nSAVE NZ stores, product categories, product search results, specials, and store-specific grocery prices using guest APIs, plus a user's own previous orders, purchases, shopping lists, and cart when they explicitly provide Club+ credentials. Manage the user's shopping lists or cart when they explicitly request a specific change.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the PAK'nSAVE NZ skill
What this skill tells your AI
The instructions your AI receives, as published by thecolab-ai/.skills in skills/paknsave-nz/SKILL.md and read by ahel’s review.
Goal
Query live PAK'nSAVE NZ store and grocery product data, optionally retrieve the authenticated user's own account history, and perform explicit shopping-list or cart changes through a small deterministic CLI.
Use this when
- A user asks for PAK'nSAVE NZ product prices or specials
- A user wants to search PAK'nSAVE products by keyword
- A user needs store IDs, store lookup, or category browsing
- A user has PAK'nSAVE product IDs and wants store-specific price/details
- A workflow needs machine-readable PAK'nSAVE product data
- A user explicitly wants their own previous PAK'nSAVE orders or purchases
- A user explicitly wants to retrieve their own saved PAK'nSAVE shopping lists
- A user explicitly asks to create, rename, delete, or change products in one of their own shopping lists
- A user explicitly asks to inspect their cart or add, update, or remove one of its products
Do not use this for
- New World, Four Square, Woolworths, or non-PAK'nSAVE retailers
- Historical pricing or price-change claims unless another dataset provides history
- Checkout, ordering, payment, timeslot, fulfilment, or account/profile changes
- List or cart mutation that the user has not explicitly requested
- Reading another person's account or using credentials not supplied by the account holder
Preferred workflow
- Run
scripts/cli.pywith the narrowest subcommand that answers the task - Use
storesfirst when the requested location is not the default store - Use
searchfor keyword price/product lookup andspecialsfor promotional products - Use
productwhen exact product IDs are known - Use authenticated commands only after the user has supplied their own credentials through environment variables
- Run list or cart mutation commands only when the user has explicitly requested that exact change
- Preserve the
--yesguard on list deletion and list/cart product removal; never infer confirmation from unrelated work - Use
--jsonfor agent chaining, comparisons, or structured reports - Treat authenticated JSON as personal data and mention that the integration is unofficial
Authentication and privacy
Public catalogue commands need no account. Personal commands require the user's own Club+ credentials:
export PAKNSAVE_USERNAME='member@example.nz'
export PAKNSAVE_PASSWORD='...'
paknsave auth login
- The CLI registers and displays account, order, list, and cart commands only when both
PAKNSAVE_USERNAME(orPAKNSAVE_EMAIL) andPAKNSAVE_PASSWORDare present in its environment. - Without that credential pair,
--helpand command parsing expose only the guest catalogue commands. - The password is read only from the environment and is never written to disk.
- Rotating access and refresh tokens are cached at
~/.cache/paknsave-cli/auth.jsonwith file mode0600. - Override the cache location with
PAKNSAVE_AUTH_FILE. - If Club+ requires MFA, set
PAKNSAVE_MFA_CODEto the six-digit code and runauth mfa. auth statusnever prints token values.auth logoutremoves only the local token cache; it does not mutate the PAK'nSAVE account.PAKNSAVE_ACCESS_TOKENandPAKNSAVE_REFRESH_TOKENmay be used as runtime overrides.- Orders, list names, item history, addresses, and raw JSON are personal data. Do not paste them into shared logs, issues, or pull requests.
CLI
Run 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.
Commands
The first six guest commands are always available. The remaining account commands appear only when the Club+ username/email and password environment variables are set.
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 valueauth login [--json]— log in with environment-provided Club+ credentialsauth mfa [--json]— finish an MFA login usingPAKNSAVE_MFA_CODEauth refresh [--json]— rotate the cached PAK'nSAVE access tokenauth status [--json]— report token availability without revealing tokensauth logout [--json]— remove only the local authenticated-token cachestore-select [--store-id id] [--json]— select the store used for authenticated list and cart writesorders [--page N] [--limit N] [--source ALL|ONLINE|IN_STORE] [--json]— retrieve previous ordersorder <order-id> [--source ONLINE|IN_STORE]— retrieve one previous orderprevious-purchases [--limit N] [--include-cart] [--json]— retrieve previously purchased productslists [--json]— retrieve saved shopping listslist <list-id>— retrieve one saved shopping listlist-create <name> [--json]— create an empty shopping listlist-rename <list-id> <name> [--json]— rename a shopping listlist-delete <list-id> --yes [--json]— permanently delete a shopping listlist-add <list-id> <product-id> [--quantity N] [--sale-type UNITS|WEIGHT] [--json]— add a productlist-update <list-id> <product-id> --quantity N [--sale-type UNITS|WEIGHT] [--json]— change quantitylist-remove <list-id> <product-id> --yes [--sale-type UNITS|WEIGHT] [--json]— remove a productcart [--json]— retrieve the current cartcart-add <product-id> [--quantity N] [--sale-type UNITS|WEIGHT] [--json]— increment a cart product quantitycart-update <product-id> --quantity N [--sale-type UNITS|WEIGHT] [--json]— set a cart product quantitycart-remove <product-id> --yes [--sale-type UNITS|WEIGHT] [--json]— remove a cart product
Examples:
python3 skills/paknsave-nz/scripts/cli.py stores --query auckland --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
paknsave auth status
paknsave store-select
paknsave orders --limit 20 --json
paknsave lists --json
paknsave list-create "Weekly shop"
paknsave list-add <list-id> 5201479 --quantity 2
paknsave cart
paknsave cart-add 5201479 --quantity 2
Resources
- CLI entrypoint:
scripts/cli.py - Live smoke test:
scripts/smoke_test.py - API and stability notes:
references/api-notes.md
Notes
- Public commands use the guest-token flow and cache tokens under
~/.cache/paknsave-cli/guest-token.json - Personal commands mirror the Club+ login, secure-code exchange, and rotating PAK'nSAVE refresh flow used by the website
- If a fresh authenticated session has no store, the CLI selects
PAKNSAVE_STORE_ID(or the Papakura default) once and retries the request;store-selectcan change it explicitly - List writes use the same endpoints as the website and are intentionally exposed only as explicit subcommands
list-deleteandlist-removerequire--yes; they cannot be invoked accidentally through a zero quantity- Cart writes use target quantities internally:
cart-addreads and increments, whilecart-updatesets the target directly cart-removerequires--yes; use grams forWEIGHTquantities and units forUNITS- Email verification must be completed in the normal PAK'nSAVE login page before CLI login
- Endpoint shapes can change; retry with a fresh token before assuming data is unavailable
--jsonoutput is intended for exact matching and private agent workflows
Signals
- GitHub stars
- 25
- Forks
- 6
- Last commit
- Sep 2026
ahel review
K6low
bundled executables the agent is told to run
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
paknsave-nz- Source
- github.com/thecolab-ai/.skills