From nz-skills
Queries Kmart NZ and AU public product data via CLI: search, SKU lookup, clearance snapshots, store locations. Read-only, no auth needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:kmartThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live Kmart NZ and AU public product data through a small deterministic CLI with human-readable and JSON output, without browser automation or account login.
Query live Kmart NZ and AU public product data through a small deterministic CLI with human-readable and JSON output, without browser automation or account login.
scripts/cli.py with the narrowest subcommand that answers the task--country au for Australiasearch for keyword product lookup and product when an exact SKU is knownspecials for a clearance/promotional snapshot based on product metadatastores for public store-detail URL discovery from Kmart sitemaps--json for agent chaining, comparisons, or structured reportsRun with:
python3 skills/kmart/scripts/cli.py <command> [flags]
search <query> [--country nz|au] [--limit N] [--page N] [--json] — product search with pricesproduct <sku> [--country nz|au] [--json] — fetch exact SKU details via product search metadatastores [--region text] [--country nz|au] [--limit N] [--json] — list store-detail URLs and public store metadataspecials [query] [--country nz|au] [--limit N] [--page N] [--json] — clearance/promotional products inferred from product metadataExamples:
python3 skills/kmart/scripts/cli.py search lego --limit 10
python3 skills/kmart/scripts/cli.py search "air fryer" --country au --limit 5 --json
python3 skills/kmart/scripts/cli.py product 43684687 --json
python3 skills/kmart/scripts/cli.py specials sale --limit 10 --json
python3 skills/kmart/scripts/cli.py stores --country au --region melbourne --limit 5 --json
scripts/cli.pyreferences/api-notes.mdnpx claudepluginhub thecolab-ai/.skills --plugin nz-skillsQueries The Warehouse NZ for product search, specials, product details, and store locations. Supports keyword search, SKU lookup, and region-based store finder with optional browser mode.
Queries Market Kurly (Korean online grocery) product search and detail pages without login to retrieve product candidates, current price, discount info, and stock status.
Searches, compares, buys, and tracks products from online merchants via the UCP CLI. Manages local UCP profile, carts, checkout, and order tracking.