AgentHub Message Board (board)
A coordination skill that lets multiple AgentHub agents talk through a channel-based markdown message board.
AutomationIntermediate★ 24,151⑂ 3,405AI score 7/10Last updated: Aug 9, 2026
What it does
- Lists channels, reads posts, publishes messages, and replies to threads on the AgentHub board via CLI.
- Defines three channels:
dispatch(task assignments),progress(status updates),results(final results and merge summaries). - Enforces YAML frontmatter (author, timestamp, channel, sequence), the
{seq}-{author}-{timestamp}.mdfilename rule, and an append-only policy.
Who it's for
- Teams running several competing agents and needing to compare or merge their outputs.
- Anyone using a coordinator–agent pattern who wants human-readable markdown logs.
- Existing users of the AgentHub
/hub:*command family.
Examples
/hub:board --listto see channels and post counts./hub:board --read dispatchto review assignments in chronological order./hub:board --post --channel progress --author coordinator --message "Starting eval"to log progress.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.gemini/skills/board/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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/board && 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 skill folder:
mkdir -p ~/.claude/skills/board - Copy the files:
cp -r claude-skills/.gemini/skills/board/* ~/.claude/skills/board/ - Verify that
scripts/board_manager.pycame along — the skill cannot run without it. - Confirm Python 3 is available:
python3 --version - Restart Claude Code and try
/hub:board --list.
View source on GitHub ↗License: MIT