From simulator
Schedules and configures meetings, video/SIP rooms, and recurring meetings. Also reads call transcriptions and provides summaries.
How this skill is triggered — by the user, by Claude, or both
Slash command
/simulator:simulator-meetingsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Curated tool names (v2 server):** `getForms`, `searchUsers`, `createActor`, `updateActor`,
Curated tool names (v2 server):
getForms,searchUsers,createActor,updateActor,getActor,saveAccessRules,generatePublicLink,getPublicLink,revokePublicLink,buildLink,getTranscription. Call them by these exact names. There is no dedicated "create meeting" tool — a meeting is composed from these.
A meeting is an actor of the Events system form with data.scheduleMeeting = true
(and no chatType — that would make it a chat). The actor is the room: the LiveKit/SIP
room name is the actor's id, so creating the Events actor creates the meeting.
userId), like chats/tasks — added
with saveAccessRules, not a data field. data.moderator (a userId) names the host.startDate / endDate are required and are plain unix seconds on Events.getForms/formName="Events", never
hardcode.Read
$CLAUDE_PLUGIN_ROOT/docs/entities/meetings.mdfor the full model (recurrence schema, agenda, persistent rooms, link variants) andchats.mdfor the shared Events fields.
Reply to the user in their own language.
# 1 — resolve people (moderator / invitees)
searchUsers(query="<name>") # → userId(s)
# 2 — create the meeting (Events actor, scheduleMeeting=true, NO chatType)
createActor(
formName="Events",
title="<meeting name>",
data={ "scheduleMeeting": true,
"startDate": <startUnixSec>, # required, plain unix SECONDS
"endDate": <endUnixSec>, # required
"moderator": <hostUserId> }) # optional
# 3 — invite participants (access-rule members, by userId — creator is owner)
saveAccessRules(objType="actor", objId="<meetingId>", rules=[
{ "action":"create", "data":{ "userId": <inviteeId>, "privs":{ "view":true } } } ])
Set data.recurrence (the platform expands occurrences from it):
createActor(formName="Events", title="Weekly sync", data={
"scheduleMeeting": true, "startDate": <s>, "endDate": <e>,
"recurrence": { "freq":"weekly", "interval":1, "byDay":[1,3] } }) # Mon & Wed
freq (required): daily | weekly | monthly | yearly; interval (every N, default 1).until (unix seconds) or count (number of occurrences).weekly → byDay:[0..6] (0=Sun..6=Sat). monthly → byMonthDay:1..31, or positional
bySetPos:1|-1 + byDayOfWeek:0..6 (e.g. last Friday). timezone optional (IANA).endDate-startDate) must fit within one interval — the backend
rejects e.g. a 2-day meeting on a daily series.A room that stays open and is reused across sessions:
createActor(formName="Events", title="War room", data={
"scheduleMeeting": true, "isPersistentMeeting": true,
"startDate": <now>, "endDate": <now + 3600> })
Don't set
data.isActiveMeeting— that's a runtime flag the platform toggles while a call is live.
data.agenda is an ordered list of items (the meeting UI renders it):
data={ "scheduleMeeting": true, "startDate": <s>, "endDate": <e>,
"agenda": [ { "id":"a1", "title":"Intro", "order":1 },
{ "id":"a2", "title":"Demo", "order":2 } ] }
To change agenda/time/moderator later: updateActor(formId=<Events>, actorId=<meetingId>, data={…}).
| Want | Tool / URL |
|---|---|
| Open the meeting in-app (meeting tab) | buildLink(entity="actor", id="<meetingId>") → append ?tab=meeting to the result → /actors_graph/{acc}/view/{meetingId}?tab=meeting |
| Dedicated meeting-room route | buildLink(entity="meeting", id="<meetingId>") → /meetingRoom/{acc}/{meetingId} |
| Public join, no login (external / SIP) | generatePublicLink(actorId="<meetingId>", waitList=<true/false>) → {hash, url} (<host>/m/<hash>); getPublicLink to re-share, revokePublicLink to kill it |
?tab=meeting is the key trick — appending it to the actor view URL opens the meeting
tab directly. buildLink doesn't add query params, so append it yourself to the actor link.generatePublicLink waitList=true puts joiners in a waiting room (admit manually);
false = join directly. Optional ttl (60–86400s) / dueDate (unix s) bound the link's life;
the link is temporary — generate again to refresh.You can read a meeting's speech transcription — useful to summarize a call, pull action items, or answer "what was said about X":
getTranscription(actorId="<meetingId>", orderValue="ASC") # oldest-first = natural reading order
getTranscription(actorId="<meetingId>", limit=50, offset=0) # page; response carries total + hasMore
orderValue = ASC (oldest first, reads naturally) or DESC (newest first, default); page with
limit (1–100) / offset. Requires view access to the meeting actor.The live call mechanics — joining, real-time participants, mute, SIP dial-in, recording, producing the transcription, AI meeting agents — are handled by the platform (LiveKit/SIP) and the web/mobile clients, not by these tools. Your job is to create and configure the meeting, manage invitees (access rules) and links, read the transcription, and update the meeting actor.
chatType on a meeting — it would become a chat (see simulator-chat).saveAccessRules with userId; don't store them in data.userId first (searchUsers) — moderator and invitees must be real members.startDate/endDate are required, plain unix seconds.saveAccessRules notifies people.freq required; the meeting's duration must fit one interval.| Skill | Boundary |
|---|---|
simulator-chat | The chat use of Events (chatType set); a meeting has no chatType. |
simulator-tasks | The task use of Events; a meeting uses scheduleMeeting. |
simulator-access | Access rules in general (invitees/moderator visibility are access rules). |
simulator-actors | The Events actor's own data fields and the actor data protocol. |
simulator-init | Login + workspace selection (needed first). |
| Path | When to read |
|---|---|
$CLAUDE_PLUGIN_ROOT/docs/entities/meetings.md | Full meeting model: recurrence schema, agenda, persistent rooms, link variants |
$CLAUDE_PLUGIN_ROOT/docs/entities/chats.md | Shared Events-form field list (startDate/endDate as unix seconds) |
$CLAUDE_PLUGIN_ROOT/docs/entities/users.md | moderator/invitees are userIds (share to the user, not the twin) |
createActor(formName="Events", data={scheduleMeeting:true, startDate, endDate}) without chatType.data.recurrence={freq, interval, …}; persistent room → data.isPersistentMeeting=true.data.agenda=[{id,title,order}]; moderator → data.moderator=<userId>.buildLink(entity="actor") + ?tab=meeting; public link = generatePublicLink.getForms/formName), never hardcode.getTranscription(actorId, orderValue="ASC") (needs a live/active room; view access).npx claudepluginhub corezoid/simulator-ai-plugin --plugin simulatorCreates Google Meet spaces, schedules video conferences via Calendar events, and manages meeting access using Rube MCP (Composio).
Queries Fireflies.ai for meeting transcripts from Zoom, Teams, Google Meet; searches by keyword/date, extracts action items, and retrieves summaries.
Automates Zoom meeting creation, scheduling, webinar management, recording retrieval, and participant tracking via Composio's Zoom toolkit. Requires Rube MCP connection.