User
Write something
Every Course 0 command, in bash and PowerShell
Most people who quit the terminal in week one quit because they copied a command off the internet, it failed, and they figured they were the problem. They weren't. They were on Windows running a Linux command. The commands are different. That was all it ever was. Here's the one that does the most damage. On Mac or Linux you list files one per line with "ls -1". Run that same thing in PowerShell and you get this: Get-ChildItem: Cannot find path 'D:\Office-Agent\-1' because it does not exist. Read it again. It's complaining about a folder you never typed. PowerShell took the "-1" and read it as the name of the place you wanted to look in. Nothing in that message tells you the flag was the problem, so you sit there staring at a path that doesn't exist wondering what you broke. The ones that catch people most often: ls -1 -> Get-ChildItem -Name ls -la -> Get-ChildItem -Force cat file -> Get-Content file head -n 10 file -> Get-Content file -TotalCount 10 tail -n 10 file -> Get-Content file -Tail 10 tail -f file -> Get-Content file -Wait grep "error" app.log -> Select-String -Path app.log -Pattern "error" find . -name "*.txt" -> Get-ChildItem -Recurse -Filter *.txt which git -> (Get-Command git).Source touch a.txt -> New-Item -ItemType File a.txt mkdir -p a/b -> New-Item -ItemType Directory -Force a/b rm -rf old/ -> Remove-Item -Recurse -Force old export KEY=abc -> $env:KEY = "abc" echo $PATH -> $env:PATH cmd 2>/dev/null -> cmd 2>$null One more worth knowing. The && that chains two commands together works in PowerShell 7 and up, but it's a syntax error on the older Windows PowerShell 5.1 that ships with Windows. Check yours with $PSVersionTable.PSVersion. If it starts with a 5, install PowerShell 7. It sits alongside the old one, it doesn't replace it. The rule that saves you the most time: when something fails, read the error before you retype anything. "The term X is not recognized" means the command doesn't exist on Windows at all. "A parameter cannot be found" means the command is right and the flag is wrong. Those two sentences cover most of what goes wrong in your first month.
0
0
NEW IN THE ARMORY: FIELD MANUAL EXPLAINER
I just dropped a new Claude Code skill in The Armory that I used to make this exact video. You give it a finished voiceover, and it helps build the full vertical explainer around it: - Storyboarded scenes - Word-timed captions - Custom sound effects - Audio mixing - Chunked Remotion rendering - Final verification sheets This is not a prompt that spits out a random slideshow. It is the actual workflow, scripts, design system, and working source files behind the finished video. Download it from The Armory, install it in your Claude Code skills folder, and use the included project as a working example.
0
0
NEW IN THE ARMORY: FIELD MANUAL EXPLAINER
Who’s tried the new Claude Skill?
If you have tried the new skill out let me know how it’s been working out for you in the comments!
0
0
New in the classroom: Skills and Prompts
I just dropped the first resource in the new Skills and Prompts section of the classroom. That section is where I’m putting the files and prompts I actually use, ready to copy. The first one is a prompt that builds a skill. You paste it into Claude, it interviews you with ten questions, and it hands back a SKILL.md file. A rulebook any AI has to follow when it writes for you. Your banned phrases, your rhythm, your real stories, and a hard rule against inventing anything you didn’t give it. My own posts run through the file this exact prompt built. It’s in the classroom for paying members. More is coming to that section. It’s in the classroom section. This space is exclusive to the paying members.
1
0
New in the classroom: Skills and Prompts
It's live: Foundations — The Terminal
Course 0 — the terminal basics. Full video walkthrough included, plus a mini-capstone and checkpoint at the end so you can prove to yourself you actually get it. Just Keep Building.
1
0
It's live: Foundations — The Terminal
1-24 of 24
CMD & Conquer
skool.com/cmdandconquer
Learn to run AI agents from the command line. No API costs, no dev team — just you and your terminal. In-house courses, private repos, live calls.
Powered by