CLI Capabilities
A complete reference to everything the Vyre CLI can do. Run agents, manage projects, configure settings, and integrate with CI/CD pipelines.
Agent commands
bash
# Run an agent task
vyre agent run --task "description"
# Run in cloud (requires Pro)
vyre agent run --task "description" --cloud
# Run with specific model
vyre agent run --task "description" --model claude-opus-4
# Run read-only (no file edits)
vyre agent run --task "description" --no-write
# List active sessions
vyre agent list
# Stream output from a running session
vyre agent logs [session-id]
# Stop a running session
vyre agent stop [session-id]Project commands
bash
# Open a project in the IDE
vyre open .
vyre open /path/to/project
# Clone and open from GitHub
vyre clone github:org/repo
# Index the current codebase for semantic search
vyre index
# Show project status
vyre status
# Show git diff with AI summary
vyre diff --summarizeConfig commands
bash
# Show current config
vyre config list
# Set a config value
vyre config set default.model claude-sonnet-4-5
vyre config set cloud.region us-east-1
# Import settings from another Vyre installation
vyre config import ./exported-settings.json
# Export settings
vyre config export > my-settings.jsonFull command reference
vyre agent run
code
vyre agent run [options]
Options:
--task, -t Task description (required)
--cloud, -c Run in cloud (default: local)
--model, -m AI model to use
--context Add context file/URL (@file or https://...)
--no-write Read-only mode
--dry-run Preview without executing
--max-duration Max seconds (default: 600)
--output Output format: text|json
--yes, -y Auto-approve all confirmationsvyre shell
code
vyre shell [options] [command]
Starts an AI-augmented shell session. Agent sees all
commands and output, and offers help when things fail.
Options:
--no-auto-suggest Disable automatic failure suggestions
--ci CI mode (write suggestions to log file)
--log-file Path for CI log outputvyre login / logout
code
vyre login [options]
Options:
--profile, -p Named profile to log into
--token Use API token (non-interactive)
vyre logout
Options:
--profile, -p Profile to log out of
--all Log out of all profiles