← 返回 Skills 市场
alirezarezvani

Board Meeting

作者 Alireza Rezvani · GitHub ↗ · v2.1.1 · MIT-0
cross-platform ⚠ suspicious
372
总下载
0
收藏
2
当前安装
2
版本数
在 OpenClaw 中安装
/install board-meeting
功能描述
Multi-agent board meeting protocol for strategic decisions. Runs a structured 6-phase deliberation: context loading, independent C-suite contributions (isola...
使用说明 (SKILL.md)

Board Meeting Protocol

Structured multi-agent deliberation that prevents groupthink, captures minority views, and produces clean, actionable decisions.

Keywords

board meeting, executive deliberation, strategic decision, C-suite, multi-agent, /cs:board, founder review, decision extraction, independent perspectives

Invoke

/cs:board [topic] — e.g. /cs:board Should we expand to Spain in Q3?


The 6-Phase Protocol

PHASE 1: Context Gathering

  1. Load memory/company-context.md
  2. Load memory/board-meetings/decisions.md (Layer 2 ONLY — never raw transcripts)
  3. Reset session state — no bleed from previous conversations
  4. Present agenda + activated roles → wait for founder confirmation

Chief of Staff selects relevant roles based on topic (not all 9 every time):

Topic Activate
Market expansion CEO, CMO, CFO, CRO, COO
Product direction CEO, CPO, CTO, CMO
Hiring/org CEO, CHRO, CFO, COO
Pricing CMO, CFO, CRO, CPO
Technology CTO, CPO, CFO, CISO

PHASE 2: Independent Contributions (ISOLATED)

No cross-pollination. Each agent runs before seeing others' outputs.

Order: Research (if needed) → CMO → CFO → CEO → CTO → COO → CHRO → CRO → CISO → CPO

Reasoning techniques: CEO: Tree of Thought (3 futures) | CFO: Chain of Thought (show the math) | CMO: Recursion of Thought (draft→critique→refine) | CPO: First Principles | CRO: Chain of Thought (pipeline math) | COO: Step by Step (process map) | CTO: ReAct (research→analyze→act) | CISO: Risk-Based (P×I) | CHRO: Empathy + Data

Contribution format (max 5 key points, self-verified):

## [ROLE] — [DATE]

Key points (max 5):
• [Finding] — [VERIFIED/ASSUMED] — 🟢/🟡/🔴
• [Finding] — [VERIFIED/ASSUMED] — 🟢/🟡/🔴

Recommendation: [clear position]
Confidence: High / Medium / Low
Source: [where the data came from]
What would change my mind: [specific condition]

Each agent self-verifies before contributing: source attribution, assumption audit, confidence scoring. No untagged claims.


PHASE 3: Critic Analysis

Executive Mentor receives ALL Phase 2 outputs simultaneously. Role: adversarial reviewer, not synthesizer.

Checklist:

  • Where did agents agree too easily? (suspicious consensus = red flag)
  • What assumptions are shared but unvalidated?
  • Who is missing from the room? (customer voice? front-line ops?)
  • What risk has nobody mentioned?
  • Which agent operated outside their domain?

PHASE 4: Synthesis

Chief of Staff delivers using the Board Meeting Output format (defined in agent-protocol/SKILL.md):

  • Decision Required (one sentence)
  • Perspectives (one line per contributing role)
  • Where They Agree / Where They Disagree
  • Critic's View (the uncomfortable truth)
  • Recommended Decision + Action Items (owners, deadlines)
  • Your Call (options if founder disagrees)

PHASE 5: Human in the Loop ⏸️

Full stop. Wait for the founder.

⏸️ FOUNDER REVIEW — [Paste synthesis]

Options: ✅ Approve | ✏️ Modify | ❌ Reject | ❓ Ask follow-up

Rules:

  • User corrections OVERRIDE agent proposals. No pushback. No "but the CFO said..."
  • 30-min inactivity → auto-close as "pending review"
  • Reopen any time with /cs:board resume

PHASE 6: Decision Extraction

After founder approval:

  • Layer 1: Write full transcript → memory/board-meetings/YYYY-MM-DD-raw.md
  • Layer 2: Append approved decisions → memory/board-meetings/decisions.md
  • Mark rejected proposals [DO_NOT_RESURFACE]
  • Confirm to founder with count of decisions logged, actions tracked, flags added

Memory Structure

memory/board-meetings/
├── decisions.md          # Layer 2 — founder-approved only (Phase 1 loads this)
├── YYYY-MM-DD-raw.md     # Layer 1 — full transcripts (never auto-loaded)
└── archive/YYYY/         # Raw transcripts after 90 days

Future meetings load Layer 2 only. Never Layer 1. This prevents hallucinated consensus.


Failure Mode Quick Reference

Failure Fix
Groupthink (all agree) Re-run Phase 2 isolated; force "strongest argument against"
Analysis paralysis Cap at 5 points; force recommendation even with Low confidence
Bikeshedding Log as async action item; return to main agenda
Role bleed (CFO making product calls) Critic flags; exclude from synthesis
Layer contamination Phase 1 loads decisions.md only — hard rule

References

  • templates/meeting-agenda.md — agenda format
  • templates/meeting-minutes.md — final output format
  • references/meeting-facilitation.md — conflict handling, timing, failure modes
安全使用建议
This skill appears to do what it says (a structured 6-phase board meeting), but it reads and writes persistent memory files (company context, decisions, raw transcripts) while the registry shows no declared config paths or storage permissions. Before installing: 1) Confirm with the skill owner/platform whether the skill will be granted access to your agent's memory storage and where those files will be stored and who can read them. 2) Ensure raw transcripts (Layer 1) will be stored securely and that the auto-archive / retention policy matches your data-sensitivity requirements. 3) Verify the missing reference (agent-protocol/SKILL.md) and ask for documentation of how Phase 2 isolation is enforced. 4) If you do not want persistent transcripts or Layer 2 decisions written automatically, do not install or require a version that declares config paths and gives you explicit opt-in for storage. If you need more assurance, ask the publisher for a README describing exact memory I/O and retention policies and for the identity/verification of the publisher (owner ID).
功能分析
Type: OpenClaw Skill Name: board-meeting Version: 2.1.1 The 'board-meeting' skill is a structured multi-agent deliberation framework designed for strategic decision-making. It implements a 6-phase protocol (context loading, isolated contributions, critic analysis, synthesis, human review, and decision logging) using local markdown files for persistence in a 'memory/' directory. The skill includes robust safeguards such as a mandatory human-in-the-loop phase and explicit instructions that user overrides must be respected without pushback, and it shows no signs of data exfiltration, malicious execution, or unauthorized system access.
能力评估
Purpose & Capability
The skill's behaviors (running isolated role contributions, critic, synthesis, and writing approved decisions) are coherent with a 'board meeting' facilitator. However, it expects access to agent persistent memory files (e.g., memory/company-context.md and memory/board-meetings/*.md) even though the registry metadata declares no required config paths or credentials. That omission is a mismatch between stated requirements and actual operation.
Instruction Scope
SKILL.md explicitly instructs the agent to load specific memory files (Layer 2 decisions) and to write raw transcripts and approved decisions to memory paths. Those are substantive I/O actions that persist potentially sensitive company data. The skill enforces not loading raw transcripts in Phase 1 (good) but still creates them in Phase 6. The instructions also reference an external format file (agent-protocol/SKILL.md) that is not present in the file manifest.
Install Mechanism
Instruction-only skill with no install steps, no downloaded code, and no required binaries—this is the lowest install risk and consistent with a facilitation protocol.
Credentials
The skill declares no environment variables or config paths but performs read/write operations on persistent memory locations. Requesting or using memory access should be declared in requires.config/paths so administrators understand what will be read and stored. There are no unrelated credentials requested, which is appropriate.
Persistence & Privilege
The skill will persist raw transcripts and decision records to memory (Layer 1 and Layer 2). Persisting sensitive board-level transcripts is a high-impact operation; the skill does not declare this persistence in its metadata. 'always' is false and autonomous invocation is allowed (normal), but the combination of autonomous runs + undeclared persistent writes raises the blast radius if misused.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install board-meeting
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /board-meeting 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.1.1
v2.1.1: optimization, reference splits
v1.0.0
Initial release: C-suite orchestration skill.
元数据
Slug board-meeting
版本 2.1.1
许可证 MIT-0
累计安装 2
当前安装数 2
历史版本数 2
常见问题

Board Meeting 是什么?

Multi-agent board meeting protocol for strategic decisions. Runs a structured 6-phase deliberation: context loading, independent C-suite contributions (isola... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 372 次。

如何安装 Board Meeting?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install board-meeting」即可一键安装,无需额外配置。

Board Meeting 是免费的吗?

是的,Board Meeting 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Board Meeting 支持哪些平台?

Board Meeting 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Board Meeting?

由 Alireza Rezvani(@alirezarezvani)开发并维护,当前版本 v2.1.1。

💬 留言讨论