mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-16 23:41:06 +00:00
973 B
973 B
Intent Map
Purpose
This file maps high-level business intents to physical files and AST nodes. When a manager asks, "Where is the billing logic?", this file provides the answer.
Intent to File Mapping
INT-001: Weather API Implementation
- Scope:
src/weather/**,src/api/weather.ts - Primary Files:
src/api/weather.ts- Main API endpointsrc/weather/client.ts- OpenWeatherMap clientsrc/weather/types.ts- Type definitionssrc/weather/forecast.ts- Forecast logic
INT-002: User Authentication Refactor
- Scope:
src/auth/**,src/middleware/auth.ts - Primary Files:
src/auth/middleware.ts- Auth middlewaresrc/auth/jwt.ts- JWT handlingsrc/auth/oauth.ts- OAuth2 implementationsrc/auth/password.ts- Password hashing
Intent Evolution History
(Automatically updated when INTENT_EVOLUTION occurs)
- 2026-02-17: INT-001 created
- 2026-02-17: INT-002 created