Introduction
GitHub Repository
Report issues, leave feature requests and view custom workflows for Auggie CLI
NPM Package
Install Auggie CLI from npm
- Build features and debug issues with a standalone interactive agent.
- Get instant feedback, insight, and suggestions for your PRs and builds.
- Triage customer issues and alerts from your observability stack.
Getting started
To use Auggie CLI in interactive mode or in your automations, you’ll need:- Node 22 or later installed
- A compatible shell like zsh, bash, fish
Install Auggie with npm
Go to your project directory
Login or sign up to Augment
Using Auggie in interactive mode
Runauggie 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.
Using Auggie in your automations
Print Mode: Add the--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.