Tutorial: Build a Personal AI OS with Claude Desktop

Claude's desktop app ships with more configuration surface than most users ever touch. This beginner tutorial walks you through building a personal AI operating system using CLAUDE.md, a persistent memory file, and custom slash-command skills that give Claude durable knowledge of your voice, clients, and workflows. Every project you open will start with your preferences already loaded — no re-briefing required.


0

Build a Personal AI Operating System with Claude’s Desktop App

Claude’s desktop app ships with more configuration surface than most users ever touch. By pairing a CLAUDE.md instruction file with a persistent memory.md store and purpose-built skills, you can give Claude a durable understanding of your voice, your clients, and your workflows — so every output starts at 90% instead of zero. This tutorial walks you through building that system from scratch, from folder creation to invoking your first custom skill via slash command.


  1. Download and install the Claude desktop app for Mac or Windows from Anthropic’s site. Open it and confirm you’re running the latest version — the co-work and code views described below require a current build.

  2. On your desktop, create a new folder. Name it Life OS, Work OS, or whatever maps to your mental model. This folder becomes the root of your AI operating system — every file Claude reads and writes will live here.

The full life-os folder structure: global CLAUDE.md at root, per-workstation CLAUDE.md files that inherit brand context, and dedicated MEMORY.md files for each workspace
The full life-os folder structure: global CLAUDE.md at root, per-workstation CLAUDE.md files that inherit brand context, and dedicated MEMORY.md files for each workspace
  1. Open the Google Drive link from the video description. Download CLAUDE.md and memory.md by opening each Google Doc and choosing File → Download → Markdown (.md). Move both files into your OS folder.
  1. In Claude’s co-work view, click Choose a different folder and point it at your OS folder. Start a test conversation. The right-hand file panel should now list CLAUDE.md — confirmation that Claude is reading your instructions file for this project.

  2. Switch to code view and connect to the same folder. Open CLAUDE.md from the files panel. The code view renders proper markdown formatting, making it far easier to read and edit your configuration than the co-work panel provides.

  3. Read through and customize the behavioral rules in CLAUDE.md. The starter template sets a 300-word default response length, a single-best-recommendation policy (no “here are five options”), an uncertainty-flagging rule, and a directive to read your voice profile before producing any written content.

Your CLAUDE.md behavioral rules: 300-word default, single best recommendation, flag uncertainty, read voice-profile.md before writing content, and always check working directory
Your CLAUDE.md behavioral rules: 300-word default, single best recommendation, flag uncertainty, read voice-profile.md before writing content, and always check working directory
  1. Review the Memory System section of CLAUDE.md. It instructs Claude to read memory.md silently at the start of every session and to write to it immediately when you use trigger phrases like “remember this” or “add to active projects.” The file tracks current projects, key contacts, and decisions — Claude updates it and timestamps the change so stale information doesn’t persist.
The Memory System rules in CLAUDE.md: how Claude decides what goes in CLAUDE.md vs MEMORY.md, and the exact trigger phrases to save, archive, or recall information
The Memory System rules in CLAUDE.md: how Claude decides what goes in CLAUDE.md vs MEMORY.md, and the exact trigger phrases to save, archive, or recall information
  1. Return to the Google Drive folder and download starter-skills.zip. This archive contains three skills: a voice profile builder, an ICP and positioning builder, and a design tokens builder — each one generates a structured markdown file in brand_context/.
Brand Context file index: which file Claude reads and when — voice-profile.md for content, positioning-icp.md for audience messaging, visual-identity.md for any designed asset
Brand Context file index: which file Claude reads and when — voice-profile.md for content, positioning-icp.md for audience messaging, visual-identity.md for any designed asset
  1. In co-work, go to Customize → Skills → Add Skill → Upload Skill and import each zip file individually. After the upload, each skill appears in your skills panel with its trigger type, description, and expected output path.

Warning: this step may differ from current official documentation — see the verified version below.

Step 4 of the Voice Profile Builder skill: writes a structured markdown file with a voice synthesis paragraph and direct quote examples
Step 4 of the Voice Profile Builder skill: writes a structured markdown file with a voice synthesis paragraph and direct quote examples
  1. In the co-work conversation input, type /starter to surface the installed skills as slash command options. Select voice profile, then work through the skill’s guided questions — writing samples, tone preferences, things you’d never say. Claude compiles the answers and writes brand_context/voice-profile.md to your OS folder.
Typing /START in Claude Cowork surfaces your installed starter skills — one slash command launches the full brand setup sequence
Typing /START in Claude Cowork surfaces your installed starter skills — one slash command launches the full brand setup sequence
  1. Open brand_context/voice-profile.md (and the other generated files) in Claude’s code view preview mode to confirm the output. Repeat the process for the ICP positioning and design tokens skills. Once all three files exist, every future task in this project has access to your brand context without any manual prompting.

How does this compare to the official docs?

The video presents an opinionated folder architecture and a Google Drive starter kit that streamline the setup considerably — but Anthropic’s own documentation has its own take on how CLAUDE.md files should be structured, where they live in a project hierarchy, and how skills are properly packaged and distributed.

Here’s What the Official Docs Show

The video gives you a solid, opinionated workflow for building a personal AI operating system — what follows adds the official naming, surfaces a subscription requirement the tutorial skips, and flags the steps that could not be verified against live documentation. Think of this as the annotated reference layer you run alongside the video.


Step 1 — Download the desktop app

The video’s approach here matches the current docs exactly. Head to claude.ai/download and grab the macOS or Windows installer. One detail the tutorial doesn’t surface: the single download bundles three distinct surfaces — Chat, Claude Cowork, and Claude Code — in one install. You’re not choosing between them; you get all three.

Official claude.ai/download page confirming the macOS download button and
📄 Official claude.ai/download page confirming the macOS download button and “All of Claude, in one app” descriptor.
Download page
📄 Download page “Go further” section showing Claude Cowork surfaces (Desktop, Chrome, Slack, Excel) and Claude Code environments (Desktop, Terminal, VS Code) bundled in a single install.

Terminology to carry forward: The official product name for the workspace surface is Claude Cowork (one word, title case) — the tutorial calls it “co-work view.” Same surface, different label. The tutorial’s “code view” is the Claude Code environment, listed separately under “Claude Code environments — Desktop” on the download page.


Step 2 — Create your OS folder

No official documentation was found for this step — proceed using the video’s approach and verify independently.


Step 3 — Download starter files from Google Drive

The video’s approach here matches the current docs exactly. CLAUDE.md and memory.md are standard Markdown (.md) files — plain text, readable in any editor, no conversion tool required.

Google Drive homepage confirming it as a cloud storage and sharing platform suited for distributing template files.
📄 Google Drive homepage confirming it as a cloud storage and sharing platform suited for distributing template files.
Daring Fireball Markdown introduction page confirming the plain-text, human-readable nature of .md files — the format used by CLAUDE.md and memory.md configuration files.
📄 Daring Fireball Markdown introduction page confirming the plain-text, human-readable nature of .md files — the format used by CLAUDE.md and memory.md configuration files.

Step 4 — Connect Claude Cowork to your folder

The video’s approach here matches the current docs exactly. Point Claude Cowork at your OS folder; the CLAUDE.md file appearing in the right-hand panel confirms Claude is reading your configuration for that project.

Download page mobile section noting cross-device sync — your desktop configuration carries across web and mobile.
📄 Download page mobile section noting cross-device sync — your desktop configuration carries across web and mobile.

Step 5 — Open CLAUDE.md in Claude Code

No official documentation was found for this step — proceed using the video’s approach and verify independently.

As of 2026-05-21, the correct environment name is Claude Code — the video’s “code view” is informal shorthand, not the product label.


Steps 6–9 — Configure behavioral rules, memory system, and install skills

No official documentation was found for these steps — proceed using the video’s approach and verify independently.


Steps 10–11 — Invoke slash commands and review generated brand context files

No official documentation was found for these steps — proceed using the video’s approach and verify independently.


Subscription requirement the tutorial doesn’t mention

As of 2026-05-21, Claude Code is a Pro plan feature starting at $17/month billed annually. The Free plan includes desktop chat but does not list Claude Code or Cowork Skills as included features. If the code environment or skill installation steps in the video aren’t behaving as shown, your subscription tier is the first thing to check.

Claude.ai pricing page showing Free ($0), Pro ($17/month), and Max ($100+/month) tiers with Claude Code listed as a Pro plan feature.
📄 Claude.ai pricing page showing Free ($0), Pro ($17/month), and Max ($100+/month) tiers with Claude Code listed as a Pro plan feature.
Claude.ai sign-in page showing
📄 Claude.ai sign-in page showing “Brainstorm in chat, build in Cowork” — confirming Claude Cowork as the official workspace surface name.

  1. Download Claude | Claude by Anthropic — Official desktop app download page confirming macOS and Windows availability and the bundled Chat, Claude Cowork, and Claude Code surfaces.
  2. Daring Fireball: Markdown — John Gruber’s original 2004 Markdown specification confirming the plain-text format used by CLAUDE.md and memory.md configuration files.
  3. Google Drive: Share Files Online with Secure Cloud Storage — Cloud storage platform used in the tutorial to distribute CLAUDE.md, memory.md, and skills zip starter files.
  4. Sign in — Claude — Claude.ai entry point; pricing details (Free, Pro at $17/month, Max at $100+/month) are accessible post-authentication and confirm Claude Code as a Pro-tier feature.

Like it? Share with your friends!

0

What's Your Reaction?

hate hate
0
hate
confused confused
0
confused
fail fail
0
fail
fun fun
0
fun
geeky geeky
0
geeky
love love
0
love
lol lol
0
lol
omg omg
0
omg
win win
0
win

0 Comments

Your email address will not be published. Required fields are marked *