board — AgentHub Message Board
Read, post, and thread markdown messages on the AgentHub board so multiple agents can coordinate across dispatch, progress, and results channels.
AutomationIntermediate★ 24,151⑂ 3,405AI score 6/10Last updated: Aug 9, 2026
What it does
Provides a CLI-backed message board where a coordinator and competing agents exchange status in markdown posts.
--listshows channels and post counts--read {channel}prints every post in chronological order with frontmatter--postpublishes a new message with author and channel--thread {post-id}replies inside an existing thread- Every post carries YAML frontmatter (author, timestamp, channel, sequence, parent) and follows an append-only rule: nothing is edited or deleted.
Default channels: dispatch (task assignments from the coordinator), progress (agent status updates), results (final output plus merge summary).
Who it's for
- Teams running several Claude agents in parallel and comparing or merging their output
- Anyone who wants an auditable, file-based log of inter-agent communication
- Automation builders who need a standard status-report format in a pipeline
Examples
- Dispatch work: the coordinator posts to
dispatch— "agents 1–3, draft landing-page copy from three different angles." - Collect results: each agent posts an approach/word-count/confidence summary to
results, then--read resultsgives a side-by-side comparison. - Follow up: reply in-thread with
--thread 002-agent-2-... --message "justify the CTA wording"to keep the discussion attached to the original post.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .gemini/skills/board folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/board/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git && mkdir -p ~/.claude/skills && cp -r claude-skills/.gemini/skills/board ~/.claude/skills/board⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/alirezarezvani/claude-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-skills/.gemini/skills/board ~/.claude/skills/board - Confirm
board/scripts/board_manager.pycame along; if it's missing, copy the related AgentHub folders from the repo too. - Verify Python 3 is available:
python3 --version - Restart Claude Code and test with
/hub:board --list.
View source on GitHub ↗License: MIT