Auggie in the terminal gives you powerful agentic capabilities to analyze code, make changes, and execute tools in an interactive terminal and in your automated workflows.
Install Auggie with npm
Go to your project directory
Login or sign up to Augment
Start using Auggie
auggie
to start the interactive terminal. You can also pass a prompt as an argument and use --print
to print the response to stdout instead of the interactive terminal–perfect for automation workflows.auggie
without any mode flags to get the full-screen terminal user interface with rich interactive features, real-time streaming of responses, and visual progress indicators. This mode shows all tool calls, results, and allows ongoing conversation through an intuitive interface.
Best for manual development work, exploration, and interactive problem-solving sessions where you want the full visual experience and plan to have back-and-forth conversations with the agent.
--print
flag (e.g., auggie --print "your instruction"
) to execute the instruction once without the UI. This mode exits immediately without prompting for additional input. Perfect for automation, CI/CD pipelines, and background tasks where you want the agent to act without follow-up from a person.
Quiet Mode: --quiet
flag (e.g., auggie --print --quiet "your instruction"
) to tell the agent to only reply back with a final output. Ideal when you need to use the agent to provide structured data back without all the steps it took to get there. Provides a simple, clean response.