Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

conference-intern会议实习生

Agent Skill

conference-intern 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,168

周安装

257

GitHub Stars

公开资料未说明

下载量

2,056
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:conference-intern(会议实习生)
来源仓库:https://github.com/surlebeat/conference-intern
安装命令:
openclaw skills install conference-intern
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install conference-intern

简介

会议实习生技能通过 Luma 平台和 Google Sheets 管理加密会议相关事务。

  • 适用于发现、策划并协助注册行业会议中的会外交流活动。
  • 支持自动化日程整理与报名流程跟踪,提升参会效率。
  • 依赖外部 API 集成,需配置相应账户授权与数据同步权限。
  • 操作涉及第三方平台,建议提前验证账号权限与数据安全措施。

SKILL.md

name
conference-intern
description
Discover, curate, and register for crypto conference side events via Luma and Google Sheets
metadata
openclaw
emoji
🎪
requires
bins
["jq", "python3", "curl", "sha256sum"]
capabilities
["browser"]

Conference Intern

Discover, curate, and auto-register for crypto conference side events. Fetches events from Luma pages and community-curated Google Sheets, filters them using your preferences with LLM intelligence, and handles Luma RSVP via browser automation.

Quick Start

# First time: interactive setup
bash scripts/setup.sh my-conference

# Run the full pipeline
bash scripts/discover.sh my-conference
bash scripts/curate.sh my-conference
bash scripts/register.sh my-conference

# Or all at once
bash scripts/discover.sh my-conference && bash scripts/curate.sh my-conference && bash scripts/register.sh my-conference

# Monitor for new events
bash scripts/monitor.sh my-conference

Commands

CommandScriptDescription
setupbash scripts/setup.sh <name>Interactive config — walks you through preferences, URLs, auth
discoverbash scripts/discover.sh <id>Fetch events from Luma + Google Sheets → events.json
curatebash scripts/curate.sh <id>LLM-driven filtering and ranking → curated.md
registerbash scripts/register.sh <id>Auto-RSVP on Luma for recommended events
monitorbash scripts/monitor.sh <id>Re-discover + re-curate, flag new events

File Locations

Per-conference data lives in conferences/{conference-id}/:

  • config.json — user preferences, URLs, strategy, user info
  • events.json — all discovered events (normalized schema)
  • events-previous.json — snapshot from last run (for monitoring diff)
  • curated.md — the curated schedule output (grouped by day, tiered)
  • luma-session.json — persisted Luma browser session cookies
  • custom-answers.json — user answers to custom RSVP fields (reused across registrations)

Skill-level shared files:

  • luma-knowledge.md — shared Luma page patterns (learned by agent, speeds up registration)

Agent Instructions

CRITICAL: Always Use the Scripts

You MUST run the bash scripts for every pipeline stage. Do NOT attempt to perform discovery, curation, or registration yourself by browsing pages directly. The scripts handle looping, error recovery, state tracking, and tab cleanup that you cannot reliably do in a single agent turn.

When the user asks you to:

  • Set up a conference → run bash scripts/setup.sh <conference-id>
  • Find/discover events → run bash scripts/discover.sh <conference-id>
  • Curate/filter events → run bash scripts/curate.sh <conference-id>
  • Register for events → run bash scripts/register.sh <conference-id> (processes 10 events per batch)
  • Retry events needing input → run bash scripts/register.sh <conference-id> --retry-pending
  • Check for new events → run bash scripts/monitor.sh <conference-id>
  • Run the full pipeline → run each script in sequence: discover → curate → register

The scripts will invoke you for individual tasks (one event at a time for registration). Follow the prompts they give you. Never try to loop through events yourself — the scripts control the loop to ensure every event is attempted.

Browser Usage

When the scripts invoke you for browser tasks, use your browser capability to interact with pages. Do not hardcode CSS selectors or DOM paths. Instead:

  • Navigate to URLs and read the page content
  • Interpret the page like a human — find event listings, registration forms, buttons
  • This approach is evergreen — it works regardless of Luma UI changes

Registration (batch flow)

Registration processes events in batches of 10. You MUST follow this loop until all events are processed:

  1. Run bash scripts/register.sh <conference-id>
  2. IMMEDIATELY tell the user the batch results (registered/failed/needs-input/remaining counts)
  3. Read conferences/<id>/registration-status.json
  4. If new_fields is not empty: ask the user for answers, write them to conferences/<id>/custom-answers.json
  5. If done is false: run register.sh again immediately for the next batch — do NOT wait for the user to ask
  6. When done is true and there are ⏳ Needs input events: run register.sh --retry-pending
  7. Read registration-status.json — if manual_registration is not empty, present the list to the user:

"These events need manual registration (not on Luma):" - Event Name for each entry

  1. Report final results to the user

CRITICAL: After each batch completes, you MUST either run the next batch or tell the user why you stopped. Never silently stop between batches.

When invoked by the script for individual events:

  • Fill only mandatory/required fields on RSVP forms. Leave optional fields blank.
  • If you encounter required fields you cannot fill, return needs-input status with the field labels.
  • Never guess answers for custom fields — always defer to the user.
  • If the user is already registered, return registered status without touching the form.
  • Close the browser tab after each event — unless CAPTCHA is detected (keep that tab open).

Error Handling

The scripts handle most error recovery automatically. When invoked for a single event:

  • Page fails to load → return failed status
  • CAPTCHA detected → return captcha status (script will stop the loop)
  • Event full/closed → return closed status
  • Session expired → return session-expired status (script will stop the loop)

Stop Conditions

The registration script (register.sh) automatically stops and asks the user when:

  • CAPTCHA is detected (Luma likely flagged the session)
  • Session expires mid-run
  • Custom fields need answers (collects all unique fields, asks once per field)

Other pipeline stop conditions:

  • Zero events discovered → skip curate and register
  • Zero events curated → skip register

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.5%
按下载量换算1,984

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills