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
8 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.
17 /cs:* Slash Commands (in skills/)
Forcing-question office hours (8):
/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
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 28 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
1---2name: c-level-agents3description: Founder-mode executive team. 8 cs-* C-suite agents (CFO, CMO, CRO, CPO, COO, CHRO, CISO, Chief of Staff) and 17 /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.4license: MIT5---67# c-level-agents — Founder-Mode Executive Team89A virtual C-suite delivered through slash commands and persona agents.1011## Keywords1213founder 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 questions1415## What This Plugin Provides1617### 8 cs-* Agents (in `agents/`)1819Each 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 role22- Workflow orchestration tied to skill Python tools23- Output template: Bottom Line → What → Why → How to Act → Your Decision2425See `../references/persona-voices.md` for voice specs.2627### 17 /cs:* Slash Commands (in `skills/`)2829**Forcing-question office hours (8):**30- `/cs:office-hours` — YC-style 6-question intake31- `/cs:cfo-review` — unit economics, runway, dilution32- `/cs:cmo-review` — ICP, CAC payback, positioning33- `/cs:cpo-review` — RICE, JTBD, North Star, PMF34- `/cs:cro-review` — pipeline coverage, win rate, NRR35- `/cs:cto-review` — architecture risk, scaling cliff36- `/cs:ciso-review` — threat model, blast radius, compliance37- `/cs:gc-review` — contracts, IP, regulatory, term sheets3839**Strategic sprint pipeline (5):**40- `/cs:brief` → `/cs:boardroom` → `/cs:decide` → `/cs:execute` → `/cs:post-mortem`4142**Meta + safety (4):**43- `/cs:founder-mode` — auto-routes to the right C-role44- `/cs:onboard` — founder interview → `company-context.md`45- `/cs:cross-eval` — multi-model consensus46- `/cs:freeze` — cooldown lock on a decision4748## Quick Start4950```51/cs:onboard # populate company context first52/cs:office-hours "should we hire a VP Sales?"53/cs:founder-mode "runway pressure" # auto-routes to CFO54/cs:boardroom briefs/pricing-v3.md # full panel55```5657## Architecture5859```60User question61 │62 ├─ Single-role? → cs-{role}-advisor agent63 │ ↓64 │ /cs:{role}-review command (forcing Qs)65 │ ↓66 │ Skill tools + references67 │ ↓68 │ Bottom Line + Memo69 │70 └─ Multi-role? → /cs:boardroom71 ↓72 6-phase deliberation (Phase 2 isolation)73 ↓74 /cs:decide → decision-logger (two-layer memory)75 ↓76 /cs:execute → 90-day plan77```7879## Integration Points8081- **Existing 28 c-level skills** — wrapped, not replaced82- **decision-logger** — every `/cs:decide` writes here83- **chief-of-staff** — routing layer the agent orchestrates84- **board-meeting** — protocol the `/cs:boardroom` command runs85- **llm-wiki** — optional persistent memory bridge (see `../references/llm-wiki-bridge.md`)86- **executive-mentor** — adversarial `/em:*` commands stack cleanly on top8788## Design Principles89901. **Voice is bookended, analysis is neutral.**912. **Artifacts over chat.** Every command produces a Markdown artifact the next command consumes.923. **Phase 2 isolation in boardroom.** Independent thinking before cross-examination.934. **Graceful degradation.** `/cs:cross-eval` falls back to Claude-only.945. **No paid dependencies.** All Python tools are stdlib-only.9596## References9798- [persona-voices.md](../../references/persona-voices.md)99- [llm-wiki-bridge.md](../../references/llm-wiki-bridge.md)100- [Parent c-level CLAUDE.md](../../../CLAUDE.md)101- [Existing executive-mentor sibling](../../../executive-mentor/)102103---104105**Version:** 1.0.0106**Last Updated:** 2026-05-12107**Status:** Production Ready