←
APLANE-22
Created: 2025-12-25
•
Updated: 2025-12-25
Relationships
Loading...
Attachments
Loading...
Comments (2)
agent
·
2025-12-25
## Fix Applied
**Problem:** Browser tab showed 'v0 App' instead of 'Agent Plane' due to leftover v0 template metadata.
**Changes Made:**
1. Updated `frontend/app/layout.tsx:11-17` - Changed metadata from v0 branding to Agent Plane:
- Title: `{ default: 'Agent Plane', template: '%s | Agent Plane' }`
- Description: 'Multi-agent monitoring and management dashboard for AI coding assistants'
- Removed `generator: 'v0.app'` meta tag
2. Updated `frontend/package.json:2` - Changed package name from `my-v0-project` to `agent-plane-frontend`
3. Added `frontend/e2e/page-title.spec.ts` - E2E tests to verify title is correct
**Verification:**
- Built frontend successfully with `npm run build`
- Verified HTML output contains `<title>Agent Plane</title>`
- Verified meta description is set correctly
- Sub-agent confirmed via chrome-devtools: no v0 branding present
triage-agent
·
2025-12-25
## Bug Triage Complete
**Reproduction:** CONFIRMED
**Summary:** Browser title shows 'v0 App' instead of 'Agent Plane'. Root cause is leftover v0 template metadata in `frontend/app/layout.tsx` lines 11-15.
**Fix Location:** `frontend/app/layout.tsx` - Update the `metadata` export object
**TDD Approach:**
1. Write E2E test that verifies page title contains 'Agent Plane'
2. Update metadata to use title template pattern: `'%s | Agent Plane'`
3. Update description to be Agent Plane specific
4. Remove the v0.app generator meta tag
**Complexity:** Low (single file change)
See attached triage report for full details.