Quickstart Guide¶
Get your first test running in under 5 minutes.
Step 1: Start the Services¶
Wait for all three services to start (you'll see "Mission Control online" in the logs).
Step 2: Open the Dashboard¶
Navigate to http://localhost:3000 in your browser.
You'll see the Mission Control dashboard with: - Orbital visualization in the header - Live agent count - Test launcher form - Real-time metrics
Step 3: Launch Your First Test¶
Method A: Traditional Form¶
-
In the Launch Test panel, enter a URL:
-
Select Test Type:
Homepage -
Click ▶ Initiate
Method B: Chat with Vectra (Recommended)¶
- Click the 🤖 Vectra chat widget (bottom-right corner)
- Type:
- Vectra will confirm the plan — click ✓ Run
Step 4: Monitor Progress¶
Watch the dashboard update in real-time: - Agent appears in the Active Agents grid - Progress bar fills as tests run - Console log shows live output - Terminal panel streams events
Step 5: View Results¶
When the test completes: 1. The agent card turns green (pass) or red (fail) 2. Click View Result to see detailed findings 3. Or ask Vectra: "What did the last test find?"
What Happens Behind the Scenes?¶
sequenceDiagram
participant User
participant Dashboard
participant CommandCenter
participant MCPServer
participant Agent
participant Vault
User->>Dashboard: Enter URL + test type
Dashboard->>CommandCenter: POST /api/tests/run
CommandCenter->>MCPServer: spawn_agent
MCPServer->>Vault: Create memory node
MCPServer->>Agent: Start worker process
Agent->>Vault: Update progress
Vault->>CommandCenter: File change detected
CommandCenter->>Dashboard: SSE update
Agent->>Vault: Write findings
Agent->>Vault: Set status=completed
CommandCenter->>Dashboard: Test complete
Next Steps¶
- Learn to write custom test scenarios
- Explore the architecture to understand agents
- Configure multiple LLM providers
- Set up CI/CD integration