Board Meeting Protocol (board-meeting)
Runs a simulated C-suite board through a 6-phase deliberation on any strategic question and files the approved decision.
AutomationIntermediate★ 24,151⑂ 3,405AI score 8/10Last updated: Aug 9, 2026
What it does
Orchestrates multiple executive-role agents through six phases:
- Context loading — company profile plus only previously approved decisions
- Independent contributions — each role answers in isolation, so no cross-pollination or groupthink
- Critic analysis — an Executive Mentor attacks the consensus, missing voices, and unvalidated assumptions
- Synthesis — Chief of Staff reports agreement, disagreement, the uncomfortable truth, and a recommendation with owners and deadlines
- Human in the loop — hard stop for founder Approve / Modify / Reject / Follow-up
- Decision extraction — writes a full transcript (Layer 1) and an approved decision record (Layer 2)
Each role uses a distinct reasoning style (CEO: Tree of Thought, CFO: Chain of Thought with the math, CAIO: no eval, no ship) and must tag every claim VERIFIED/ASSUMED with a confidence level.
Who it's for
- Solo founders and small startups without a real executive bench
- Strategy leads who need structured multi-perspective input on big calls
- PMs who want an auditable trail of why a decision was made
Examples
/cs:boardroom Should we expand to Spain in Q3?→ CEO, CMO, CFO, CRO, COO views plus critic and recommendation/cs:boardroom Move to usage-based pricing?→ CMO/CFO/CRO/CPO argue with pipeline and margin math/cs:boardroom Train our own model or use an API?→ CAIO, CTO, CDO, CFO weigh eval criteria and cost; the approved record lands in~/.claude/decisions/approved/
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .gemini/skills/board-meeting folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/board-meeting/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git && mkdir -p ~/.claude/skills && cp -r claude-skills/.gemini/skills/board-meeting ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in your working directory.
- Clone the repo:
git clone https://github.com/alirezarezvani/claude-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-skills/.gemini/skills/board-meeting ~/.claude/skills/ - Also copy the sibling
agent-protocolskill — it defines the output format and decision-memory layout this skill references. - Create
~/.claude/company-context.mddescribing your product, revenue, team, and goals. - Prepare the memory folders:
mkdir -p ~/.claude/decisions/raw ~/.claude/decisions/approved - Restart Claude Code, then run
/cs:boardroom [topic]or simply ask for a board meeting. - Phase 5 stops and waits for you — reply with Approve, Modify, Reject, or a follow-up question.
View source on GitHub ↗License: MIT