What is the primary function of a Routine?	A Routine is a saved prompt bundled with repositories and connectors that runs on Anthropix managed infrastructure when triggered.
When should a user choose Headless Mode over a Routine?	Headless Mode is used when the job requires the user's specific environment or custom logic around the execution.
What is the purpose of the Agent SDK?	The Agent SDK provides a library to embed Cloud Code directly inside custom applications (like TypeScript or Python).
List three examples of triggers that can initiate a Routine.	A cron schedule, an HTTP post to an API endpoint, or a GitHub event (like a new pull request).
What guardrail prevents an autonomous Routine from rewriting the main branch?	The restriction that limits pushes to cloud/prefix branches unless explicitly loosened per repository.
What does the `-P` flag do when running Cloud Code in Headless Mode?	It runs Cloud Code as a one-shot command without an interactive shell, reading from standard in and writing to standard out.
What is the function of the `--bear` flag in Headless Mode?	It skips the auto-discovery of hooks, skills, plugins, and MCP servers, leading to faster startup.
How can a user ensure Cloud constrains its output to match a specific structure?	By pairing a JSON schema with the output format JSON.
How is multi-step automation achieved using Cloud Code?	By capturing the session's ID from a JSON output and resuming the work later with full context.
When is a Routine the default choice for automation?	For repeat work that needs to run on Anthropix infrastructure without requiring the user to host anything.
