- AgentHub: 13 files updated with non-engineering examples (content drafts, research, strategy) — engineering stays primary, cross-domain secondary - AgentHub: 7 slash commands, 5 Python scripts, 3 references, 1 agent, dry_run.py validation (57 checks) - Marketplace: agenthub entry added with cross-domain keywords, engineering POWERFUL updated (25→30), product (12→13), counts synced across all configs - SEO: generate-docs.py now produces keyword-rich <title> tags and meta descriptions using SKILL.md frontmatter — "Claude Code Skills" in site_name propagates to all 276 HTML pages - SEO: per-domain title suffixes (Agent Skill for Codex & OpenClaw, etc.), slug-as-title cleanup, domain label stripping from titles - Broken links: 141→0 warnings — new rewrite_skill_internal_links() converts references/, scripts/, assets/ links to GitHub source URLs; skills/index.md phantom slugs fixed (6 marketing, 7 RA/QM) - Counts synced: 204 skills, 266 tools, 382 refs, 16 agents, 17 commands, 21 plugins — consistent across CLAUDE.md, README.md, docs/index.md, marketplace.json, getting-started.md, mkdocs.yml - Platform sync: Codex 163 skills, Gemini 246 items, OpenClaw compatible Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
117 lines
2.9 KiB
Markdown
117 lines
2.9 KiB
Markdown
---
|
|
title: "/hub:board — Message Board — Agent Skill for Codex & OpenClaw"
|
|
description: "Read, write, and browse the AgentHub message board for agent coordination. Agent skill for Claude Code, Codex CLI, Gemini CLI, OpenClaw."
|
|
---
|
|
|
|
# /hub:board — Message Board
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-rocket-launch: Engineering - POWERFUL</span>
|
|
<span class="meta-badge">:material-identifier: `board`</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/engineering/agenthub/skills/board/SKILL.md">Source</a></span>
|
|
</div>
|
|
|
|
<div class="install-banner" markdown>
|
|
<span class="install-label">Install:</span> <code>claude /plugin install engineering-advanced-skills</code>
|
|
</div>
|
|
|
|
|
|
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
|