find-events
Find interesting art and food events in Berlin. Use when the user asks 'What events are happening in Berlin this week?' or 'Find me art exhibitions and food festivals in Berlin next weekend.' Ingest event sources into qurl, run semantic search, check against Google Calendar for conflicts, and produce a curated list of relevant events with location context.
What this skill does
# Find Berlin Events
Ingest Berlin event sources into qurl, run semantic search, check Google Calendar for conflicts, and produce a curated, relevance-ranked list.
## Workflow
### Step 1: Load User Settings
Check `.claude/berlin-events.local.md` in the current project root first, then fall back to `~/.claude/berlin-events.local.md`. Extract:
- **neighborhood**: User's Berlin neighborhood (for travel context)
- **interests**: Art, food, or both (default: both)
- **calendar_id**: Google Calendar ID (default: primary)
- **lookahead_days**: How many days ahead to search (default: 14)
If no settings file exists, assume defaults: neighborhood=Mitte, interests=art+food, calendar=primary, lookahead=14 days.
### Step 2: Determine Date Range
Parse the optional argument for date range:
- No argument: today through 14 days ahead
- Number (e.g., "7"): today through N days ahead
- "this weekend": upcoming Saturday and Sunday
- "next week": Monday through Sunday of next week
Calculate exact dates using today's date. Only include future events.
### Step 3: Ingest Sources into qurl
Scrape each priority source and ingest it into the local qurl database. Run in parallel where possible.
```bash
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-plugins/berlin-events}"
ingest() {
local url="$1" tags="$2"
bun run "$PLUGIN_ROOT/scripts/extract-content.js" "$url" \
| qurl add "$url" --source berlin-events --tags "$tags"
}
# Art sources
ingest "https://www.indexberlin.com/events/list/" "art"
ingest "https://www.kw-berlin.de/en/events" "art"
ingest "https://berlinischegalerie.de/programme/kalender/" "art"
ingest "https://www.artatberlin.com/en/calendar-for-vernissagen-exhibitions-events/" "art"
ingest "https://co-berlin.org/de/programm/kalender" "art"
ingest "https://kunstleben-berlin.de/events/" "art"
# Food / broad sources
ingest "https://www.berlin.de/en/events/" "food"
ingest "https://www.visitberlin.de/en/event-calendar-berlin" "art,food"
```
qurl deduplicates by URL + content hash — re-running is safe.
### Step 4: Embed
Generate vector embeddings for any newly ingested documents:
```bash
qurl embed
```
### Step 5: Search with qurl vsearch
Build a query from the user's settings and run semantic search:
```bash
# Build query from interests + neighborhood + current month
QUERY="$(date '+%B %Y') Berlin exhibition opening vernissage workshop event calendar art food"
qurl vsearch "$QUERY" \
--source berlin-events \
--limit 20
```
**Relevance filter** — a result counts as relevant if its snippet contains any of:
- EN: `april`, `may`, `monday`–`sunday`, `vernissage`, `opening`, `exhibition`, `finissage`
- DE: `ausstellung`, `veranstaltung`, `führung`, `kalender`, `programm`
- Dates: current year, `.04.`, `.05.` (adjust for current month)
If vsearch returns fewer than 5 relevant results, fall back to web search (Step 5b).
### Step 5b: Web Search Fallback (only if vsearch < 5 results)
```
"Berlin art events this week [date range]"
"Berlin food events this week [date range]"
"Berlin exhibition openings [date range]"
```
### Step 6: Check Google Calendar
Check for scheduling conflicts:
```bash
gcalcli agenda --nocolor --details end "today" "+14 days"
```
If gcalcli is not installed: `pip3 install gcalcli`. If not authenticated, ask the user to run `! gcalcli agenda` to complete OAuth.
Parse output to identify busy time slots. Flag events that overlap with existing entries.
### Step 7: Add Location Context
For each event, note the neighborhood (e.g., "Kreuzberg", "Mitte", "Charlottenburg") and compare with the user's neighborhood:
- Same neighborhood: "Near you"
- Adjacent: "~15 min by transit"
- Far: "~30+ min by transit"
Use general Berlin geography knowledge. Do not call external routing APIs.
### Step 8: Rank and Curate
Score events by:
1. **Relevance** to user interests (art/food)
2. **Time fit** — no calendar conflicts, within lookahead window
3. **Proximity** to user's neighborhood
4. **Uniqueness** — special/one-time events ranked higher than recurring
5. **Source quality** — primary sources and editorial picks ranked higher
### Step 9: Present Results
Output a curated list grouped by date:
```
## [Day, Date]
### [Event Name]
- **What**: [Brief description]
- **Where**: [Venue, Neighborhood] — [travel context from your location]
- **When**: [Time]
- **Category**: Art | Food
- **Link**: [URL]
- **Calendar conflict**: None | "Conflicts with [existing event] at [time]"
- **Add to calendar**: [gcalcli command or Google Calendar link]
---
```
Google Calendar link format (compact ISO 8601 dates: `YYYYMMDDTHHmmssZ`):
```
https://calendar.google.com/calendar/render?action=TEMPLATE&text=[title]&dates=20260325T190000Z/20260325T210000Z&location=[venue]&details=[description+link]
```
Include a summary at the top: "Found X events (Y art, Z food) for [date range]. N conflicts with your calendar."
## Tips
- If a source fails extraction, skip it and continue — do not abort
- Prefer English-language sources but include notable German-only events
- For food events: markets, pop-ups, food festivals, tastings, food-related workshops
- For art events: openings, exhibitions, gallery walks, art talks, performances
- Limit output to ~15–20 best events
- See `event-sources` skill for validated source list and ingestion notes
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.