Master the AI operating system that transforms Claude Code into a full creative studio. 25 commands, 80+ skills, swarm intelligence, and auto-activation. The definitive guide.

Understand what ACOS is, how it works, and how to start using it to transform your creative workflow.
The system behind 12,000+ AI songs, this website, and enterprise AI projects.
Agentic Creator OS (ACOS) transforms Claude Code from a chat tool into a full operating system for creators. Version 6 introduces a smart router (/acos), auto-activating skills, and a hooks system for quality enforcement. You get 25 commands, 80+ skills, 40+ agents, and 8 orchestrated workflows—all without writing code. Install in 5 minutes. Start with /acos. Free on GitHub.
Agentic Creator OS is a superintelligent operating system for generative creators—a complete intelligence layer that transforms how you work with AI.
Think of it as the difference between:
If you've ever felt frustrated by:
...then ACOS is the solution.
Most creators use AI like this:
This creates:
ACOS gives you:
The same system runs my:

Version 7 centers on /acos—the single entry point to everything.
/acos
That's it. The smart router:
Examples:
/acos "write a blog post about AI agents"
→ Routes to /article-creator
→ Auto-loads content-strategy skill
/acos "make a track about productivity"
→ Routes to /create-music
→ Auto-loads suno-ai-mastery skill
/acos "build a login feature"
→ Routes to /spec
→ Auto-loads implementation-planning skill
In v5, you had to manually invoke skills with /skill suno-ai-mastery. In v6, skills activate automatically based on context.
The skill-rules.json file contains 22 activation rules:
{
"rules": [
{
"skill": "content-strategy",
"triggers": {
"keywords": ["blog", "article", "content", "write"],
"filePatterns": ["content/**/*.mdx"],
"commands": ["/article-creator", "/factory"]
},
"priority": "high"
}
]
}
When you say "write a blog post," ACOS:
content-strategy skill automatically/article-creatorHooks are automated checkpoints that run at key moments:
| Hook Type | When It Runs | What It Does |
|---|---|---|
| SessionStart | When you open Claude | Loads ACOS context |
| PreToolUse | Before writing files | Checks brand voice |
| PostToolUse | After writing files | Validates quality |
| Notification | When patterns match | Suggests relevant skills |
Example: The brand voice hook catches phrases like "synergy" or "leverage" and suggests alternatives before you publish.
ACOS is built on 7 foundational pillars that work together:

What: 630+ specialized knowledge modules Purpose: Domain expertise that loads on-demand
Skills are organized by category:
Each skill follows the 500-Line Rule:
SKILL.md: <500 lines (core instructions)
resources/patterns.md: <500 lines (detailed patterns)
resources/examples.md: <500 lines (real examples)
This enables progressive disclosure—Claude loads only what's needed, when it's needed.

What: 40+ specialized AI personas Purpose: Experts for specific domains
Key agents include:
| Agent | Domain | When to Use |
|---|---|---|
| Starlight Orchestrator | Meta-coordination | Complex multi-step tasks |
| Visionary | Strategy, foresight | Big decisions |
| Creation Engine | Content, products | Writing and publishing |
| Technical Translator | AI education | Explaining complex topics |
| Frequency Alchemist | Music, audio | Suno production |
Agents can work individually or as a weighted synthesis:
Visionary (30%) + Creation Engine (25%) + Technical Translator (25%) + Frequency Alchemist (20%)
= Coordinated response blending all perspectives
What: 8 orchestrated pipelines Purpose: Complex multi-step operations
| Workflow | Pattern | Example |
|---|---|---|
| Content Creation | Pipeline | Research → Write → Edit → Publish |
| Social Distribution | Parallel | LinkedIn + Twitter + Newsletter simultaneously |
| Code Review | Multi-agent | 3 reviewers check different aspects |
| Strategic Decision | Weighted | Experts vote with different weights |
What: 5+ external tool integrations Purpose: Connect Claude to the outside world
| Server | Capability |
|---|---|
| Browser (Playwright) | Web automation, testing, screenshots |
| Memory | Persistent knowledge graphs |
| Sequential Thinking | Complex multi-step reasoning |
| Lyric Genius | Suno prompt engineering |
| Nano Banana | Image generation via Gemini |
What: 20+ reusable content structures Purpose: Consistent quality without reinventing
Templates include:
What: Project-specific customizations Purpose: Different voices for different projects
Each instance configures:
What: Cross-cutting coordination Purpose: The orchestrator of orchestrators
The Starlight Orchestrator sits above all other components:
ACOS v6 ships with 25 commands across 5 categories:
| Command | Description |
|---|---|
/article-creator | Guided blog article creation |
/create-music | Suno music production pipeline |
/infogenius | Research-grounded image generation |
/generate-images | Direct image generation |
/generate-social | Platform-optimized social content |
/factory | Full pipeline: research → publish |
/products-creation | Digital products and courses |
/author-team | Book writing with AI team |
| Command | Description |
|---|---|
/starlight-architect | Enterprise AI system design |
/council | Multi-agent strategic council |
/research | Daily intelligence operations |
/plan-week | Weekly content planning |
/harvest | Prompt discovery and collection |
| Command | Description |
|---|---|
/spec | Spec-driven feature development |
/nextjs-deploy | Next.js + Vercel deployment |
/ux-design | UI/UX design workflows |
/automation-dev | MCP servers and automation |
| Command | Description |
|---|---|
/acos | Smart router (single entry point) |
/planning-with-files | Manus-style file planning |
/inventory-status | Content inventory dashboard |
/mcp-status | MCP server health |
/publish | Content publishing with quality gates |
| Command | Description |
|---|---|
/review-content | Content quality review |
/classify-content | Content routing and classification |
/polish-content | Polish to publish-ready |
# Clone the repo
git clone https://github.com/frankxai/agentic-creator-os.git
cd agentic-creator-os
# Run the installer
./install.sh
# Open Claude Code
claude
# Start using ACOS
/acos
# Clone
git clone https://github.com/frankxai/agentic-creator-os.git
cd agentic-creator-os
# Copy commands to user level
cp .claude/commands/*.md ~/.claude/commands/
# Copy skills
cp -r .claude/skills/* ~/.claude/skills/
# Open Claude Code
claude
/acos
After installation, try these:
/acos # See all 25 commands
/article-creator # Write your first blog post
/create-music # Produce a track with Suno
/inventory-status # See content dashboard
/starlight-architect # Design an AI system
Pain: Overwhelmed by AI tools, no coherent system
Solution: Pre-built skills and workflows for immediate productivity
Start With: /acos → pick from menu
Pain: AI outputs sound generic, not like me
Solution: Brand-aware agents and voice enforcement hooks
Start With: /article-creator with brand instance
Pain: Need scalable AI for teams
Solution: Orchestration patterns and department structures
Start With: /starlight-architect for system design
Pain: Want to build custom AI workflows
Solution: MCP integrations and custom skill creation
Start With: /automation-dev for MCP servers
Pain: Content production bottleneck
Solution: End-to-end content pipeline
Start With: /factory for research → publish
| Feature | v5 | v6 |
|---|---|---|
| Entry Point | Multiple commands | /acos smart router |
| Skill Activation | Manual /skill | Auto-activation |
| Hooks | None | 4 categories |
| Commands in Repo | 14 | 25 (100%) |
| GitHub Sources | 5 | 14 credited |
v6 philosophy: The Front Door
| Tool | Approach | ACOS Advantage |
|---|---|---|
| ChatGPT | Single model chat | Multi-agent orchestration |
| Claude.ai | Web chat interface | File-based persistence |
| Cursor | Code editor focus | Full creator stack |
| LangChain | Python code required | Configuration-first, no code |
| CrewAI | Developer-only | Creator-friendly, markdown-based |
ACOS unique value:
Agentic Creator OS (ACOS) is an open-source operating system layer for Claude Code that adds 25 commands, 80+ skills, 40+ agents, and automated workflows to transform AI from a chat tool into a production studio.
Yes, ACOS is completely free and open source on GitHub. No subscriptions, no paywalls.
No. ACOS is configuration-first. All skills are Markdown files. All rules are JSON. You edit text files, not code.
5-10 minutes for the quick install. The installer copies all files to the right locations.
ACOS is built specifically for Claude Code. Some patterns could be adapted for other systems, but the commands and skills are Claude-native.
Yes. Use the instances system to create separate brand configurations for each client while keeping the same underlying skills.
Copy the templates/SKILL_TEMPLATE.md file, fill in your patterns, and save to the skills directory. See the Building Custom Skills guide.
Skills are knowledge modules—they tell Claude what to know. Agents are personas—they tell Claude how to behave.
Yes! Fork the repo, add your skills or improvements, and submit a pull request. See CREDITS.md for contribution guidelines.
Ready to start? Here's your path:
Agentic Creator OS v6.0 — The Operating System for Golden Age Creators
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.