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

Common Commands

Start a headless agent
bash
vyre agent run "Refactor the authentication flow in src/auth to use JWTs instead of session cookies."
Open a project in the IDE
bash
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:

bash
npm run build || vyre fix