AlphaEarly preview — features may change

[COMMANDS]

All CLI commands with examples.

getwired init

Initialize GetWired in your project. Scans your codebase, detects framework and dev server, and creates the .getwired/ config directory.

Options

--provider <provider>AI provider to use (claude-code, auggie, codex)
$ getwired init --provider auggie

getwired test

Run AI-driven testing against your local dev server. The AI explores your app like a chaotic human user, looking for bugs, broken layouts, XSS vulnerabilities, and edge cases.

Options

-u, --url <url>URL to test (auto-detects localhost if not provided)
-c, --commit <id>Test against a specific commit for regression
-p, --pr <id>Test against a specific pull request
--scope <scope>Scope of testing (e.g. auth, checkout, navigation)
-d, --device <profile>Device profile: desktop, mobile, or both (default: both)
--provider <provider>Override AI provider for this run
$ getwired test --scope auth --device mobile

getwired report

View past test reports. Shows findings, screenshots, and regression data.

Options

-i, --id <id>View a specific report by ID
$ getwired report --id latest

getwired dashboard

Open the interactive TUI dashboard. This is the default command when running getwired with no arguments. Gives you access to test runs, reports, notes, and settings.

$ getwired