CxOPack
Getting started

Quickstart

Zero to first workflow in 5 minutes. Works regardless of which kit(s) you purchased, and regardless of which AI tool you use.

#1. Accept the GitHub invite

After purchase, GitHub emails you an invitation per kit — e.g. to cxopack/cxopack-ceo. Accept each. Then clone locally:

bash
git clone git@github.com:cxopack/cxopack-<slug>.git .cxopack-<slug>

#2. Install in your AI tool

Claude Code / Claude Desktop

bash
mkdir -p .claude/skills .claude/agents .claude/commands
cp -r .cxopack-<slug>/claude/skills/*    .claude/skills/
cp -r .cxopack-<slug>/claude/subagents/* .claude/agents/   2>/dev/null || true
cp -r .cxopack-<slug>/claude/commands/*  .claude/commands/ 2>/dev/null || true

Restart Claude Code. Skills auto-register. Trigger by natural language ("plan my week") or slash command (/ceo-weekly).

ChatGPT (Custom GPT)

  1. ChatGPT → Explore GPTsCreate → Configure tab.
  2. Open chatgpt/custom-gpt.md from the kit repo. Paste its contents into Instructions.
  3. Copy the Conversation starters listed at the bottom of the file into the conversation-starters field.
  4. Save. Use the Custom GPT. Click a starter or type a trigger phrase.
Bonus
Upload the files in claude/skills/ as Knowledge files on the Custom GPT — the GPT references them verbatim, giving you skill-level precision inside ChatGPT.

Cursor / Windsurf

bash
mkdir -p .cursor/rules
cp .cxopack-<slug>/cursor/rules/*.mdc .cursor/rules/

Rules auto-load next time you open the project. They enforce the role's discipline while you edit matching globs (finance/ for CFO, docs/adr/ for CTO, etc.).

Any other LLM

Open prompts/main.md. Copy-paste into Gemini, Mistral, DeepSeek, or any LLM. Every workflow inside is self-contained.

#3. Connect your MCPs (recommended)

Skills are dramatically more useful when they can read your actual data. Install 1–2 MCP servers per kit — top picks below. Full install guides live on each kit walkthrough.

  • CEO: Notion (decision log + board-update drafts)
  • CTO: GitHub (code-review reads diffs directly)
  • CFO: Stripe (saas-metrics reads live subscription data)
  • Sales: HubSpot or Pipedrive (pipeline-review reads live deals)
  • CMO: Plausible or GA (content grounded in real traffic)
No MCP yet?
MCP is Anthropic's standard for AI ↔ software connections. Setup guide at modelcontextprotocol.io. ChatGPT uses Actions (OpenAPI) for the same capability.

#4. Run your first workflow

Pick the lowest-friction skill for your kit and run it now. 60% of the value comes from running the ritual consistently — don't wait for a perfect moment.

  • CEO: /ceo-weekly — Monday planning in 15 min
  • CTO: adr — document one decision you made last month
  • CFO: saas-metrics — feed Stripe export, get real MRR/churn/NRR
  • Sales: icp-workshop — sharpen ICP, set disqualifiers
  • CMO: positioning — rewrite your one-liner

#Next: per-role walkthroughs

Each kit's full walkthrough covers the review prompts, every MCP, the daily/weekly/monthly cadence, and every skill with trigger / when / steps / example / pitfalls. Start with the CEO Kit →