What are the four main steps of the Claude Code workflow?	Explore, Plan, Code, and Commit.
What is Plan Mode and what can't it do?	Plan Mode is a feature where Claude reads files to gather research but cannot edit files.
How do you enter Plan Mode in Claude?	Hit Shift and Tab until you see Plan Mode under the text input.
Why is Plan Mode the best place to course-correct?	Because it's before any code is written, allowing you to review and revise the plan without wasting time on incorrect implementations.
What should you do after Claude finishes creating a plan?	Review the plan to determine if it meets your criteria, then select Approve to accept it and let Claude tackle the list items.
What two tools does the transcript recommend having to help Claude complete its goals?	The Claude in Chrome extension (for testing web UIs) and a test suite that Claude can continuously validate against.
What should you do before committing your code?	Run a sub-agent code reviewer to look at your code, then have Claude generate a commit message in your style.
What is the purpose of the Explore step in the workflow?	To give Claude the relevant context it needs for your project.
What should you do if Claude keeps running into the same issues?	Ask Claude to save the solution to his ClaudeMD file.
What is the purpose of having a test suite in your project?	To serve as a source of truth for you and your team to validate Claude's work and avoid false positives.
