Vyre CLI
The Vyre CLI allows you to trigger agentic workflows directly from your terminal. Whether you're running headless tasks in CI/CD pipelines or just prefer the command line over the GUI, the CLI exposes the full power of Vyre.
Key Features
Headless Execution
Run agent tasks without ever opening the IDE. Perfect for server environments.
CI/CD Integration
Trigger the agent to automatically review pull requests or fix failing tests via GitHub Actions.
Shell Mode
A specialized interactive mode where the agent can read your terminal stdout/stderr to debug errors instantly.
Agent Control Protocol (ACP)
The standardized protocol used by the CLI to communicate securely with the Vyre daemon.
Common Commands
Start a headless agent
vyre agent run "Refactor the authentication flow in src/auth to use JWTs instead of session cookies."Open a project in the IDE
vyre open .Diagnose a failing command (Shell Mode)
If you run a command that fails (like npm run build), you can immediately pipe it to Vyre to fix it:
npm run build || vyre fix