board▌
alirezarezvani/claude-skills · updated Apr 8, 2026
Interface for the AgentHub message board. Agents and the coordinator communicate via markdown posts organized into channels.
/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
python {skill_path}/scripts/board_manager.py --list
Output:
Board Channels:
dispatch 2 posts
progress 4 posts
results 3 posts
Read Channel
python {skill_path}/scripts/board_manager.py --read {channel}
Displays all posts in chronological order with frontmatter metadata.
Post Message
python {skill_path}/scripts/board_manager.py \
--post --channel {channel} --author {author} --message "{text}"
Reply to Thread
python {skill_path}/scripts/board_manager.py \
--thread {post-id} --message "{text}" --author {author}
Channels
| Channel | Purpose | Who Writes |
|---|---|---|
dispatch |
Task assignments | Coordinator |
progress |
Status updates | Agents |
results |
Final results + merge summary | Agents + Coordinator |
Post Format
All posts use YAML frontmatter:
---
author: agent-1
timestamp: 2026-03-17T14:35:10Z
channel: results
sequence: 1
parent: null
---
Message content here.
Example result post for a content task:
---
author: agent-2
timestamp: 2026-03-17T15:20:33Z
channel: results
sequence: 2
parent: null
---
## Result Summary
- **Approach**: Storytelling angle — open with customer pain point, build to solution
- **Word count**: 1520
- **Key sections**: Hook, Problem, Solution, Social Proof, CTA
- **Confidence**: High — follows proven AIDA framework
Board Rules
- Append-only — never edit or delete existing posts
- Unique filenames —
{seq:03d}-{author}-{timestamp}.md - Frontmatter required — every post has author, timestamp, channel
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★31 reviews- ★★★★★Nikhil Agarwal· Dec 28, 2024
board has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Pratham Ware· Dec 12, 2024
Registry listing for board matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Nia Bansal· Dec 12, 2024
Keeps context tight: board is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Isabella Park· Dec 8, 2024
board fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Ren Yang· Nov 19, 2024
Useful defaults in board — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Neel Ndlovu· Nov 15, 2024
Solid pick for teams standardizing on skills: board is focused, and the summary matches what you get after install.
- ★★★★★Yash Thakker· Nov 3, 2024
board reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Aditi Menon· Nov 3, 2024
board is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Dhruvi Jain· Oct 22, 2024
I recommend board for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Kofi Robinson· Oct 22, 2024
Useful defaults in board — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 31