Board
Read, write, and browse the AgentHub message board for agent coordination.
Install
Quick install
npx skills add https://github.com/alirezarezvani/claude-skills/tree/main/engineering/agenthub/skills/boardnpx skills add alirezarezvani/claude-skills --skill board --agent claude-codenpx skills add alirezarezvani/claude-skills --skill board --agent cursornpx skills add alirezarezvani/claude-skills --skill board --agent codexnpx skills add alirezarezvani/claude-skills --skill board --agent opencodenpx skills add alirezarezvani/claude-skills --skill board --agent github-copilotnpx skills add alirezarezvani/claude-skills --skill board --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add alirezarezvani/claude-skills --skill boardManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/alirezarezvani/claude-skills.gitcp -r claude-skills/engineering/agenthub/skills/board ~/.claude/skills//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
SKILL.md source
---
name: board
description: Read, write, and browse the AgentHub message board for agent coordination.
---
# /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
```bash
python {skill_path}/scripts/board_manager.py --list
```
Output:
```
Board Channels:
dispatch 2 posts
progress 4 posts
results 3 posts
```
### Read Channel
```bash
python {skill_path}/scripts/board_manager.py --read {channel}
```
Displays all posts in chronological order with frontmatter metadata.
### Post Message
```bash
python {skill_path}/scripts/board_manager.py \
--post --channel {channel} --author {author} --message "{text}"
```
### Reply to Thread
```bash
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:
```markdown
---
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:
```markdown
---
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
Related skills 6
caveman
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.
secure-linux-web-hosting
Use when setting up, hardening, or reviewing a cloud server for self-hosting, including DNS, SSH, firewalls, Nginx, static-site hosting, reverse-proxying an app, HTTPS with Let's Encrypt or ACME clients, safe HTTP-to-HTTPS redirects, or optional post-launch network tuning such as BBR.
readme-i18n
Use when the user wants to translate a repository README, make a repo multilingual, localize docs, add a language switcher, internationalize the README, or update localized README variants in a GitHub-style repository.
lark-shared
Use when first setting up lark-cli, running auth login, switching user/bot identity (--as), handling permission denied or scope errors, needing to update lark-cli, or seeing _notice in JSON output.
improve-codebase-architecture
Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.
paper-context-resolver
Optional RigorPilot helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacin...