Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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.

AutomationIntermediate24,1513,405AI score 8/10Last updated: Aug 9, 2026

What it does

Orchestrates multiple executive-role agents through six phases:

  1. Context loading — company profile plus only previously approved decisions
  2. Independent contributions — each role answers in isolation, so no cross-pollination or groupthink
  3. Critic analysis — an Executive Mentor attacks the consensus, missing voices, and unvalidated assumptions
  4. Synthesis — Chief of Staff reports agreement, disagreement, the uncomfortable truth, and a recommendation with owners and deadlines
  5. Human in the loop — hard stop for founder Approve / Modify / Reject / Follow-up
  6. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal in your working directory.
  2. Clone the repo: git clone https://github.com/alirezarezvani/claude-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-skills/.gemini/skills/board-meeting ~/.claude/skills/
  5. Also copy the sibling agent-protocol skill — it defines the output format and decision-memory layout this skill references.
  6. Create ~/.claude/company-context.md describing your product, revenue, team, and goals.
  7. Prepare the memory folders: mkdir -p ~/.claude/decisions/raw ~/.claude/decisions/approved
  8. Restart Claude Code, then run /cs:boardroom [topic] or simply ask for a board meeting.
  9. Phase 5 stops and waits for you — reply with Approve, Modify, Reject, or a follow-up question.