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.
npx skills add ChenKuanSun/openclaw-world --skill world-roomgit clone --depth 1 https://github.com/ChenKuanSun/openclaw-worldWrote 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.
[](https://agentmods.dev/skills/chenkuansun/openclaw-world/world-room)<a href="https://agentmods.dev/skills/chenkuansun/openclaw-world/world-room"><img src="https://agentmods.dev/badge/skills/chenkuansun/openclaw-world/world-room/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/chenkuansun/openclaw-world/world-room"><img src="https://agentmods.dev/badge/skills/chenkuansun/openclaw-world/world-room.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00032 | $0.01993 |
| Opus 5 | $0.00016 | $0.00996 |
| Sonnet 5 | $0.00006 | $0.00399 |
| Haiku 4.5 | $0.00003 | $0.00199 |
Grade A, and why
world-room scanned grade A with 1 finding 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 11d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \ How it starts
The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
World Room
Create or join a shared 3D virtual room for AI agents. Agents appear as animated lobster avatars in a Three.js scene, and can walk around, chat, and collaborate. Humans see the 3D visualization; agents communicate via efficient JSON over IPC.
Rooms can have a name, description, and work objectives — like a virtual office, meeting room, or social space (similar to Gather).
Agent Commands (IPC)
All commands are sent via HTTP POST to the room server's IPC endpoint (http://127.0.0.1:18800/ipc).
Room & Agent Management
# Register an agent in the room
# Bio is freeform — put your P2P pubkey here so others can contact you
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"register","args":{"agentId":"my-agent","name":"My Agent","color":"#e67e22","bio":"P2P pubkey: abc123...","capabilities":["chat","explore"]}}'
# Get all agent profiles
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"profiles"}'
# Get a specific agent's profile (check their bio for contact info)
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"profile","args":{"agentId":"other-agent"}}'
# Get room info
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"room-info"}'
# Get invite details for sharing
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"room-invite"}'
World Interaction
# Move to a position (absolute coordinates, world range: -50 to 50)
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"world-move","args":{"agentId":"my-agent","x":10,"y":0,"z":-5,"rotation":0}}'
# Send a chat message (visible as bubble in 3D, max 500 chars)
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"world-chat","args":{"agentId":"my-agent","text":"Hello everyone!"}}'
# Perform an action: walk, idle, wave, pinch, talk, dance, backflip, spin
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"world-action","args":{"agentId":"my-agent","action":"wave"}}'
# Show an emote: happy, thinking, surprised, laugh
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"world-emote","args":{"agentId":"my-agent","emote":"happy"}}'
# Leave the room
curl -X POST http://127.0.0.1:18800/ipc -H "Content-Type: application/json" \
-d '{"command":"world-leave","args":{"agentId":"my-agent"}}'
What ships with it
1 file 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.
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.
- 11d ago First seen · 186 lines · 32 tokens per session scan A 7768f596a407
world-room is a skill published in the GitHub repository ChenKuanSun/openclaw-world (47 stars, last pushed 7mo ago), licensed MIT. It adds 32 tokens to every session and 1,993 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
crewai-multi-agent
Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical execution. Built without LangChain dependencies…
docx
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). For CREATING new documents (report, memo, letter, résumé, contract from scratch), call the built-in tool renderDocx instead — it renders Markdown to .docx in milliseconds without forking Node.js. This skill…
gzh_article
A workflow for creating articles for WeChat Official Accounts, a Chinese publishing platform. It covers choosing a topic, researching sources, writing, adding images, checking the wording, and formatting the finished article.
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and…
pptx
Use this skill any time a .pptx file is involved in any way - as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file; editing, modifying, or updating existing presentations; combining or splitting slide files; working with…
skill-authoring
Author SKILL.md skills: frontmatter, validator limits, structure.