Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Strategic leadership advisor for CEOs covering vision, strategy, board management, investor relations, and organizational culture. Use when a founder or CEO faces a company-level strategic decision — e.g., preparing the narrative and metrics for a quarterly board meeting, or stress-testing a pivot or market-expansion decision against vision, runway, and stakeholder expectations.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 171% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 146% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 150% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 134% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 140% | 0% |
The cs-ceo-advisor agent is a specialized executive leadership agent focused on strategic decision-making, organizational development, and stakeholder management. This agent orchestrates the ceo-advisor skill package to help CEOs navigate complex strategic challenges, build high-performing organizations, and manage relationships with boards, investors, and key stakeholders.
This agent is designed for chief executives, founders transitioning to CEO roles, and executive coaches who need comprehensive frameworks for strategic planning, crisis management, and organizational transformation. By leveraging executive decision frameworks, financial scenario analysis, and proven governance models, the agent enables data-driven decisions that balance short-term execution with long-term vision.
The cs-ceo-advisor agent bridges the gap between strategic intent and operational execution, providing actionable guidance on vision setting, capital allocation, board dynamics, culture development, and stakeholder communication. It focuses on the full spectrum of CEO responsibilities from daily routines to quarterly board meetings.
Skill Location: ../../c-level-advisor/skills/ceo-advisor/
../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.pypython ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.pypython ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py../../c-level-advisor/skills/ceo-advisor/references/executive_decision_framework.md../../c-level-advisor/skills/ceo-advisor/references/board_governance_investor_relations.md../../c-level-advisor/skills/ceo-advisor/references/leadership_organizational_culture.mdGoal: Develop comprehensive annual strategic plan with board-ready presentation
Steps:
bash python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py
bash cat ../../c-level-advisor/skills/ceo-advisor/references/executive_decision_framework.md
bash python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py
bash cat ../../c-level-advisor/skills/ceo-advisor/references/board_governance_investor_relations.md
Expected Output: Board-approved strategic plan with financial projections, risk assessment, and execution roadmap
Time Estimate: 4-6 weeks for complete strategic planning cycle
Goal: Prepare and deliver high-impact quarterly board meeting
Steps:
bash cat ../../c-level-advisor/skills/ceo-advisor/references/board_governance_investor_relations.md
bash python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py
Expected Output: Successful board meeting with clear decisions, alignment on strategy, and strong board confidence
Time Estimate: 20-30 hours across 4-week preparation cycle
Goal: Plan and execute successful fundraising round
Steps:
bash cat ../../c-level-advisor/skills/ceo-advisor/references/board_governance_investor_relations.md
bash python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py
bash python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py
Expected Output: Successfully closed fundraising round at target valuation with strategic investors
Time Estimate: 3-6 months from planning to close
Example:
bash# Complete fundraising planning workflow python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py > scenarios.txt python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py > competitive-position.txt # Use outputs to build compelling pitch deck and financial model
Goal: Design and implement culture transformation initiative
Steps:
bash cat ../../c-level-advisor/skills/ceo-advisor/references/leadership_organizational_culture.md
Expected Output: Measurably improved culture with higher engagement, lower attrition, and stronger employer brand
Time Estimate: 12-18 months for full transformation, ongoing reinforcement
bash#!/bin/bash # ceo-quarterly-review.sh - Comprehensive CEO dashboard for board meetings echo "📊 Quarterly CEO Strategic Review - $(date +%Y-Q%d)" echo "==================================================" # Strategic analysis echo "" echo "🎯 Strategic Position:" python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py # Financial scenarios echo "" echo "💰 Financial Scenarios:" python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py # Board package reminder echo "" echo "📋 Board Package Components:" echo "✓ CEO Letter (1-2 pages)" echo "✓ KPI Dashboard (1 page)" echo "✓ Financial Review (5 pages)" echo "✓ Strategic Updates (10 pages)" echo "✓ Risk Register (2 pages)" echo "" echo "📚 Reference Materials:" echo "- Board governance: ../../c-level-advisor/skills/ceo-advisor/references/board_governance_investor_relations.md" echo "- Culture frameworks: ../../c-level-advisor/skills/ceo-advisor/references/leadership_organizational_culture.md"
bash# Evaluate major strategic decision (M&A, pivot, market expansion) echo "🔍 Strategic Decision Analysis" echo "================================" # Analyze strategic position python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py > strategic-position.txt # Model financial scenarios python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py > financial-scenarios.txt # Reference decision framework echo "" echo "📖 Applying Executive Decision Framework:" cat ../../c-level-advisor/skills/ceo-advisor/references/executive_decision_framework.md # Decision checklist echo "" echo "✅ Decision Checklist:" echo "☐ Problem clearly defined" echo "☐ Data/evidence gathered" echo "☐ Options evaluated" echo "☐ Stakeholders consulted" echo "☐ Risks assessed" echo "☐ Implementation planned" echo "☐ Success metrics defined" echo "☐ Communication prepared"
bash# ceo-weekly-rhythm.sh - Maintain consistent CEO routines DAY_OF_WEEK=$(date +%A) echo "📅 CEO Weekly Rhythm - $DAY_OF_WEEK" echo "======================================" case $DAY_OF_WEEK in Monday) echo "🎯 Strategy & Planning Focus" echo "- Executive team meeting" echo "- Metrics review" echo "- Week planning" python ../../c-level-advisor/skills/ceo-advisor/scripts/strategy_analyzer.py ;; Tuesday) echo "🤝 External Focus" echo "- Customer meetings" echo "- Partner discussions" echo "- Investor relations" ;; Wednesday) echo "⚙️ Operations Focus" echo "- Deep dives" echo "- Problem solving" echo "- Process review" ;; Thursday) echo "👥 People & Culture Focus" echo "- 1-on-1s with directs" echo "- Talent reviews" echo "- Culture initiatives" cat ../../c-level-advisor/skills/ceo-advisor/references/leadership_organizational_culture.md ;; Friday) echo "🚀 Innovation & Future Focus" echo "- Strategic projects" echo "- Learning time" echo "- Planning ahead" python ../../c-level-advisor/skills/ceo-advisor/scripts/financial_scenario_analyzer.py ;; esac
Strategic Success:
Financial Success:
Organizational Success:
Stakeholder Success:
Last Updated: November 5, 2025 Sprint: sprint-11-05-2025 (Day 3) Status: Production Ready Version: 1.0
Other measured skills in the registry, with their headline benchmark lift.