Skip to content
FrankX.AI
CourseModule 1 of 8
1/8
FreeModule 1 of 8

Your AI Foundation

Set up Claude Code, configure your project brain, and understand the framework that powers everything you will build in this course.

1

What is an AI Creator OS?

An AI Creator OS is a personal operating system for creative work, powered by AI agents, automation workflows, and structured knowledge. It handles the repetitive parts of building -- content production, research, distribution, scheduling -- so you can focus on craft.

The Personal AI Center of Excellence

Large enterprises invest heavily in AI Centers of Excellence -- dedicated teams with strategy, governance, technology, and ethics frameworks. The same 6-pillar architecture that powers enterprise AI adoption can be applied to individual creators at roughly 1/5000th of the cost.

That is the core insight behind this course. You do not need a team of 50. You need a well-configured system and the discipline to use it.

What you will build by the end of this course

Claude Code configured with custom skills and brand voice
n8n automation workflows for content and email
Multi-agent swarms for strategy and research
Revenue systems with Stripe, products, and funnels
A personal intelligence system that runs continuously
A live website deployed on Vercel with full automation
2

Setting Up Claude Code

Claude Code is a terminal-based AI assistant from Anthropic. It reads your project files, understands your codebase, and executes multi-step tasks with real tools -- file editing, git operations, API calls, and more. It is the foundation of everything in this course.

Why Claude Code

Unlike ChatGPT or Cursor, Claude Code operates directly in your terminal with full filesystem access. It reads your entire project context on every interaction via CLAUDE.md files. It supports custom skills, slash commands, hooks, and MCP tool connections. This means your AI assistant gets smarter the more you configure it -- and it remembers your preferences across sessions.

Installation

You need Node.js 18+ installed. Then run a single command:

bash
npm install -g @anthropic-ai/claude-code

First run

Navigate to any project directory and type claude in your terminal. Claude Code will scan your directory, read any CLAUDE.md files it finds, and start an interactive session.

bash
cd ~/my-project
claude

On first run, you will authenticate with your Anthropic API key. After that, Claude Code loads automatically with your project context.

The CLAUDE.md file: your project's brain

The single most important file in any Claude Code project is CLAUDE.md. Claude reads this file at the start of every session. It contains your project configuration, brand voice, file structure, coding standards, and any rules you want Claude to follow. Think of it as persistent memory that shapes every interaction.

3

Your First CLAUDE.md

Create a file called CLAUDE.md in your project root. This is the template to start with -- customize each section for your own work.

markdown
# Project Configuration

## Who I Am
- Name: [Your name]
- Role: [Your primary role — creator, developer, founder, etc.]
- Brand: [Your brand name or handle]
- Voice: [2-3 adjectives — e.g. "precise, confident, practical"]

## Brand Voice
- Lead with results, not philosophy
- Use precise technical language
- Show, don't tell — let the work speak

## Key Files
- content/blog/ — All blog posts (MDX)
- lib/ — Utilities and shared logic
- components/ — React components
- data/ — JSON data files

## Standards
- TypeScript strict mode
- Tailwind CSS for styling
- Next.js App Router conventions
- Mobile-first responsive design

Section breakdown

Who I Am

Give Claude your identity context. This shapes how it writes copy, structures content, and represents your brand. Be specific about your role and voice.

Brand Voice

Define the rules for how Claude communicates on your behalf. These guidelines apply to every piece of content it generates -- blog posts, emails, documentation, code comments.

Key Files

Map the critical directories and files in your project. Claude uses this to navigate your codebase efficiently, especially in large projects with hundreds of files.

Standards

Set technical constraints. What framework, what language features, what design patterns. Claude follows these rules when writing or modifying code.

How Claude Code reads this

Claude Code loads CLAUDE.md files hierarchically. A root CLAUDE.md applies to the entire project. You can also place CLAUDE.md files in subdirectories -- they add context for that specific area. For example, components/CLAUDE.md can define component-specific rules that only activate when Claude works in that directory.

4

Understanding ACOS

ACOS stands for Agentic Creator OS. It is the framework that structures your entire AI creator workflow into a coherent system. ACOS applies the same 6-pillar architecture used by enterprise AI Centers of Excellence, adapted for individual creators.

The 6 pillars

1

Strategy

Define what you want AI to do for you. Goals, priorities, and constraints.

2

Governance

Quality checks, review processes, and guardrails for AI output.

3

Talent

Your skills as an AI operator. Prompt craft, tool mastery, agent design.

4

Technology

The stack: Claude Code, n8n, MCP servers, Vercel, databases.

5

Data

Content libraries, knowledge bases, brand assets, and training data.

6

Ethics

Transparency, attribution, bias awareness, and responsible use.

How ACOS maps to your daily workflow

Each pillar translates directly into actions you take every day:

StrategyDecide what to build this week based on goals, not impulse
GovernanceReview AI outputs before publishing. Set quality thresholds.
TalentImprove your prompting. Learn new tools. Build custom skills.
TechnologyConfigure Claude Code, connect MCP servers, automate with n8n
DataOrganize your content library, maintain knowledge bases, structure brand assets
EthicsAttribute sources. Disclose AI usage where appropriate. Avoid manipulation.

Open source

The ACOS framework is open source. You can explore the full architecture, contribute, or fork it for your own use.

github.com/frankxai/agentic-creator-os
5

Next Steps

You now have the foundation: Claude Code installed, your first CLAUDE.md configured, and an understanding of the ACOS framework. Module 2 goes deeper into the skill system -- how to install, create, and manage hundreds of specialized AI skills.

Coming up: Module 2 -- The Skill System

Learn how to install skills from GitHub repositories, create custom skills for your specific workflows, set up auto-activation with skill-rules.json, and build a library of 500+ specialized AI capabilities.

Coming Soon

Get notified when Module 2 launches

Join the course waitlist for early access to new modules, bonus content, and implementation resources.

Occasional FrankX field notes. Unsubscribe anytime. Privacy details.

Back to course overview
Module 2: The Skill SystemComing Soon