Skip to main content

board

Implement — Read, write, and browse the AgentHub message board for agent coordination.

설치로 이동

소스 정보

저장소
thiagofernandes1987-create/APEX
최근 소스 활동
2026년 4월 18일 09:35
감지된 SKILL.md 언어
영어
스타
2
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
board
description
Implement — Read, write, and browse the AgentHub message board for agent coordination.
command
/hub:board
executor
LLM_BEHAVIOR
skill_id
engineering.cs_engineering.agenthub.board
status
ADOPTED
security
{"level":"standard","pii":false,"approval_required":false}
anchors
["engineering","agent","documentation"]
tier
2
input_schema
[{"name":"code_or_task","type":"string","description":"Code snippet, script, or task description to process","required":true}]
output_schema
[{"name":"result","type":"string","description":"Primary output from board"}]
# /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 --- ## Why This Skill Exists Implement — Read, write, and browse the AgentHub message board for agent coordination. <!-- SR_40: auto-generated from frontmatter `purpose`/`description` (OPP-Phase3). Expand with domain-specific rationale. --> ## When to Use Use this skill when the task requires board capabilities. <!-- SR_40: auto-generated from frontmatter `when`/`description` (OPP-Phase3). --> ## What If Fails If this skill fails to produce the expected output: (1) verify input completeness, (2) retry with more specific context, (3) fall back to the parent workflow without this skill. <!-- SR_40: auto-generated from frontmatter `what_if_fails` (OPP-Phase3). -->
GitHub에서 보기