Community-driven · Built with Intent by Augment Code Community
[COMMANDS]
All CLI commands with examples.
getwired init
Initialize GetWired in your project root. It scans the current project folder, detects your framework and local 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. GetWired only targets localhost or loopback URLs from the current project folder, not remote `.com` or other online sites.
Options
-u, --url <url>Optional local URL to test (must be localhost or loopback)-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 --url http://localhost:3000 --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