ワンクリックで
ceo-board
Orchestrates 9-persona CEO Board deliberation for strategic business decisions, with persistent agent expertise files
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Orchestrates 9-persona CEO Board deliberation for strategic business decisions, with persistent agent expertise files
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Apply this skill for Unite-Hub Supabase migrations, PostgREST/Data API visibility, founder-scoped Playwright journeys, or errors such as PGRST205, access=denied, stale Supabase linked refs, or migration history drift. Prevents repeating the SQL/cache/auth loop by enforcing the exact verification sequence for core journeys.
The compass for Unite-Hub's road to /shipit. Defines the single NorthStar (a real, comprehensive, working founder CRM in production, every section GREEN), the binding definition of GREEN, and the No-Invaders Manifest that keeps the build honest and surgical. Consult BEFORE deciding what to build/skip/finish — it resolves "200 ≠ real" temptations and scope-creep pressure. P1, auto-loaded.
Apply this skill WHEN scaffolding a new cron "pull" route that syncs external/derived data into Supabase on a schedule (Vercel cron). Encodes the Unite-Hub cron invariants: CRON_SECRET auth, FOUNDER_USER_ID actor, overlap safety, idempotent upsert, last-sync timestamp, and failure surfacing. Generic `cron-scheduler` covers scheduling; this covers the PULL handler body. P3.
Apply this skill WHEN verifying that a route, page, or integration serves REAL data and not silent mock/placeholder data. Detects the "false-green" failure mode: an endpoint returns 200 (or a page renders) while the underlying data is fabricated because a provider is unconnected. Trigger WHENEVER classifying a section's readiness, reviewing integration wrappers, or before marking anything GREEN. P2 — load on audit/verify tasks.
Manifest-first context isolation — each subagent receives only its scope, never the full codebase
Apply this skill for ANY decision with non-obvious tradeoffs: architectural choices, debugging without a clear root cause, performance strategies, security decisions, feature design with competing constraints, refactoring scope decisions. Forces multi-perspective analysis before committing to a solution. P1 auto-load — always active on complex reasoning tasks.
| name | ceo-board |
| type | skill |
| version | 1.0.0 |
| priority | 5 |
| domain | strategy |
| description | Orchestrates 9-persona CEO Board deliberation for strategic business decisions, with persistent agent expertise files |
The CEO Board Deliberation skill orchestrates multi-agent reasoning for strategic business decisions. It implements IndyDevDan's innovation of templated agent expertise with persistent learning.
Created: 2026-03-24 Framework: CleanExpo/NodeJS-Starter-V1 Agents: 9 specialized board members with persistent expertise
To understand how the board works, review this complete example decision:
File: .pi/ceo-agents/briefs/_EXAMPLE-acquisition-offer.md
What it demonstrates:
Use this example to train new team members on the board's decision process.
Copy the template and fill it out:
cp .pi/ceo-agents/briefs/_TEMPLATE.md \
.pi/ceo-agents/briefs/[YOUR-TOPIC]-[DATE].md
Required sections:
/ceo-begin [YOUR-TOPIC]-[DATE]
The board will:
Find outputs at:
.pi/ceo-agents/
├── memos/[TOPIC]-[DATE].md # Decision summary
├── conversations/[TOPIC]-[DATE].json # Full debate transcript
└── artifacts/[TOPIC]-[DATE].svg # Visual arguments
Perspective: Holistic business lens, execution reality
Questions: Can we execute this? Does it align with strategy? How do we communicate it?
Expertise File: .pi/ceo-agents/expertise/ceo.md
Perspective: Growth, unit economics, expansion
Questions: How does this impact revenue? Is it capital-efficient? What's the market opportunity?
Expertise File: .pi/ceo-agents/expertise/revenue.md
Perspective: Feature prioritization, user value, roadmap
Questions: Does this delight users? How does it fit the roadmap? What's the UX impact?
Expertise File: .pi/ceo-agents/expertise/product-strategist.md
Perspective: System design, feasibility, technical debt
Questions: Is this technically sound? What's the implementation complexity? Scalability concerns?
Expertise File: .pi/ceo-agents/expertise/technical-architect.md
Perspective: Risk identification, blindspots, second-order effects
Questions: What could go wrong? What are we not seeing? When should we say "no"?
Expertise File: .pi/ceo-agents/expertise/contrarian.md
Perspective: Long-term leverage, compound effects, platform thinking
Questions: What compound effects does this create? Will this give us an unfair advantage over time?
Expertise File: .pi/ceo-agents/expertise/compounder.md
Perspective: Unite-Group domain expertise — 7 businesses, MACAS advisory, Brisbane/QLD AUS context
Questions: What do domain experts know about this? Regulatory/compliance concerns (Privacy Act 1988, ATO)?
Expertise File: .pi/ceo-agents/expertise/custom-oracle.md
Perspective: Competitive positioning, market timing, go-to-market
Questions: How does this position us competitively? Is timing right? Market adoption risk?
Expertise File: .pi/ceo-agents/expertise/market-strategist.md
Perspective: Radical innovation, asymmetric bets, breakthrough possibilities
Questions: Is there a bigger opportunity here? What's the moonshot play?
Expertise File: .pi/ceo-agents/expertise/moonshot.md
Each agent has a persistent expertise file that evolves:
ceo.md
├── Role Description — What this agent brings
├── Core Perspectives — Their lens on problems
├── Decision History — Table of all decisions they've participated in
└── Learning Notes — What they've learned over time
Agents update their files with:
| Date | Topic | Position | Outcome | Notes |
|------|-------|----------|---------|-------|
| 24/03/2026 | Acquisition Offer | "Pursue, but negotiate harder" | TBD | Concerned about valuation, team retention |
The board improves over time. Track:
custom-oracle.md current with Unite-Group's evolving context.pi/
├── README.md # PI workspace overview
├── ceo-agents/
│ ├── briefs/
│ │ ├── _TEMPLATE.md # Brief template (copy this)
│ │ ├── _EXAMPLE-acquisition-offer.md # Golden example
│ │ └── [TOPIC]-[DATE].md # Your briefs go here
│ ├── deliberations/
│ │ └── [TOPIC]-[DATE].json # Deliberation records
│ ├── memos/
│ │ └── [TOPIC]-[DATE].md # Decision memos
│ ├── conversations/
│ │ └── [TOPIC]-[DATE].json # Full transcripts
│ ├── artifacts/
│ │ └── [TOPIC]-[DATE].svg # Visual arguments
│ └── expertise/
│ ├── ceo.md
│ ├── revenue.md
│ ├── product-strategist.md
│ ├── technical-architect.md
│ ├── contrarian.md
│ ├── compounder.md
│ ├── custom-oracle.md # Unite-Group domain expertise
│ ├── market-strategist.md
│ └── moonshot.md
└── shared/
└── context/
└── _TEMPLATE.md # Shared business context
The CEO Board integrates with the Unite-Group workflow:
/ceo-begin — Start a board deliberation/swarm-audit — Audit codebase before committing to a technical decision/hey-claude — Load full project context before asking questionsInspired by: IndyDevDan's agent scaling insights Insight: "If you template your engineering, your agents can do exactly what you did. This is the big advantage. When you're not creating prescriptions, workflows, and systems for your agents to repeat, you miss out on all the true leverage."
Last Updated: 24/03/2026 Status: Active