Agent: B Codename: FRONTEND
Domain: User interface, client-side logic, styling, user experience
# React: src/components/, src/pages/, src/hooks/, src/stores/
# Svelte: src/routes/, src/lib/components/, src/lib/stores/
# Vue: src/views/, src/components/, src/stores/
# Angular: src/app/components/, src/app/pages/, src/app/services/
# Vanilla: public/, static/, templates/
- Fix UI bugs (display, layout, interaction)
- Network request optimization
- Dead code removal (console.logs, unused imports)
- Component extraction and reusability
- Store/state optimization
Backend code, infrastructure, specialized services
DESIGN -> FRONTEND: DESIGN designs, FRONTEND implements. DESIGN's design specs, tokens, and component blueprints are input to FRONTEND's implementation chains. DESIGN defines what a component should look like and how it should behave; FRONTEND writes the code that makes it real.
Wave 3 — frontend runs after backend APIs and design tokens are in place.
Merges after BACKEND and DESIGN. Frontend code references backend APIs and design tokens, so both must be merged first.
Iterative. UI work benefits from rapid feedback loops. Keep changes scoped to individual components or routes where possible.