Phase Planning — Phoenix Agentic Website Frontend
Repo Context
This is the Website Frontend (Public). See docs/IMPLEMENTATION_PLAN.md for the full plan.
How to check roadmap
Read the planning docs for full details:
read_file("Phoenix-Agentic-Website-Frontend/docs/IMPLEMENTATION_PLAN.md")
read_file("Phoenix-Agentic-Website-Frontend/docs/ARCHITECTURE.md")
read_file("Phoenix-Agentic-Website-Frontend/.github/instructions/website-frontend-roadmap.instructions.md")
Key docs
| File | Purpose |
|---|---|
docs/IMPLEMENTATION_PLAN.md |
Full implementation plan |
docs/ARCHITECTURE.md |
Frontend architecture |
docs/AUTOMATED_BLOG_PLAN.md |
Blog automation plan |
docs/SECURITY_BOUNDARY.md |
Security boundary rules |
docs/MAILCHIMP_SETUP.md |
Newsletter integration |
Using VS Code tasks for development
website: dev: setup— Install npm dependencieswebsite: dev: run— Start Next.js dev serverwebsite: dev: lint— Run ESLintwebsite: dev: typecheck— Run tsc --noEmitwebsite: dev: test— Run vitestwebsite: dev: build— Production buildwebsite: dev: check— Full validation (lint + typecheck + test + build)website: dev: clean— Remove build artifacts
Working principles
- Read
docs/before starting any new feature area - Keep changes scoped to one feature/task at a time
- Security boundary rules apply — no secrets in client-side code
- Cross-service integration via API client, not direct backend coupling
- Maintain SSR compatibility for all components