From nz-skills
Use when looking up Animates NZ products, current public prices, availability, or product details. Queries bounded public Magento search results and parses product-page JSON-LD through a read-only Python CLI; no cart, checkout, account, payment, prescription, booking, grooming, or other mutations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:animates-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retrieve current public Animates NZ product search and detail data without login or browser automation.
Retrieve current public Animates NZ product search and detail data without login or browser automation.
search to discover products. Results are capped at 10 and each result is verified against its public detail page.product for one known Animates URL, .html path, or numeric product ID.price-snapshot for the smallest price-and-availability record.--json for machine-readable output. Every command reports source_url and UTC retrieved_at.python3 skills/animates-nz/scripts/cli.py search "dog food" --limit 3 --json
python3 skills/animates-nz/scripts/cli.py product 18463 --json
python3 skills/animates-nz/scripts/cli.py price-snapshot 18463 --json
The global --timeout N option goes before the command and defaults to 10 seconds.
--limit detail requests; keep limits narrow.scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.mdnpx claudepluginhub thecolab-ai/.skills --plugin nz-skillsQuery Pet Central NZ public Shopify product, collection, price, and availability snapshots through a no-login read-only CLI. Use when a task needs current Pet Central catalogue lookup or structured product detail; never for cart, checkout, account, payment, prescription, or veterinary advice.
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.