c-level-agents — Founder-Mode Executive Team
A virtual C-suite delivered through slash commands and persona agents.
Keywords
founder mode, virtual c-suite, executive team, boardroom, office hours, cfo review, cmo review, strategic sprint, decision logging, cross-model consensus, persona agents, chief of staff, forcing questions
What This Plugin Provides
13 cs-* Agents (in agents/)
Each agent wraps an existing c-level skill and adds:
- A distinct cognitive voice (numerate skeptic, narrative-first, etc.)
- Forcing questions specific to the role
- Workflow orchestration tied to skill Python tools
- Output template: Bottom Line → What → Why → How to Act → Your Decision
See ../../references/persona-voices.md for voice specs.
21 /cs:* Slash Commands (in skills/)
Forcing-question office hours (12):
/cs:office-hours — YC-style 6-question intake
/cs:cfo-review — unit economics, runway, dilution
/cs:cmo-review — ICP, CAC payback, positioning
/cs:cpo-review — RICE, JTBD, North Star, PMF
/cs:cro-review — pipeline coverage, win rate, NRR
/cs:cto-review — architecture risk, scaling cliff
/cs:ciso-review — threat model, blast radius, compliance
/cs:gc-review — contracts, IP, regulatory, term sheets
/cs:cdo-review — training-data rights, data products, data assets
/cs:caio-review — model selection, evals, AI risk, AI costs
/cs:cco-review — GRR/NRR decomposition, churn root cause, CS coverage
/cs:vpe-review — DORA metrics, cycle time, eng hiring funnel, team structure
Strategic sprint pipeline (5):
/cs:brief → /cs:boardroom → /cs:decide → /cs:execute → /cs:post-mortem
Meta + safety (4):
/cs:founder-mode — auto-routes to the right C-role
/cs:onboard — founder interview → company-context.md
/cs:cross-eval — multi-model consensus
/cs:freeze — cooldown lock on a decision
Quick Start
/cs:onboard # populate company context first
/cs:office-hours "should we hire a VP Sales?"
/cs:founder-mode "runway pressure" # auto-routes to CFO
/cs:boardroom briefs/pricing-v3.md # full panel
Architecture
User question
│
├─ Single-role? → cs-{role}-advisor agent
│ ↓
│ /cs:{role}-review command (forcing Qs)
│ ↓
│ Skill tools + references
│ ↓
│ Bottom Line + Memo
│
└─ Multi-role? → /cs:boardroom
↓
6-phase deliberation (Phase 2 isolation)
↓
/cs:decide → decision-logger (two-layer memory)
↓
/cs:execute → 90-day plan
Integration Points
- Existing 33 c-level skills — wrapped, not replaced
- decision-logger — every
/cs:decide writes here
- chief-of-staff — routing layer the agent orchestrates
- board-meeting — protocol the
/cs:boardroom command runs
- llm-wiki — optional persistent memory bridge (see
../../references/llm-wiki-bridge.md)
- executive-mentor — adversarial
/em:* commands stack cleanly on top
Design Principles
- Voice is bookended, analysis is neutral.
- Artifacts over chat. Every command produces a Markdown artifact the next command consumes.
- Phase 2 isolation in boardroom. Independent thinking before cross-examination.
- Graceful degradation.
/cs:cross-eval falls back to Claude-only.
- No paid dependencies. All Python tools are stdlib-only.
References
Version: 1.0.0
Last Updated: 2026-05-12
Status: Production Ready
Source: alirezarezvani/claude-skills → c-level-advisor/c-level-agents/skills/c-level-agents/SKILL.md
1---2name: c-level-agents3description: Founder-mode executive team. 13 cs-* C-suite agents (CFO, CMO, CRO, CPO, COO, CHRO, CISO, GC, CDO, CAIO, CCO, VPE, Chief of Staff) and 21 /cs:* slash commands for forcing-question office hours, multi-role boardroom deliberation, strategic sprint pipeline, and meta routing. Use when the founder needs a virtual executive team, when invoking /cs:* commands, or when orchestrating multi-role decisions.4---5
6
7# c-level-agents — Founder-Mode Executive Team
8
9A virtual C-suite delivered through slash commands and persona agents.
10
11## Keywords
12
13founder mode, virtual c-suite, executive team, boardroom, office hours, cfo review, cmo review, strategic sprint, decision logging, cross-model consensus, persona agents, chief of staff, forcing questions
14
15## What This Plugin Provides
16
17### 13 cs-* Agents (in `agents/`)
18
19Each agent wraps an existing c-level skill and adds:
20- A distinct cognitive voice (numerate skeptic, narrative-first, etc.)
21- Forcing questions specific to the role
22- Workflow orchestration tied to skill Python tools
23- Output template: Bottom Line → What → Why → How to Act → Your Decision
24
25See `../../references/persona-voices.md` for voice specs.
26
27### 21 /cs:* Slash Commands (in `skills/`)
28
29**Forcing-question office hours (12):**
30- `/cs:office-hours` — YC-style 6-question intake
31- `/cs:cfo-review` — unit economics, runway, dilution
32- `/cs:cmo-review` — ICP, CAC payback, positioning
33- `/cs:cpo-review` — RICE, JTBD, North Star, PMF
34- `/cs:cro-review` — pipeline coverage, win rate, NRR
35- `/cs:cto-review` — architecture risk, scaling cliff
36- `/cs:ciso-review` — threat model, blast radius, compliance
37- `/cs:gc-review` — contracts, IP, regulatory, term sheets
38- `/cs:cdo-review` — training-data rights, data products, data assets
39- `/cs:caio-review` — model selection, evals, AI risk, AI costs
40- `/cs:cco-review` — GRR/NRR decomposition, churn root cause, CS coverage
41- `/cs:vpe-review` — DORA metrics, cycle time, eng hiring funnel, team structure
42
43**Strategic sprint pipeline (5):**
44- `/cs:brief` → `/cs:boardroom` → `/cs:decide` → `/cs:execute` → `/cs:post-mortem`
45
46**Meta + safety (4):**
47- `/cs:founder-mode` — auto-routes to the right C-role
48- `/cs:onboard` — founder interview → `company-context.md`
49- `/cs:cross-eval` — multi-model consensus
50- `/cs:freeze` — cooldown lock on a decision
51
52## Quick Start
53
54```
55/cs:onboard # populate company context first
56/cs:office-hours "should we hire a VP Sales?"
57/cs:founder-mode "runway pressure" # auto-routes to CFO
58/cs:boardroom briefs/pricing-v3.md # full panel
59```
60
61## Architecture
62
63```
64User question
65 │
66 ├─ Single-role? → cs-{role}-advisor agent
67 │ ↓
68 │ /cs:{role}-review command (forcing Qs)
69 │ ↓
70 │ Skill tools + references
71 │ ↓
72 │ Bottom Line + Memo
73 │
74 └─ Multi-role? → /cs:boardroom
75 ↓
76 6-phase deliberation (Phase 2 isolation)
77 ↓
78 /cs:decide → decision-logger (two-layer memory)
79 ↓
80 /cs:execute → 90-day plan
81```
82
83## Integration Points
84
85- **Existing 33 c-level skills** — wrapped, not replaced
86- **decision-logger** — every `/cs:decide` writes here
87- **chief-of-staff** — routing layer the agent orchestrates
88- **board-meeting** — protocol the `/cs:boardroom` command runs
89- **llm-wiki** — optional persistent memory bridge (see `../../references/llm-wiki-bridge.md`)
90- **executive-mentor** — adversarial `/em:*` commands stack cleanly on top
91
92## Design Principles
93
941. **Voice is bookended, analysis is neutral.**
952. **Artifacts over chat.** Every command produces a Markdown artifact the next command consumes.
963. **Phase 2 isolation in boardroom.** Independent thinking before cross-examination.
974. **Graceful degradation.** `/cs:cross-eval` falls back to Claude-only.
985. **No paid dependencies.** All Python tools are stdlib-only.
99
100## References
101
102- [persona-voices.md](../../references/persona-voices.md)
103- [llm-wiki-bridge.md](../../references/llm-wiki-bridge.md)
104- [Parent c-level CLAUDE.md](../../../CLAUDE.md)
105- [Existing executive-mentor sibling](../../../executive-mentor/)
106
107---
108
109**Version:** 1.0.0
110**Last Updated:** 2026-05-12
111**Status:** Production Ready
112
113---
114
115**Source:** [`alirezarezvani/claude-skills`](https://github.com/alirezarezvani/claude-skills) → `c-level-advisor/c-level-agents/skills/c-level-agents/SKILL.md`