Ritual
Custom agent skills
npx -y skills add haliphax-ai/skills --skill ritualAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Facilitates an isolated meeting, or "ritual" between multiple agents or subagents in order to brainstorm, provide feedback, execute concurrent work related to the same task, reach consensus, etc.
SKILL.md
6.8 KB, as published. Nobody here has run it
Ritual
Overview
Facilitates an isolated meeting, or "ritual" between multiple agents or subagents in order to brainstorm, provide feedback, execute concurrent work related to the same task, reach consensus, etc. The ritual discussion takes place simultaneously using available rooms extension tools.
Requirements
The rooms extension must be installed. See rooms.
When to Use
When multiple agents need to communicate in the same shared context to brainstorm, provide feedback, execute concurrent work related to the same task/project, reach consensus, etc.
Workflow
Step 1: Accept Input
id- The unique identifier of the room ID so that it can be isolated from other rituals. If no ID is provided, one should be chosen by the agent handling the request to initiate a ritual.facilitator- The agent ID of the agent responsible for facilitating the ritual. This agent can be a member of the ritual as well, but that is not required. The facilitator steers the conversation to remain on topic and surfaces any necessary information or requests to the user. The facilitator should provide regular status updates as to the progress of the ritual, since the user will not be able to see the discussion taking place. If no facilitator is provided, the current agent should assume the role. If an agent ID is provided, a new subagent for that agent ID should be spun up specifically for the ritual. If provided with an existing session ID, connect the live session's agent to the ritual as the facilitator.members- A list of agents or subagents that will be added to the ritual and expected to participate in the discussion. Existing session IDs can be provided to include current sessions' agents; otherwise, new subagents of the specified agent IDs will be spun up specifically for the ritual.mode- The spawn mode for subagents created for the ritual. Defaults torun(one-shot, internal only — no Discord threads created). Set tosessionfor multi-phase rituals that require human input between steps (requiresthread: trueon spawn, which creates Discord threads). Userunfor simple, single-phase rituals. Usesessionwhen the facilitator needs to steer agents between phases viasessions_sendorsubagents(action=steer).purpose- The reason for the ritual. This could be a topic to brainstorm, an issue to troubleshoot, a concept to research, a request for consensus on a decision, or any other topic that would require coordination between multiple entities.
Step 2: Setup the Room
- If the
facilitatoris not the agent handling the request, then the agent handling the request should hand this process off to the facilitator and step back - If no
idwas provided, thefacilitatorshould generate one - The
facilitatorshould join a new room with the appropriate ID (this will create the room if it doesn't exist) - If
membersincludes subagents, thefacilitatorshould spawn any requested subagents using the specifiedmode(defaultrun). Ifmodeissession, passthread: trueon the spawn call. Include instructions to read this skill document and await the ritual prompt - If
membersincludes live agents, thefacilitatorshould message those agents' sessions with instructions to read this skill document and await the ritual prompt
Step 3: Perform the Ritual
- Once all ritual members have announced themselves in the room, the
facilitatorshould provide them with the ritual prompt - When the ritual prompt has been received,
membersshould begin the discussion requested by the ritual prompt, following instructions from thefacilitatorwhen provided - If the
facilitatoris included inmembers, they should participate in the ritual discussion as well as facilitate it - The
facilitatorshould help keep the conversation on track, settle disputes, and regularly surface information about the ritual's progress to the user
Step 4: Conclude the Ritual
- If a stalemate has been reached or the conversation is carrying on too long, the
facilitatorshould request guidance from the user - When the conversation has concluded (either from consensus or at the user's request), the
facilitatorshould provide a summary of the ritual to the user and instruct allmembersto leave the room
Cost Consciousness
Rituals multiply token usage roughly in proportion to the number of participating agents. Each agent runs its own session with full context (system prompt, skill instructions, room history), and every round of discussion means every agent reads and responds.
As a rough guide:
| Setup | Approximate Token Usage |
|---|---|
| Single agent task | ~15-25k tokens |
| 4-agent ritual, 2 rounds | ~80-100k tokens |
| 4-agent ritual, 4 rounds | ~150-200k+ tokens |
The cost scales with:
- Number of agents — each one is a full session
- Number of discussion rounds — every round means every agent processes and responds
- Context size — agents with larger system prompts or longer room histories use more input tokens
For cost-sensitive situations, keep rituals focused: fewer agents, fewer rounds, and clear prompts that minimize back-and-forth. A well-scoped 2-agent ritual can be just as effective as a 5-agent free-for-all.
Tool Reference
Room Tools
These are the core communication tools for the ritual.
room_join— Join a named room (creates it if it doesn't exist). Used by the facilitator and all members during setup.room_send— Broadcast a message to all other members in the room. Primary communication method during the ritual.room_recv— Receive pending messages from the room. Members should poll this to read what others have said.room_list— List rooms you belong to, or list members of a specific room. Useful for the facilitator to verify all members have joined.room_leave— Leave the room. Used by all participants when the ritual concludes.
Session Management
These tools handle spawning, messaging, and managing the agents involved.
sessions_spawn— Spawn a new subagent for a given agent ID. Used whenmembersorfacilitatorspecifies an agent ID rather than an existing session.sessions_send— Send a message to an existing session. Used whenmembersorfacilitatorreferences a live session ID.sessions_list— List active sessions. Useful for resolving session references or verifying agent availability.subagents(list/steer/kill) — Manage subagents spawned for the ritual. The facilitator can steer participants back on track or kill subagents when the ritual concludes.