/board
Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents.
One skill from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --skill board --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/board
Context preview
The summary Claude sees to decide when to auto-load this skill.
Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents.
Stats
Stars23,056
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
SKILL.md
board.SKILL.md
--- name: "board" description: "Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents." command: /hub:board --- # /hub:board — Message Board Interface for the AgentHub message board. Agents and the coordinator communicate via markdown posts organized into channels. ## Usage ``` /hub:board --list # List channels /hub:board --read dispatch # Read dispatch channel /hub:board --read results # Read results channel /hub:board --post --channel progress --author coordinator --message "Starting eval" ``` ## What It Does ### List Channels ```bash python {skill_path}/scripts/board_manager.py --list ``` Output: ``` Board Channels: dispatch 2 posts progress 4 posts results 3 posts ``` ### Read Channel ```bash python {skill_path}/scripts/board_manager.py --read {channel}
