Agent Plugins Marketplace
← All plugins

room

v0.15.2

Lets your coding agent see what teammates' agents are changing. Silent while you work alone; local by default.

CodexClaude Code3 Skills1 MCP serverstdio

By RohanLicense: PolyForm-Noncommercial-1.0.00 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
4 skill or MCP entries
Source updated
Sep 24, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install room for Codex and Claude Code

Installs for the current user
codex plugin marketplace add rohanz/room
codex plugin marketplace upgrade room
codex plugin add room@room

Paste and run these commands in a terminal with Codex. They add and refresh the room catalog, then install this plugin.

Compatibility: the page URL and API slug “room” remain stable.

  • Codex: room@agent-plugin-marketplace → room@room

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/rohanz/room

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/room/.

Plugin files

plugins/room/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/room-etiquette/SKILL.md
├── skills/room-join/SKILL.md
├── skills/room-workers/SKILL.md
└── .mcp.json

Included Skills3

room-etiquetteskills/room-etiquette/SKILL.md

Coordinate when other participants are present, you have workers, or your human asks about Room. Unneeded while alone.

room-joinskills/room-join/SKILL.md

Choose a local or team room when your human asks to join, create, move, or leave.

room-workersskills/room-workers/SKILL.md

Running editing work through other agents. Use when asked for another agent, a few agents in parallel, work in the background, or for codex/claude to do part of it; load before room_spawn.

MCP servers1

roomstdio
command
node
args
./server/room-mcp.mjs
cwd
.
env.ROOM_HOST
codex

Plugin manifests2

plugins/room/.codex-plugin/plugin.json
{
  "name": "room",
  "version": "0.15.2",
  "description": "Lets your coding agent see what teammates' agents are changing. Silent while you work alone; local by default.",
  "author": {
    "name": "Rohan",
    "url": "https://github.com/rohanz/room"
  },
  "repository": "https://github.com/rohanz/room",
  "license": "PolyForm-Noncommercial-1.0.0",
  "keywords": [
    "collaboration",
    "multiplayer",
    "crdt",
    "agents"
  ],
  "skills": "./skills/",
  "mcpServers": "./codex-mcp.json",
  "interface": {
    "displayName": "Room",
    "shortDescription": "See what teammates' agents are changing",
    "longDescription": "Lets your coding agent see what teammates' agents are changing. Silent while you work alone; local by default.",
    "developerName": "Rohan",
    "category": "Productivity",
    "capabilities": [
      "Read",
      "Write"
    ],
    "defaultPrompt": [
      "Join the room",
      "Open a room for this repo",
      "Join the room and tell me who is on what"
    ]
  },
  "hooks": "./hooks.json"
}
plugins/room/.claude-plugin/plugin.json
{
  "name": "room",
  "version": "0.15.2",
  "description": "Lets your coding agent see what teammates' agents are changing. Silent while you work alone; local by default.",
  "author": {
    "name": "Rohan",
    "url": "https://github.com/rohanz/room"
  },
  "repository": "https://github.com/rohanz/room",
  "license": "PolyForm-Noncommercial-1.0.0",
  "keywords": [
    "collaboration",
    "multiplayer",
    "crdt",
    "agents"
  ],
  "hooks": "./hooks/claude.json",
  "mcpServers": {
    "room": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server/room-mcp.mjs"
      ],
      "env": {
        "ROOM_HOST": "claude"
      }
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[room on Agent Plugins Marketplace](https://pluginsmp.com/plugins/room)