Help us improve
Share bugs, ideas, or general feedback.
From nz-skills
Searches and inspects public Eventfinda New Zealand event listings by location, category, or keyword from no-login website pages. Returns event URLs, venues, dates, session times, ticket badges, images, and JSON-LD detail.
npx claudepluginhub thecolab-ai/.skills --plugin nz-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/nz-skills:eventfinda-nzThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query live public Eventfinda New Zealand event listings through a small deterministic CLI with human-readable and JSON output.
Queries NZ council events (concerts, markets, festivals) and public recreation facilities (pools, leisure centres, gyms) across Auckland, Wellington, Christchurch, and 12 other councils. Outputs machine-readable JSON. Not for rates, consents, bookings, or payments.
Scrapes events from Instagram accounts, web aggregators, and Facebook URLs using Python CLI tools. Downloads flyer images and stores raw data in SQLite database.
Discovers networking events across local, regional, national, and international scopes, assigning ROI tiers and presentation flags. Invokes networking-strategist agent.
Share bugs, ideas, or general feedback.
Query live public Eventfinda New Zealand event listings through a small deterministic CLI with human-readable and JSON output.
scripts/cli.py upcoming --location <slug> for broad discoverysearch <query> for keyword searches such as artists, festivals, venues, or genresevent <url> for structured JSON-LD details and sessions--json for agent chaining, comparisons, or structured summariesRun with:
python3 skills/eventfinda-nz/scripts/cli.py <command> [flags]
upcoming [--location slug] [--category slug] [--page N] [--limit N] [--json] — list public Eventfinda event cards from a location/category pagesearch <query> [--page N] [--limit N] [--json] — search Eventfinda public pages by keywordevent <url-or-path> [--json] [--raw] — inspect a public Eventfinda event detail page using embedded JSON-LDExamples:
python3 skills/eventfinda-nz/scripts/cli.py upcoming --location auckland --limit 5
python3 skills/eventfinda-nz/scripts/cli.py upcoming --location wellington --category concerts-gig-guide --limit 5 --json
python3 skills/eventfinda-nz/scripts/cli.py search "jazz" --limit 5 --json
python3 skills/eventfinda-nz/scripts/cli.py event /2026/classic-comedy-all-stars-festival-edition/auckland --json
python3 skills/eventfinda-nz/scripts/cli.py event https://www.eventfinda.co.nz/2026/classic-comedy-all-stars-festival-edition/auckland --raw --json
The CLI uses Eventfinda website URL slugs. Common locations include:
new-zealandaucklandwellingtonchristchurchhamiltondunedintaurangaCategory slugs are the same path segments Eventfinda uses, for example:
concerts-gig-guidefestivals-lifestyleperforming-artssports-outdoorsexhibitionscomedyIf a category/location combination produces no cards, try the broader upcoming --location <slug> page or search <query>.
scripts/cli.pyscripts/smoke_test.pyreferences/api-notes.mdapi.eventfinda.co.nz/v2 developer API returned 401 Incorrect authentication details supplied without Basic-auth credentials during verification; this skill intentionally uses public website pages instead