The skills in this repo work in any agent, but with OpenClaw you get the full autonomous CEO OS experience: the agent lives in your Telegram/WhatsApp/Discord, proactively sends you insights, runs daily recaps, tracks hypotheses across sessions, and nudges you when you're drifting from the constraint. It's not a tool you open — it's a Chief of Staff that works in the background.
- OpenClaw installed and running
- A messaging channel connected (Telegram, WhatsApp, Discord, or Slack)
- An AI provider configured (OpenAI, Anthropic, or Google)
Installs all 48 skills, bootstrap files, and memory system in one command:
git clone https://github.com/CodeAlive-AI/ceo-ai-os.git
cd ceo-ai-os/openclaw
./install.shgit clone https://github.com/CodeAlive-AI/ceo-ai-os.git
cd ceo-ai-os
# Copy bootstrap files
scp -r openclaw/workspace/* user@server:~/.openclaw/workspace/
# Copy all skills
scp -r skills/* user@server:~/.openclaw/workspace/skills/
# Fix permissions
ssh user@server 'chown -R openclaw:openclaw ~/.openclaw/workspace/'If you only want specific skills:
cd ceo-ai-os
# Copy bootstrap files (required)
cp openclaw/workspace/SOUL.md ~/.openclaw/workspace/
cp openclaw/workspace/AGENTS.md ~/.openclaw/workspace/
cp openclaw/workspace/IDENTITY.md ~/.openclaw/workspace/
cp openclaw/workspace/USER.md ~/.openclaw/workspace/
cp openclaw/workspace/MEMORY.md ~/.openclaw/workspace/
# Copy specific skills
cp -r skills/hypothesis-tracker ~/.openclaw/workspace/skills/
cp -r skills/decision-playbook ~/.openclaw/workspace/skills/
# ... add the ones you want
# Create memory system
mkdir -p ~/.openclaw/workspace/memory/weekly
echo '{"hypotheses": []}' > ~/.openclaw/workspace/memory/hypotheses.jsonUpdate AGENTS.md to list only the skills you installed.
Edit the template files — see CUSTOMIZATION.md for details:
IDENTITY.md— Name your agentUSER.md— Tell it about yourselfMEMORY.md— Fill in your company context (most important step)
Send /new in your chat to load the workspace.
Try saying "run a strategic review of my current positioning" or "show me the decision playbook for changing ICP". The agent should load the skill and walk you through the framework.
The base CEO OS works without external tools. But for full power, you can add:
- PostHog — product analytics (see ../docs/adding-tools.md)
- Exa Search — company/people research
- agent-browser — web browsing
These require mcporter for MCP bridge support.
The CEO OS works best with reasoning-capable models:
- Claude Sonnet 4 or Claude Opus 4 (recommended)
- GPT-4o or o3
- Gemini 2.5 Pro
Simpler models may struggle with multi-step skills like ceo-weekly-review or strategic-review.
- Check that AGENTS.md lists the skills correctly
- Run
/newto reload the workspace - Verify skills are in
~/.openclaw/workspace/skills/
- OpenClaw has a context budget (default ~15,000 chars for bootstrap files)
- Keep MEMORY.md < 3KB, AGENTS.md < 2KB, SOUL.md < 3KB
- Skills load on-demand and don't count toward bootstrap budget
- Check that
memory/directory exists and is writable - After server restarts, verify file permissions:
chown -R openclaw:openclaw ~/.openclaw/workspace/