From nz-skills
Query Petstock NZ's public Algolia catalogue and product JSON-LD for bounded product search, current standard and Autoship prices, public offers, rewards signals, and online availability. Use when comparing Petstock NZ products or checking a known product handle, URL, or SKU. Read-only; no account, cart, checkout, payment, vet, booking, or other mutations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:petstock-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retrieve current public Petstock NZ catalogue, product, offer, price, and availability evidence without login or browser automation.
Retrieve current public Petstock NZ catalogue, product, offer, price, and availability evidence without login or browser automation.
search for bounded discovery from Petstock's shipped public read-only Algolia frontend configuration.product with a result URL, handle, or numeric SKU for Product JSON-LD offers plus exact-SKU, exact-handle catalogue variants.price-snapshot to keep standard, sale, Autoship, member-price, and rewards concepts separate.availability for public online and fulfilment flags. These are snapshots, not reservations.--json for agent chaining. Every successful command includes source_url and UTC retrieved_at.python3 skills/petstock-nz/scripts/cli.py search "dog food" --limit 5 --json
python3 skills/petstock-nz/scripts/cli.py product orijen-original-dog-food --json
python3 skills/petstock-nz/scripts/cli.py price-snapshot 122731000059 --json
python3 skills/petstock-nz/scripts/cli.py availability https://www.petstock.co.nz/products/orijen-original-dog-food --json
The global --timeout N option goes before the command and defaults to 10 seconds.
sku is the retailer-supplied identifier. Numeric shape alone does not make it a GTIN, UPC, EAN, or barcode; those fields remain null because no independently labelled barcode field was verified.price_nzd is the current public standard/sale price in the catalogue record.autoship.price_nzd is a conditional recurring-order offer, not a standard or member price.member_price remains unavailable unless a distinct public member-price field is verified.scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.mdnpx claudepluginhub thecolab-ai/.skills --plugin nz-skillsUse when searching Petdirect NZ products, comparing current public variant prices, checking availability, or reading product details. Parses bounded public search-page state and product JSON-LD through a read-only Python CLI; no cart, checkout, account, payment, subscription, prescription, or other mutations.
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.