room-skill

room-skill is a skill for Claude Code, Codex from MarkDonish/round-table-workspace. It costs 36 tokens per session (2,173 once invoked), scanned A, original, MIT.

A dispatcher for a stateful multi-agent room, where several coding agents collaborate through shared documents and defined conversation steps.

In plain words
What is it for?
It handles room commands such as starting a topic, changing focus, adding or removing agents, creating summaries, and handing a room discussion to a debate process.
Why use it?
It keeps room discussions, participants, handoffs, and stored state within a documented protocol instead of letting each agent manage them differently.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/markdonish/round-table-workspace/room-skill
Any agent
npx skills add MarkDonish/round-table-workspace --skill room-skill
Clone the repo
git clone --depth 1 https://github.com/MarkDonish/round-table-workspace

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for room-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/markdonish/round-table-workspace/room-skill.svg)](https://agentmods.dev/skills/markdonish/round-table-workspace/room-skill)
Your own site
<a href="https://agentmods.dev/skills/markdonish/round-table-workspace/room-skill"><img src="https://agentmods.dev/badge/skills/markdonish/round-table-workspace/room-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,173 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.02173
Opus 5 $0.00018 $0.01086
Sonnet 5 $0.00007 $0.00435
Haiku 4.5 $0.00004 $0.00217

Measured 5d ago against content hash 5f73b0750352, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

room-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 33 executable files (runtime/agent_consumer_self_check.py, runtime/agent_host_inventory.py, runtime/chat_completions_executor.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.codex/skills/room-skill/SKILL.md · 263 lines

How it starts

The opening of the file, as written. The whole thing — 263 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/room 房间模式调度 skill

/room 不是新的名人人格,而是状态化多 Agent 房间的上层调度器。

它的职责不是替任何一个 Agent 发言,而是负责:

  1. 识别 /room 相关命令
  2. 维护 /room 的状态边界
  3. 按协议调用 selection / chat / summary / upgrade prompt
  4. 确保 orchestrator 是状态唯一写者
  5. 在成立时把 handoff packet 交给 debate-roundtable-skill

只在显式触发时生效

只有当用户明确进入 /room,或已经处于某个 /room 上下文并继续推进时,才使用本 skill。

允许的显式命令:

  • /room <topic>
  • /focus <focus text>
  • /summary
  • /upgrade-to-debate
  • /add <agent>
  • /remove <agent>

如果用户没有显式进入 /room

  • 不主动切到 /room
  • 不把普通对话伪装成房间状态机
  • 不覆盖 /debate 或单个 skill 的原有行为

Source Of Truth

执行与维护时优先遵循这些仓库内文件:

  • AGENTS.md
  • docs/protocol-spec.md
  • docs/room-runtime-status.md
  • docs/room-runtime-bridge.md
  • docs/room-chat-contract.md
  • docs/agent-registry.md
  • docs/DECISIONS-LOCKED.md
  • docs/room-architecture.md
  • docs/room-selection-policy.md
  • docs/room-to-debate-handoff.md
  • schemas/room-session.schema.json
  • schemas/room-to-debate-handoff.schema.json
  • prompts/room-selection.md
  • prompts/room-chat.md
  • prompts/room-summary.md
  • prompts/room-upgrade.md
  • .codex/skills/room-skill/WORKFLOW.md

路径与环境自包含规范

本 skill 保证 100% 自包含与环境可移植:

  • 首选仓库相对路径(如 docs/...prompts/...schemas/...
  • 规范绝对路径回退(Canonical Absolute Fallback):当在宿主外部或非仓库根目录下调用时,统一回退解析到 /Users/markdonish/round-table-workspace/(例如 /Users/markdonish/round-table-workspace/docs/protocol-spec.md/Users/markdonish/round-table-workspace/prompts/room-selection.md
  • 跨宿主执行时所有引用的 protocol spec、schemas、prompts 均由本仓库完整提供,无需外部未声明依赖。

如历史报告与以上文件冲突,以上文件优先。


运行入口

/room 生效时:

  1. 先读取本文件
  2. 再读取 .codex/skills/room-skill/WORKFLOW.md
  3. 若需要 checked-in host bridge,使用 .codex/skills/room-skill/runtime/room_runtime.py
  4. 需要命令示例和产物路径时,读取 .codex/skills/room-skill/runtime/README.md
  5. 只在需要解释协议边界时再回到 docs/room-runtime-bridge.md 与相关 prompts

WORKFLOW.md 是当前 checked-in 的 runtime playbook。


命令语义

/room <topic>

  • 首次进入时:创建房间
  • 已有房间上下文时:按宿主行为决定是继续当前房间还是显式新建;如果语义不清,优先保持当前房间,不擅自重置状态

Read the full file on GitHub · 263 lines

Files

What ships with it

43 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 263 lines · 36 tokens per session scan A 5f73b0750352

Subscribe to this mod's changes

room-skill is a skill published in the GitHub repository MarkDonish/round-table-workspace (2 stars, last pushed 21d ago), licensed MIT. It adds 36 tokens to every session and 2,173 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.