← 返回 Skills 市场
firefrog-pepe

Luma Events Enhanced

作者 pepe · GitHub ↗ · v1.1.1
cross-platform ✓ 安全检测通过
278
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install luma-enhanced
功能描述
Fetch upcoming events from Luma (lu.ma) for any city. Use when the user asks about tech events, startup meetups, networking events, conferences, or things ha...
使用说明 (SKILL.md)

Luma Events Enhanced Skill

This skill allows the agent to fetch upcoming events from Luma (lu.ma) without authentication. It supports multiple cities, date filtering, and JSON output. Events are automatically persisted to ~/.openclaw/workspace/memory/luma-events.json and old events are pruned (>24h past start) to keep storage manageable.

Capabilities

  • fetch_events(city, days=30, max_events=20, json=False) – Fetch events for a city (or list of cities). Returns human-readable text or JSON.
  • get_persisted_events() – Read stored events from memory file (useful for follow-up questions).
  • prune_old_events(hours=24) – Remove events that ended more than N hours ago.

Usage

The agent typically runs the CLI:

python3 scripts/fetch_events.py \x3Ccity> [cities...] [--days N] [--max N] [--json]

Parameters

  • city: City slug (lowercase, hyphenated), e.g., bengaluru, mumbai, san-francisco, new-york, lisbon, porto.
  • --days N: Only include events occurring within the next N days (default: 30).
  • --max N: Maximum number of events to return per city (default: 20).
  • --json: Output raw JSON instead of formatted text.

Output

Human-readable output prints each event with:

  • 🎯 Event name
  • 📍 Venue and city
  • 📅 Date and time (local to event)
  • 👥 Hosts (up to 2)
  • 👤 Guest count
  • 🎫 Ticket status (Free/Paid/Sold Out/Available with spots)
  • 🔗 Direct lu.ma link

JSON output includes an array of event objects with fields:

  • city, name, start, end, url, venue, hosts[], guestCount, ticketStatus (free/paid/sold_out), spotsRemaining, isFree, lastFetched

Persistence

After fetching, events are merged into ~/.openclaw/workspace/memory/luma-events.json by event URL. On each run, the file is pruned to remove events older than 24 hours past their start time. This allows the agent to maintain context without re-fetching.

Examples

Find tech events this week

python3 scripts/fetch_events.py bengaluru --days 7

Check multiple cities for AI events

python3 scripts/fetch_events.py bengaluru mumbai san-francisco --days 14 --json | jq '.[] | .events[] | select(.event.name | contains("AI"))'

Get next 5 events in a city

python3 scripts/fetch_events.py new-york --max 5

Check if events are selling out

python3 ~/clawd/skills/luma/scripts/fetch_events.py mumbai --json | jq '.[] | .events[] | select(.ticket_info.is_near_capacity)'

Example Queries

User: "What tech events are happening in Bangalore this weekend?" → Fetch Bengaluru events for next 7 days, save to memory

User: "Any AI meetups in Mumbai next month?" → Fetch Mumbai events for next 30 days, filter for AI-related, save to memory

User: "Compare startup events in SF vs NYC" → Fetch both cities, compare, save both to memory

Notes

  • Luma public pages embed event data in __NEXT_DATA__ script tag; no API key required.
  • If a city page does not expose an events array (e.g., Porto), the skill returns an empty result.
  • Rate limiting: Be respectful; do not hammer Luma servers.
  • Timezones: Event times are in the event's local timezone as provided by Luma.

Troubleshooting

  • No upcoming events found → City may not be supported by current Luma page format. This is expected.
  • Could not find NEXT_DATA → Luma changed HTML structure or blocked the request; try later.
  • Timeouts → Network issue; retry or check connectivity.

Dependencies

  • Python 3.6+ (stdlib only: urllib, json, re, argparse, datetime, os, sys)

Changelog

v1.1.1 (2026-03-08)

  • Republished with explicit fork lineage to regalstreak/luma on ClawHub.
  • No code changes; metadata-only patch release.

v1.1.0 (2026-02-20)

  • Changed persistence path to ~/.openclaw/workspace/memory/luma-events.json.
  • Automatic pruning of events older than 24 hours past their start.
  • Friendly output for unsupported cities (e.g., Porto).
  • Removed obsolete README.md; consolidated docs in SKILL.md.

v1.0.0 (2026-01-29)

  • Initial release
  • Support for multiple cities
  • Human-readable and JSON output
  • Date filtering (--days)
  • Event limit per city (--max)
  • Event persistence to memory file
安全使用建议
This skill appears to do what it says: it scrapes public lu.ma city pages and saves structured event data into your OpenClaw workspace (~/.openclaw/workspace/memory/luma-events.json). Before installing, consider: 1) Privacy: the skill will store event data on disk in your home directory—if you do not want that, change the script or workspace location. 2) Review the script: the displayed file snippet cuts off mid-line (an apparent bug: an unfinished 'if spots and s' line) — inspect the full scripts/fetch_events.py in the package and fix any syntax/runtime errors before running. 3) Rate-limiting: the SKILL.md asks to be respectful of lu.ma; do not run aggressive loops. 4) If you want to avoid persistence, run the script with --json and pipe output without letting it write to the memory path (or modify save/load functions). If you want extra assurance, open the full included script file to confirm there are no hidden network endpoints or obfuscated code in the tail that wasn't visible in the truncated listing.
功能分析
Type: OpenClaw Skill Name: luma-enhanced Version: 1.1.1 The skill is a legitimate tool for fetching and persisting event data from Luma (lu.ma). It uses standard Python libraries (urllib, json, re) to scrape public data from city-specific pages and maintains a local cache in the designated OpenClaw workspace directory. No evidence of data exfiltration, malicious execution, or prompt injection was found in scripts/fetch_events.py or SKILL.md.
能力评估
Purpose & Capability
Name/description match the behavior: the code fetches lu.ma city pages, extracts __NEXT_DATA__ JSON, parses events, filters, formats, and persists them to the declared workspace memory file. Required binary (python3) is appropriate. No unrelated services or credentials are requested.
Instruction Scope
SKILL.md instructs the agent to fetch pages, optionally output JSON, and persist events to ~/.openclaw/workspace/memory/luma-events.json. Persisting fetched events in agent memory is expected for follow-ups, but it is additional data stored on disk (privacy consideration). The instructions do not instruct reading unrelated system files or exfiltrating data to external endpoints beyond lu.ma.
Install Mechanism
No install spec (instruction-only) and included code is plain Python using only stdlib. No external downloads or package installs are requested.
Credentials
No secret environment variables or unrelated credentials are required. The script optionally respects OPENCLAW_WORKSPACE env var to locate the workspace; this is reasonable and proportional. No access to system config or other skill credentials is requested.
Persistence & Privilege
The skill persists events to a workspace memory file (~/.openclaw/workspace/memory/luma-events.json) and prunes them. This is consistent with SKILL.md but is a persistence action users should be aware of. always is false and the skill does not request elevated privileges or modify other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install luma-enhanced
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /luma-enhanced 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
Metadata-only patch release: mark skill as a fork of regalstreak/luma for proper upstream attribution.
v1.1.0
Improve persistence path, prune stale events, friendlier unsupported-city handling, and consolidate docs in SKILL.md.
元数据
Slug luma-enhanced
版本 1.1.1
许可证
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Luma Events Enhanced 是什么?

Fetch upcoming events from Luma (lu.ma) for any city. Use when the user asks about tech events, startup meetups, networking events, conferences, or things ha... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 278 次。

如何安装 Luma Events Enhanced?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install luma-enhanced」即可一键安装,无需额外配置。

Luma Events Enhanced 是免费的吗?

是的,Luma Events Enhanced 完全免费(开源免费),可自由下载、安装和使用。

Luma Events Enhanced 支持哪些平台?

Luma Events Enhanced 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Luma Events Enhanced?

由 pepe(@firefrog-pepe)开发并维护,当前版本 v1.1.1。

💬 留言讨论