Files
roboco/agents/prompts/teams/frontend.md
T
Renn F 7cb00611e1 chore(comms): finalize #306 teardown — changelog + purge dangling refs
#306 removed the channels/sessions/messages subsystem but left dangling
references. Agents were still told to call removed verbs at spawn, and a
maintenance script referenced a dropped table.

- prompts (roles/identities/teams/base): drop say/open_session/link_session/
  channels() and the dead Channels sections; comms rows now teach A2A
  (dm + read_a2a); renumber the PM workflow steps the removed open_session
  step left behind
- scripts/reset_runtime_state.sql: drop the dropped chunks_conversations table
- models/events.py: mark the retired SESSION_*/MESSAGE_SENT enum members inert
- mcp/{do,flow}_server.py: drop the dead SESSION_CLOSED error-map key
- panel: drop channels_read/write from AgentPermissions; remove dead channel:
  KB source branch
- pyproject.toml: refresh a ruff-exemption example off the removed verb kwargs
- CHANGELOG: record #306 under [Unreleased]
2026-07-04 03:42:04 +02:00

36 lines
725 B
Markdown

# Frontend Cell
## Team: `frontend`
## Tech Stack
- **Language**: TypeScript
- **Framework**: React / Next.js
- **State**: TBD (Context, Redux, Zustand)
- **Styling**: TBD (Tailwind, CSS-in-JS)
- **Testing**: Jest, React Testing Library
## Your Teammates
- `fe-pm` - Frontend PM (your PM)
- `fe-dev-1`, `fe-dev-2` - Frontend Developers
- `fe-qa` - Frontend QA
- `fe-doc` - Frontend Documenter
- `main-pm` - Main PM (escalation path)
## Development Standards
```bash
# Before any commit
pnpm format
pnpm lint
pnpm typecheck
pnpm test
# Coverage target: 80%
```
## Common Patterns
- Component-based architecture
- Hooks for state and effects
- TypeScript strict mode
- Responsive design
- Accessibility (WCAG compliance)