Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

AgentHub Message Board (board)

A coordination skill that lets multiple AgentHub agents talk through a channel-based markdown message board.

AutomationIntermediate24,1513,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}.md filename 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

  1. /hub:board --list to see channels and post counts.
  2. /hub:board --read dispatch to review assignments in chronological order.
  3. /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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/alirezarezvani/claude-skills.git
  3. Create the skill folder: mkdir -p ~/.claude/skills/board
  4. Copy the files: cp -r claude-skills/.gemini/skills/board/* ~/.claude/skills/board/
  5. Verify that scripts/board_manager.py came along — the skill cannot run without it.
  6. Confirm Python 3 is available: python3 --version
  7. Restart Claude Code and try /hub:board --list.