Help us improve
Share bugs, ideas, or general feedback.
From nz-skills
Queries live First Table NZ restaurant data including 50%-off early-table deals, city/suburb discovery, cuisine search, and availability slots via a Python CLI and public GraphQL calls.
npx claudepluginhub thecolab-ai/.skills --plugin nz-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:first-table-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live First Table NZ restaurant and availability information through a deterministic Python CLI using public website data and unauthenticated GraphQL calls observed from the frontend.
Queries Bookme NZ discount marketplace for activities, tours, restaurants, and last-minute deals. Supports hot deals, cheapest offers, region/category search, and deal detail lookup. No login, booking, or payment.
Monitors Catchtable for canceled or newly opened reservation slots and auto-books using a logged-in Chrome session. Supports multi-target watching, open-run mode, flexible party size matching, and dry-run alerts.
Discovers and ranks local businesses in any neighborhood using Nimble WSAs and web data, returning structured lists with scores, reviews, and an interactive map.
Share bugs, ideas, or general feedback.
Query live First Table NZ restaurant and availability information through a deterministic Python CLI using public website data and unauthenticated GraphQL calls observed from the frontend.
scripts/cli.py with the narrowest subcommand that answers the taskcity to inspect city metadata, suburbs, and tags before a targeted searchsearch for restaurant discovery and detail when an exact First Table restaurant id is knownavailability for read-only slot checks; never attempt booking mutations--json for agent chaining, comparisons, or structured reportsRun with:
python3 skills/first-table-nz/scripts/cli.py <command> [flags]
cities [--json] — list discoverable NZ First Table city/region pagescity [city-slug] [--json] — inspect a city/region page, suburbs, tags, sessions, and countssearch [query] [--city slug] [--session breakfast|lunch|dinner|dinner2|lasttable] [--date YYYY-MM-DD] [--people N] [--limit N] [--json] — find restaurants in a citydetail <restaurant-id> [--json] — fetch restaurant detail by First Table idavailability <id...> [--date YYYY-MM-DD] [--people N] [--available-only] [--limit N] [--json] — fetch read-only public slots for one or more restaurant idsExamples:
python3 skills/first-table-nz/scripts/cli.py city auckland --json
python3 skills/first-table-nz/scripts/cli.py search sushi --city auckland --limit 5
python3 skills/first-table-nz/scripts/cli.py detail 1142 --json
python3 skills/first-table-nz/scripts/cli.py availability 1142,1698 --date 2026-05-25 --people 2 --available-only --json
scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.md