agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
/cs:founder-mode <question> — Auto-routes any founder question to the right C-role advisor or to /cs:boardroom for multi-role topics. The single-command entry point. Use when a founder asks any strategic question without knowing which advisor or command fits — e.g. 'runway
$ npx -y skills add alirezarezvani/claude-skills --skill founder-mode --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/founder-modeContext preview
The summary Claude sees to decide when to auto-load this skill.
/cs:founder-mode <question> — Auto-routes any founder question to the right C-role advisor or to /cs:boardroom for multi-role topics. The single-command entry point. Use when a founder asks any strategic question without knowing which advisor or command fits — e.g. 'runway
name: "founder-mode" description: "/cs:founder-mode <question> — Auto-routes any founder question to the right C-role advisor or to /cs:boardroom for multi-role topics. The single-command entry point. Use when a founder asks any strategic question without knowing which advisor or command fits — e.g. 'runway pressure' routes to the CFO, 'gross retention dropped' routes to the CCO."
**Command:** `/cs:founder-mode <question>`
The single command a founder needs to remember. Routes the question to the right C-role automatically, or triggers `/cs:boardroom` if multi-role.
This is the **killer command** — the answer to "I don't know which slash command to use." Type the question; the system figures out the room.
The router (via `cs-chief-of-staff`) does keyword + intent matching:
| Signal in question | Route | |---|---| | burn, runway, fundraise, dilution, model, LTV, CAC | `cs-cfo-advisor` | | pipeline, win rate, forecast, quota, ramp, sales motion | `cs-cro-advisor` | | positioning, ICP, message, brand, channel, campaign | `cs-cmo-advisor` | | roadmap, PMF, JTBD, North Star, RICE, kill | `cs-cpo-advisor` | | cadence, OKR, scorecard, DRI, operating system, rhythm | `cs-coo-advisor` | | hiring, comp, ladder, level, attrition, eNPS, equity | `cs-chro-advisor` | | security, threat, breach, compliance, audit, SOC 2 | `cs-ciso-advisor` | | architecture, scaling, tech debt, SLO, latency | `cs-cto-advisor` | | contract, IP, term sheet, regulator, license | `cs-general-counsel-advisor` | | retention, GRR, NRR, churn, customer success, CSM, time-to-value, renewals | `cs-cco-advisor` | | training data, data rights, consent, data asset, warehouse, lakehouse, data mesh | `cs-cdo-advisor` | | model selection, eval, hallucination, AI risk, EU AI Act, fine-tune, build vs buy AI | `cs-caio-advisor` | | DORA, cycle time, deploy frequency, eng hiring funnel, team topology, delivery throughput | `cs-vpe-advisor` | | strategy, vision, board, M&A, raise, exit | `cs-ceo-advisor` | | **2+ signals from different roles** | `/cs:boardroom` | | **ambiguous** | `/cs:office-hours` first, then route |
1. Parse the question for role signals 2. If exactly one role: invoke that cs-* agent directly 3. If 2+ roles: build a brief via `/cs:brief` and trigger `/cs:boardroom` 4. If ambiguous / no signal match: trigger `/cs:office-hours` to force the founder to sharpen 5. Log the routing decision (raw layer) via `decision-logger`
The router emits one of three responses:
**Routing:** cs-cfo-advisor **Why:** Question hits burn rate and unit economics. **Next:** Invoking cs-cfo-advisor with company-context loaded. [Advisor's response follows]
**Routing:** /cs:boardroom **Why:** Question touches CFO + CMO + CPO (pricing change has finance, positioning, and product implications). **Next:** Building brief via /cs:brief, then running boardroom. Brief saved: ~/.claude/briefs/2026-05-12-pricing-v3.md Run: /cs:boardroom ~/.claude/briefs/2026-05-12-pricing-v3.md
**Routing:** /cs:office-hours
**Why:** Question is too broad ("should we grow faster?"). Need framing before any advisor can help.
**Next:** Six-question intake.
[Office hours questions follow]gstack requires the founder to know all 23 slash commands and pick the right one. That's a cognitive tax. `/cs:founder-mode` collapses that to one — the system picks. This is also where persistent memory pays off: with company-context.md + decision-logger, the router knows what's already been decided and won't re-litigate.
/cs:founder-mode "should we raise a Series B now or wait 6 months?" → boardroom (CFO + CEO + CRO touched) /cs:founder-mode "the win rate dropped 20% this month" → cs-cro-advisor /cs:founder-mode "gross retention dropped 5 points this quarter" → cs-cco-advisor /cs:founder-mode "let's hire a VP Marketing" → boardroom (CHRO + CMO + CFO touched) /cs:founder-mode "should we be growing faster?" → /cs:office-hours (too ambiguous)
---
**Version:** 1.0.0
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…