Set up your own AI operating system in 30 minutes. Step-by-step guide to installing departments, MCP servers, and running your first automated workflow.

Set up your own Agentic Creator OS and run your first automated workflow.
The same system running my website, my music production, and my enterprise projects.
Clone the repo. Run the installer. Build the MCP servers. Configure Claude Code. Create your CLAUDE.md context file. Takes 30-60 minutes. By the end, you have 5 AI departments—Content, Dev, Design, Marketing, Business—working together on your projects. This is the exact setup I use to manage 12,000+ Suno songs, a Next.js website, and enterprise consulting.
This guide walks you through setting up the Agentic Creator OS from scratch. I built this after realizing my Claude Code sessions were getting too fragmented—different contexts, different skills, no coherent system. Now everything lives in one place.
Prerequisites:
Let's build.
The Agentic Creator OS transforms Claude Code from a chat tool into a full operating system with:
Think of it as having 5 AI employees that work together to run your projects.
First, clone the repository:
# Clone the repo
git clone https://github.com/frankxai/agentic-creator-os.git
# Navigate into it
cd agentic-creator-os
# Look around
ls -la
You should see:
departments/ - The 5 AI department configurationsmcp-servers/ - Local tools for Claude Codeskills/ - Workflow definitionsworkflows/ - Automation templatesinstall.sh - Setup scriptThe installer copies configurations to your Claude Code setup:
# Make the script executable
chmod +x install.sh
# Run it
./install.sh
This installs:
~/.claude/skills/~/.claude/agents/~/.claude/workflows/Verification: Check that files were copied:
ls ~/.claude/skills/
# Should show: agentic-creator-os, content-department, etc.
MCP (Model Context Protocol) servers give Claude Code local superpowers. Let's build them:
# Install dependencies
npm install
# Build all servers
npm run build:all
This compiles 6 MCP servers:
Note: Building may take 2-5 minutes depending on your machine.
Now we need to tell Claude Code about our new servers. Open your Claude Code settings:
# Open Claude Code settings
claude config
Or edit directly at ~/.config/claude/settings.json:
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": [
"path/to/agentic-creator-os/mcp-servers/filesystem-mcp/build/index.js"
]
},
"database": {
"command": "node",
"args": [
"path/to/agentic-creator-os/mcp-servers/database-mcp/build/index.js"
]
}
// Add other servers as needed
}
}
Replace path/to/ with your actual installation path.
This is where the magic happens. The CLAUDE.md file is your AI's context - everything it needs to know about YOU.
Create a file in your project root:
touch CLAUDE.md
Add your context:
# My Intelligence System
## Who I Am
I'm a [your role] building [your project].
## Current Project
- Name: [Project Name]
- Goal: [What you're building]
- Stack: [Your technologies]
## My Preferences
- I prefer [X] over [Y]
- Always [do this thing]
- Never [do that thing]
## Active Tasks
- [ ] [Task 1]
- [ ] [Task 2]
Pro tip: The more context you add, the smarter your AI becomes. Update this file regularly.
Let's test the Content department. Open Claude Code in your project:
claude
Then try:
> Help me write a blog post outline about [your topic]
Claude should:
Try more commands:
Now let's run a complete workflow. If you have the /publish skill installed:
> /publish "My First Blog Post"
This triggers:
Note: Some workflows require additional configuration (API keys, deployment settings).
The real power comes from customization. Here's what to explore:
Create custom skills in ~/.claude/skills/:
# /my-custom-workflow
When activated, do:
1. [Step 1]
2. [Step 2]
3. [Step 3]
Edit department configs in departments/ to match your workflow.
Add templates for common tasks in workflows/.
npm run build:all~/.claude/skills/./install.shNow that you have the basics working:
In this guide, you:
Total time: ~30-60 minutes
The best way to learn is to use it. Pick ONE thing you need to do today and try it with your new AI OS:
Start small. Build the habit. Watch your productivity compound.
30-60 minutes for basic installation. Another hour or two to customize CLAUDE.md and create your first custom skills. The system becomes more valuable the more context you feed it.
Basic command line familiarity is required (cd, npm, git clone). You don't need to write code—just follow the steps. The MCP servers come pre-built.
Raw Claude Code starts fresh each session. Agentic Creator OS gives it persistent context about you, your projects, and your preferences. It's the difference between a smart assistant and one that actually knows your work.
The current version is designed for solo creators. Team features (shared contexts, role-based access) are on the roadmap. For now, each team member would run their own instance.
Open an issue on GitHub. The community is active and I respond to questions directly.
Related:
Read on FrankX.AI — AI Architecture, Music & Creator Intelligence
Join 1,000+ creators and architects receiving weekly field notes on AI systems, production patterns, and builder strategy.
No spam. Unsubscribe anytime.