Skip to content

First module is free — start with a sampler of plugins, skills & e-books.Access for free

Carousel · 8 slides

What a terminal actually is, in 4 minutes

Not a hacker prop. The terminal, the shell, and the first four commands to type. As posted on TikTok, Instagram, and LinkedIn — the full story, one slide per card.

The Terminal · SCHEMA 00201/08

The black window is the plainest interface your Mac has.

Not a hacker prop. Four minutes from now you'll have typed your first four commands into it.

Two faces02/08

Finder and the terminal show the same computer.

Finder shows folders as icons you drag. The terminal shows the same folders as text you ask about. ~/Desktop in the terminal IS the Desktop you've been dragging files onto for years.

Two words you need03/08

Terminal vs shell.

Myth

The terminal is one mysterious program with hidden powers.

Fact

The terminal is just the window. The shell — zsh, at /bin/zsh on every modern Mac — is the program that reads what you type and answers.

The first conversation04/08

Three questions to your Mac.

$ pwd
/Users/you

$ ls
Desktop   Documents   Downloads

$ echo $SHELL
/bin/zsh

Where am I, what's here, who's answering. Reading terminal sessions is reading a chat transcript.

Your first build05/08

Silence means success.

$ mkdir studio-demo
$ cd studio-demo
$ touch index.html style.css notes.txt
$ ls
index.html
notes.txt
style.css

Three commands answered with silence — the shell's thumbs-up. Only ls had something to report. Check Finder: the files are there.

Why text, in 202606/08

Claude lives here because every action is text.

Text is precise: mkdir studio-demo means exactly one thing on every Mac. Text is repeatable and composable. Claude reads and writes text — so this interface lets it drive your whole computer.

Save this07/08

The pocket reference.

  • pwd — print working directory: where am I?
  • ls — list: what's here?
  • cd <folder> — go there (cd .. goes up one)
  • mkdir <name> / touch <name> — make folders and files
  • open . — open this folder in Finder, the bridge between faces
The boundary08/08

One idea from one lesson.

Track 1 (23 lessons) is free.