Quick Start
Get browser testing running in 2 minutes.
1. Install Extension
Install from VS Code Marketplace:
# Search "DebuggAI" in Extensions panel
# OR install directly:
code --install-extension debugg-ai.debugg-ai
2. Sign In
- Open VS Code
- Press
Cmd+Shift+P
→ "DebuggAI: Sign In" - Create account at debugg.ai
3. Create Your First Test
- Start your app:
npm run dev
(localhost:3000) - Press
Cmd+Alt+C
- Describe your test: "Test the login form with valid credentials"
- Watch AI create and run the test
4. View Results
- In VS Code: Test Results panel
- Web Dashboard: app.debugg.ai
What's Next?
- VS Code Workflow - Main testing workflow
- MCP Integration - Use with Claude Desktop
- Web Dashboard - Team collaboration
- Debugg CLI - Run tests in CI with templates
Local CLI Usage (Optional)
Run the Debugg CLI locally against your app:
- Install and verify
pnpm add -g @debugg-ai/cli@latest # or: npx @debugg-ai/cli@latest --help
debugg-ai --version
- Start your app locally (example Next.js)
pnpm build && pnpm start # http://localhost:3000
- Execute a test run
export DEBUGGAI_API_KEY=your_api_key
debugg-ai test \
--api-key "$DEBUGGAI_API_KEY" \
--repo-path . \
--max-test-time 1800000 \
--server-timeout 120000
Tips
- Use
--pr <number>
to scope tests to a pull request locally. - Point to a different backend with
--base-url <url>
if instructed.