docs(blog): fill course-link placeholders + align learner-dir path

- Replace all 24 [COURSE LINK] placeholders across the 17 posts with the course URL
  https://git.jpaul.io/justin/ai-workflow-course.
- Align the learner working-dir path in the posts to ~/ai-workflow-course (matches
  the modules after the repo rename).
- blog/README: mark the course-link checklist item done; flag publish-time
  refinements (GitHub-mirror swap; repoint inline cross-post links to real
  jpaul.me post URLs).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TfzV5QvtPDz8LJS3Pu5VLT
This commit is contained in:
2026-06-22 19:15:20 -04:00
parent e5960c17ab
commit 250189a60e
18 changed files with 41 additions and 37 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ A few months back I watched an AI confidently delete about an hour of my work in
It wasn't. I retyped it from memory.
That's the moment this module exists to kill forever. If you've been following along with [The Workflow]([COURSE LINK]) — my free course on the toolchain *around* AI coding — the last post got you set up and had you feel the three places the copy-paste loop breaks. This post fixes the worst one: no undo, no record, no safety. It's the big one. Almost everything riskier in the rest of the course only becomes safe to attempt *because* of what we install here.
That's the moment this module exists to kill forever. If you've been following along with [The Workflow](https://git.jpaul.io/justin/ai-workflow-course) — my free course on the toolchain *around* AI coding — the last post got you set up and had you feel the three places the copy-paste loop breaks. This post fixes the worst one: no undo, no record, no safety. It's the big one. Almost everything riskier in the rest of the course only becomes safe to attempt *because* of what we install here.
And here's my pitch up front: you probably already know this tool, or think you do. It's Git. But I want to convince you to think about it in a way nobody taught me when I learned it — not as the thing you use to push code to GitHub, but as two things you need far more in the AI era than you ever did before. **Undo for the AI. And memory the AI can read back.**
@@ -87,7 +87,7 @@ Reading about a safety net is nothing like feeling one catch you. So the lab run
**First checkpoint.** In your project folder, turn it into a repo and save your first snapshot:
```bash
cd ~/workflow-course/tasks-app
cd ~/ai-workflow-course/tasks-app
git init -b main # first branch named "main" (needs Git 2.28+)
git status # everything shows as "untracked" — Git sees it but isn't saving it yet
git add .