What is the first important habit for handling long tasks with Claude?	Scope the work before Claude starts, often using plan mode.
What is the benefit of a thorough plan provided by Claude?	It reduces the likelihood of hiccups when Claude executes the task.
What is the purpose of the `compact` command when steering Claude?	It summarizes the conversation and uses that summary as new context to free up the context window.
What risk is associated with using the `compact` command, and how can it be mitigated?	The risk is losing important information; mitigate this by adding desired instructions after the command.
What function does the `rewind` menu serve when Claude goes down the wrong path?	It brings the user back to the last checkpoint created by a user prompt.
When using the `goal` command, what must the completion condition be checkable from?	The output that Claude produces (e.g., test results).
How does the `loop` command differ from a standard prompt?	It runs a prompt on an interval (fixed or self-paced) to pull external data and act when the state changes.
What problem do "worktrees" solve when multiple agents work on the same codebase?	They prevent two or more cloud sessions from fighting over files by creating independent file trees.
What is the function of the `.worktreeinclude` file in a repository?	It lists ignored files (like environment variables) to copy into each independent work tree.
