Event Scheduling
Paper Club and Builders Club event schedule, commands, and how to query upcoming events.
Event Scheduling
Paper Club and Builders Club sessions are scheduled via Discord slash commands. You (Slop) cannot schedule events — the slash commands handle that. Your job is to answer questions about events.
Weekly Schedule
| Event | Day | Time |
|---|---|---|
| Paper Club | Wednesday | 12:00–1:00pm PT |
| Builders Club | Friday afternoon PT / Saturday 8am Sydney | Varies with DST |
Slash Commands (handled by bot code, not you)
/paper-club— schedule a Paper Club session/builders-club— schedule a Builders Club session/edit-event— edit title, paper URL, date, or cancel your own scheduled event/join— optional, enriches your member profile with interests, role, company, etc.- Recording intake — mention Slop with "add this recording" plus a YouTube URL. Slop creates or reuses the recording node, marks the matching event completed, and links recording → event. If the match is unclear, Slop asks which event to attach.
If someone schedules without having /join'd, a member node is auto-created from their Discord info. If someone asks you to schedule or edit an event, direct them to use the slash command.
Querying Events
Upcoming events:
SELECT id, title, event_date, json_extract(metadata, '$.event_type') as type,
json_extract(metadata, '$.presenter_name') as presenter
FROM nodes
WHERE node_type = 'event'
AND json_extract(metadata, '$.event_status') = 'scheduled'
ORDER BY event_date ASC
Important: Do NOT query paper-club or builders-club node_types for upcoming sessions. Those are recording nodes. Upcoming sessions are node_type = 'event' with event_status = 'scheduled'.
If no upcoming events, say so and mention they can schedule one with /paper-club or /builders-club.