home / skills / openclaw / skills / luma-event-manager

luma-event-manager skill

/skills/mariovallereyes/luma-event-manager

This skill helps you discover, RSVP, and manage Luma events across hosts and attendees with calendar sync.

npx playbooks add skill openclaw/skills --skill luma-event-manager

Review the files below or copy the command above to add this skill to your agents.

Files (14)
SKILL.md
2.6 KB
---
name: luma
description: Luma Event Manager for Clawdbot β€” Discover events by topic or location, RSVP, view guest lists, and sync to Google Calendar. No API key required (web scraping), no Luma Plus subscription needed.
homepage: https://github.com/mariovallereyes/luma-skill
metadata: {"clawdbot":{"emoji":"πŸ“…","requires":{"bins":["pass"]},"install":[{"id":"npm","kind":"shell","command":"cd skills/luma && npm install","label":"Install dependencies"}]}}
---

# Luma Event Manager

Manage Luma events as both **host** and **attendee** via web scraping (no API key required).

## Features

### Public (No Auth)
- Discover events near any location
- View event details
- Geographic filtering

### Authenticated (With Cookies)
- View your RSVP'd events
- View events you're hosting
- Access guest lists
- RSVP to events
- Sync events to Google Calendar (via `gog` CLI)

## Triggers

### Discover Events (Public)
- "luma search AI" β€” Find events by topic/theme
- "luma search startup near San Francisco" β€” Topic + location
- "luma events near San Francisco"
- "luma events near Belmont this weekend"
- "luma event ai-meetup-sf"

### Host Mode (Auth Required)
- "luma host events" β€” List your hosted events
- "luma host guests <slug>" β€” View guest list

### Attendee Mode (Auth Required)
- "luma my events" β€” Your RSVP'd events
- "luma rsvp <slug> <response>" β€” RSVP yes/no/maybe/waitlist

### Utility
- "luma configure" β€” Set up authentication
- "luma status" β€” Check connection
- "luma help" β€” Show help
- "luma add calendar <slug>" β€” Add event to Google Calendar

## Setup

### Basic (Public Events Only)
No setup required. Just use discover commands.

### Full Access (Your Events + Guest Lists)

1. Log into lu.ma in your browser
2. Open DevTools (F12) β†’ Application β†’ Cookies β†’ lu.ma
3. Copy cookie values: `luma_session`, `luma_user_id`
4. Store in pass:
```bash
pass insert luma/cookies
# Enter: {"luma_session": "value", "luma_user_id": "value"}
```

### Calendar Sync (Optional)
Requires the `gog` CLI with an authorized Google account.

```bash
gog auth add [email protected]
```

Then:
```
"luma add calendar <slug>"
"luma add calendar <slug> --account [email protected]"
"luma add calendar <slug> --calendar_id primary"
```

## Examples

```
"Events near me this weekend"
"What's the AI meetup about?"
"luma event startup-pitch-night"
"Show my upcoming events"
```

## Notes
- Uses web scraping (no paid Luma Plus required)
- Exponential backoff with a 1 req/sec floor to respect lu.ma
- Fallback selectors + Next.js JSON parsing with warnings when selectors fail
- Cookie auth for private data
- Public events always accessible

Overview

This skill manages Luma events for Clawdbot users, letting you discover public events, RSVP, view guest lists, and sync events to Google Calendar. It works via web scraping so no Luma API key or paid Luma Plus subscription is required. Public discovery works out of the box; cookie-based authentication unlocks host/attendee features and private guest lists.

How this skill works

The skill scrapes lu.ma pages and falls back to Next.js JSON parsing when needed, with exponential backoff and a minimum 1 request/sec to be polite. Public endpoints let you search by topic or location. For private data and actions (RSVP, guest lists, hosting), you provide lu.ma cookies stored securely (e.g., pass). Calendar sync uses the gog CLI to add events to an authorized Google account.

When to use it

  • Find local meetups or topic-specific events quickly without signing into Luma
  • Manage events you host or attend by viewing RSVPs and guest lists
  • RSVP yes/no/maybe or move someone to a waitlist from the command interface
  • Sync a Luma event to Google Calendar for easy scheduling
  • Archive or browse historical skill versions stored on Clawdhub

Best practices

  • Use public discover commands for general browsing; authenticate only when you need private data
  • Store cookies securely (e.g., pass) and rotate them if you log out or change accounts
  • Respect rate limits; the skill enforces exponential backoff and a 1 req/sec floor
  • Confirm calendar additions when using gog to ensure events land in the right account/calendar
  • Use precise slugs (event identifiers) for direct event actions to avoid ambiguous matches

Example use cases

  • Search: "luma search AI" to find nearby AI meetups and view details
  • Location + topic: "luma search startup near San Francisco" to discover relevant events
  • Host view: "luma host events" after adding cookies to list events you’re hosting
  • RSVP: "luma rsvp startup-pitch-night yes" to RSVP and then sync to Google Calendar
  • Guest list: "luma host guests startup-pitch-night" to download or inspect attendee lists

FAQ

Do I need a Luma account or subscription to use this?

No subscription is required. Public event discovery works without authentication. Cookie-based auth is only needed for private host/attendee features.

How does calendar sync work?

Calendar sync uses the gog CLI and an authorized Google account. Run gog auth first, then use the add calendar command to create events in your chosen calendar.