Help us improve
Share bugs, ideas, or general feedback.
From nz-skills
Queries Chemist Warehouse NZ public searchapiv2 endpoints for product names, prices, categories, and ratings via a no-login CLI. Use for live NZ pharmacy data lookups.
npx claudepluginhub thecolab-ai/.skills --plugin nz-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:chemistwarehouse-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live Chemist Warehouse NZ product data through a small deterministic CLI with concise human output and normalized JSON, without browser automation, login, or write actions.
Queries Bargain Chemist NZ public product data via CLI: search by keyword, get typeahead suggestions, or fetch Shopify product JSON by handle.
Searches Olive Young stores, products, and inventory via the daiso CLI. Guides users through CLI-first setup before MCP integration for finding nearby locations and checking stock.
CLI tool for searching, scraping, and retrieving structured data from websites (Google, Amazon, YouTube, Zillow, travel, jobs, etc.). Useful for ad-hoc data collection or script automation.
Share bugs, ideas, or general feedback.
Query live Chemist Warehouse NZ product data through a small deterministic CLI with concise human output and normalized JSON, without browser automation, login, or write actions.
scripts/cli.py with the narrowest command that answers the task.suggest to discover terms, product IDs, and category IDs.search for keyword price/product lookup; use category when a category ID is known.product for exact detail by product ID or Chemist Warehouse /buy/<id>/... URL.--json for comparisons, reports, or agent chaining.Run with:
python3 skills/chemistwarehouse-nz/scripts/cli.py <command> [flags]
Commands:
suggest TERM [--limit N] [--json]search TERM [--limit N] [--page N] [--json]category ID [--limit N] [--page N] [--json]product PRODUCT_ID_OR_URL [--json]Examples:
python3 skills/chemistwarehouse-nz/scripts/cli.py suggest panadol --limit 5
python3 skills/chemistwarehouse-nz/scripts/cli.py search "vitamin c" --limit 10 --json
python3 skills/chemistwarehouse-nz/scripts/cli.py category 256 --limit 10
python3 skills/chemistwarehouse-nz/scripts/cli.py product 6973 --json
scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.mdsearchapiv2 endpoints with browser-compatible headers./buy/<id>/.vitamin c for smoke tests.