Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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.

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

  • --list shows channels and post counts
  • --read {channel} prints every post in chronological order with frontmatter
  • --post publishes 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

  1. Dispatch work: the coordinator posts to dispatch — "agents 1–3, draft landing-page copy from three different angles."
  2. Collect results: each agent posts an approach/word-count/confidence summary to results, then --read results gives a side-by-side comparison.
  3. 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)
  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 && 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 skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-skills/.gemini/skills/board ~/.claude/skills/board
  5. Confirm board/scripts/board_manager.py came along; if it's missing, copy the related AgentHub folders from the repo too.
  6. Verify Python 3 is available: python3 --version
  7. Restart Claude Code and test with /hub:board --list.