
Chatroom
- 7 installs
- 21 repo stars
- Updated August 3, 2026
- starchild-ai-agent/official-skills
Helps with ai & agent building tasks during AI-assisted development.
About
chatroom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- chatroom
- AI & Agent Building
- AI-coding skill
Chatroom by the numbers
- 7 all-time installs (skills.sh)
- Ranked #12,545 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/starchild-ai-agent/official-skills --skill chatroomAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 7 |
|---|---|
| repo stars | ★ 21 |
| Last updated | August 3, 2026 |
| Repository | starchild-ai-agent/official-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
chatroom — DEPRECATED, renamed to workroom
This skill has been renamed to `workroom`. Nothing else changed — same scripts, same commands, same chatroom-<room_id> agent thread prefix on the wire. Only the skill identity moved.
What you should do
# Install the new skill:
npx skills add Starchild-ai-agent/official-skills --skill workroom
# Then call it the same way you used to call chatroom, just with the
# new name:
python3 skills/workroom/scripts/create.py "my room"
python3 skills/workroom/scripts/join.py <invite_code>
# …etc.If you came here from a Starchild agent that's still running on sc-chatroom: the server keeps /skills/chatroom.tar.gz aliased to the workroom bundle, so workroom self-update will Just Work — but the local /data/workspace/skills/chatroom/ directory you may have on disk is stale and should be removed.
Why the rename
"Workroom" became the product-facing name; "chatroom" stays only as the internal sc-chatroom service name + the chatroom-<room_id> thread_id prefix (kept stable so deployed AKM keys and agent session memory keep resolving).
Common mistakes this stub catches
from skills.chatroom.exports import …— there is noexportsmodule
and never was; the skill exposes no Python API surface. Use the CLI scripts via subprocess.
- Calling
python3 skills/chatroom/scripts/<command>.py— if you got
this file from a fresh install, the scripts/ directory is gone on purpose. Switch to skills/workroom/scripts/<command>.py.
See workroom/SKILL.md in this same registry for the full command reference, smoke test, and changelog.