What is the primary function of Permission Modes?	To decide once what is safe to run without requiring user prompting.
Which Permission Mode is the hands-off default where a classifier reviews each action before execution?	Auto Mode.
How does Manual Mode operate?	It reads only without prompting, while everything else requires a prompt.
What is the function of Plan Mode?	It reads only, researches, and proposes actions without making any edits.
When should Don't Ask mode be used?	For unattended pipelines, such as CI, scheduled jobs, or overnight batches.
What is the purpose of Bypass Permission, and where should it be used?	It skips all checks and should only be run inside an isolated container.
What does the classifier model guard against?	It guards intent by blocking moves that escalate beyond the user's request.
What is a key limitation of the classifier model?	It will not catch whether the code actually works or is functional.
How does a stop hook complement Auto Mode?	It confirms the code's correctness by running tests after Auto Mode attempts the action.
What is Accept Edits mode designed for?	Iterating on code that is reviewed after the fact, by reading file edits and common bash commands.
