How should a learner view Cloud Code when working on a project?	As another engineer working alongside them, capable of delegating virtually any task.
What command is executed in the terminal to launch Cloud Code within the editor?	`Cloud`
What is the primary function of the `INIT` command when run inside Cloud Code?	To scan the codebase, understand its architecture and coding style, and write findings to a context file.
What is the purpose of the `claude.md` file generated by the `INIT` command?	It serves as a context file that is automatically included in future requests to help Cloud Code understand the project.
When adding a specific note (e.g., a coding style preference) to be shared with everyone on a project, which memory type should be used?	Project memory
What are the three distinct steps in the first workflow for implementing a new feature using Cloud Code?	1) Identify relevant files, 2) Ask Cloud to plan the solution, 3) Ask Cloud to implement the solution.
What is the core principle of the second workflow for increasing Claude's effectiveness?	Test Driven Development (TDD), where tests are written before the code is implemented.
In the Test Driven Development (TDD) workflow, what is the final step after tests have been implemented?	Asking Cloud Code to write the solution and code until the tests pass.
How is Cloud Code described in relation to the effort put in by the user?	As an "effort multiplier," where more effort in prompting leads to significantly better results.
How can Cloud Code automate standard Git tasks?	By being instructed to stage and commit all changes, allowing it to write descriptive commit messages.
