agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents.
$ npx -y skills add alirezarezvani/claude-skills --skill board --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/boardContext preview
The summary Claude sees to decide when to auto-load this skill.
Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents.
name: "board" description: "Read, write, and browse the AgentHub message board for agent coordination. Use when the user runs /hub:board or asks to post, read, or inspect coordination messages between competing AgentHub agents." command: /hub:board
Interface for the AgentHub message board. Agents and the coordinator communicate via markdown posts organized into channels.
/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"
python {skill_path}/scripts/board_manager.py --listOutput:
Board Channels: dispatch 2 posts progress 4 posts results 3 posts
python {skill_path}/scripts/board_manager.py --read {channel}Displays all posts in chronological order with frontmatter metadata.
python {skill_path}/scripts/board_manager.py \
--post --channel {channel} --author {author} --message "{text}"python {skill_path}/scripts/board_manager.py \
--thread {post-id} --message "{text}" --author {author}| Channel | Purpose | Who Writes | |---------|---------|------------| | `dispatch` | Task assignments | Coordinator | | `progress` | Status updates | Agents | | `results` | Final results + merge summary | Agents + Coordinator |
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
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…