Normies Guide

Module 10 of 10

Module 1014 min read

The Full Picture

connect everything, extend where useful, and reach independence. After this module, you'll understand how all the pieces compose into a system — and you'll be equipped to evolve it on your own.

How the Pieces Fit Together

Let's step back and see the system you've built. Each module added a layer. Here's how they stack:

Your Claude Code Stack
  ┌──────────────────────────────────────────────┐
  Your Conversation                           
  what you type, what Claude says             
  ├──────────────────────────────────────────────┤
  Agents                  ← Module 9          
  specialist team Claude delegates to         
  ├──────────────────────────────────────────────┤
  Memory                  ← Module 8          
  persistent context across sessions          
  ├──────────────────────────────────────────────┤
  Hooks                   ← Module 7          
  automated actions (backup, safety)          
  ├──────────────────────────────────────────────┤
  Skills & Commands        ← Module 6         
  task-specific instructions                  
  ├──────────────────────────────────────────────┤
  CLAUDE.md                ← Module 4-5       
  behavioural config, preferences             
  ├──────────────────────────────────────────────┤
  Claude Code               ← Module 3        
  the engine — files, terminal, tools         
  └──────────────────────────────────────────────┘
Each layer builds on the ones below. The breakthrough is the composition.

Each layer builds on the ones below it:

  • CLAUDE.md shapes how Claude behaves in every conversation
  • Skills give it structured approaches to specific tasks
  • Hooks automate background operations without consuming tokens
  • Memory carries context forward so nothing gets re-explained
  • Agents provide specialised depth when the task demands it

And all of this sits on top of Claude Code's core ability to read, write, and work with files on your computer.

No single layer is the breakthrough. The breakthrough is the layers composing together. A CLAUDE.md alone saves tokens. Add skills, memory, hooks, and agents — and Claude starts feeling like it's been working with you for months.
·

Building Workflows

Here's where the system gets genuinely powerful. Individual pieces are useful on their own. But the real leverage comes from composing them into workflows.

A workflow is a skill that orchestrates multiple capabilities. Instead of "summarise this document" (one skill) or "use the research agent" (one agent), a workflow chains multiple steps together.

Example: Research Workflow

Research workflow (manual)

1. Ask Claude to research a topic 2. Ask Claude to summarise the findings 3. Copy the summary to a file 4. Ask Claude to save key points to memory

(4 separate requests, context lost between steps)

Research workflow (automated)

1. Type "/research [topic]"

Workflow skill chains all four steps: the research agent gathers information, the summarise skill condenses findings, results are saved to your file system, and a memory entry captures key takeaways. Adapts based on what the research finds.

Example: Writing Workflow

You want to write a piece of content:

  1. Brainstorm angles using the brainstormer pattern
  2. Pick an angle and outline it
  3. Draft using the /draft skill
  4. Review using the /review skill
  5. Humanise the output (remove AI writing patterns)
  6. Save the final version

How to build workflows

Workflows are just skills with more steps. The same ~/.claude/commands/ system. The difference is that a workflow skill references other skills and agents:

markdown
Research and write about the topic I specify.

Process:
1. Use the research synthesiser agent to gather information
2. Present key findings as bullet points and wait for my input on angle
3. Create an outline based on my chosen angle
4. Draft the content using the /draft approach
5. Self-review for clarity and logical gaps
6. Present the final draft for my review

Rules:
- Check in with me after step 2 — don't proceed without my input on angle
- Keep the total output under [word limit I'll specify]
- Save the final version to the file path I specify

Start with manual workflows (doing each step yourself). When you notice a sequence you repeat, codify it as a workflow skill. Don't build workflows preemptively for sequences you might do — build them for sequences you've already done three times.

·

Maintenance and Evolution

Your setup is a living system. It'll need occasional attention to stay effective.

Monthly check (15 minutes)

CheckWhat to doTime
CLAUDE.mdRead through, update stale preferences, remove outdated sections5 min
MemorySkim MEMORY.md, remove outdated entries, move stable patterns to CLAUDE.md5 min
SkillsRemove skills you haven't invoked in a month — clutter makes maintenance harder3 min
HooksRun cd ~/.claude && git log --oneline -5 to confirm backups are running2 min

When Claude updates

Anthropic updates Claude regularly. Most updates are invisible — better reasoning, fewer errors, new capabilities. Occasionally, an update changes how something works (new settings format, new hook points, modified behaviour).

When that happens, this guide updates too. Check back for notes on what changed and what to adjust. Usually, the answer is "nothing" — the setup we've built is based on stable patterns, not fragile implementation details.

When your work changes

New job, new project type, new domain — your setup should evolve with you. The modular architecture makes this straightforward:

  • New domain? Add a rule file or update your CLAUDE.md work section.
  • New repetitive task? Create a skill.
  • New specialisation needed? Add an agent.
  • Old thing no longer relevant? Delete the file. No dependencies to untangle.
·

When to Use Claude.ai vs Claude Code

Revisiting this from Module 4, now with the full picture:

SituationToolWhy
Quick question on your phoneClaude.aiNo setup needed, works anywhere
Brainstorming sessionClaude.aiLightweight, conversational
Working with filesClaude CodeDirect file access
Complex task requiring specialistsClaude CodeAgent delegation
Task you'll repeatClaude CodeSkills handle it consistently
Sensitive operationsClaude CodeSafety hooks protect you
Building on previous workClaude CodeMemory carries context forward

The general pattern: Claude.ai for thinking, Claude Code for doing.

·

Built-in Commands Worth Knowing

Claude Code has 50+ built-in commands (type / to browse them). Most are self-explanatory, but a few are genuinely useful and easy to miss:

CommandWhat it doesWhen you need it
/compactCompresses your conversation contextWhen a long session starts feeling sluggish or Claude loses track of earlier context
/costShows how many tokens you've used this sessionWhen you're curious about usage or want to develop cost intuition
/modelSwitches between Claude models (Sonnet, Opus, Haiku)When you want faster responses (Haiku) or deeper reasoning (Opus) mid-session
/memoryView and manage all loaded instructions and memory filesWhen you want to see what Claude is reading at session start
/initAuto-generates a CLAUDE.md by analysing your projectWhen you start working in a new codebase and want a quick setup
/rewindRolls back the conversation to an earlier pointWhen Claude went down a wrong path and you want to try a different approach
/planEnters plan mode — Claude researches without making changesWhen you want Claude to think through an approach before touching any files
/voiceActivates voice input (hold spacebar to talk)When typing feels slow or you want to describe something conversationally

You don't need to memorise these. Type / at any point and browse. The ones above are just the ones that tend to surprise people — "I didn't know it could do that."

·

You're Done. For Real This Time.

Let's see where you are now compared to Module 1:

LayerWhat You Have
UnderstandingWhat Claude is, how to think about it, when to use it
Claude.aiFive prompting patterns, Projects, custom instructions
Claude CodeInstalled, configured, comfortable
CLAUDE.mdComprehensive behavioural config — 500 words that shape everything
Skills5+ task-specific tools, ability to build your own
HooksAuto-backup, safety gate, code validation
MemoryPersistent context across sessions
Agents20+ specialists ready when a task demands depth
External CLIsCodex for bulk work, Vercel/Railway for deploys (optional)
RulesDomain-specific auto-loading context (optional)
WorkflowsComposed multi-step processes

This is a comprehensive, token-efficient setup that's been tested across real daily work. It was built incrementally so you understand every piece. Nothing is magic. Nothing is copy-pasted blindly. You know what everything does, why it's there, and how to change it.

More importantly: you know how to evolve it. New skill? Create a file. New agent? Create a file. New preference? Edit CLAUDE.md. The system grows with you.

If this guide disappeared tomorrow, could you maintain and extend your setup? If you've followed along, the answer is yes. That was the goal.

Thanks for trusting us. We took your time and your tokens seriously. Now go use the thing.

·

Something unclear? Something we got wrong? Something we could do better? We want to know: [contact method]. This guide is a living document. Your feedback makes the next version better for everyone.