mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-14 23:21:19 +00:00
Merge pull request #1 from rafia-10/hooks-phase-1
add initial orchestration structure
This commit is contained in:
commit
0eb240fd92
3 changed files with 39 additions and 0 deletions
34
.orchestration/active_intents.yaml
Normal file
34
.orchestration/active_intents.yaml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
active_intents:
|
||||
- id: "INT-001"
|
||||
name: "JWT Authentication Migration"
|
||||
status: "IN_PROGRESS"
|
||||
owned_scope:
|
||||
- "src/auth/**"
|
||||
- "src/middleware/jwt.ts"
|
||||
constraints:
|
||||
- "Must not use external auth providers"
|
||||
- "Must maintain backward compatibility with Basic Auth"
|
||||
acceptance_criteria:
|
||||
- "Unit tests in tests/auth/ pass"
|
||||
|
||||
- id: "INT-002"
|
||||
name: "Refactor Billing Service"
|
||||
status: "IN_PROGRESS"
|
||||
owned_scope:
|
||||
- "src/billing/**"
|
||||
constraints:
|
||||
- "Preserve API endpoints"
|
||||
- "Maintain decimal precision"
|
||||
acceptance_criteria:
|
||||
- "Integration tests in tests/billing/ pass"
|
||||
|
||||
- id: "INT-003"
|
||||
name: "Add Logging Middleware"
|
||||
status: "IN_PROGRESS"
|
||||
owned_scope:
|
||||
- "src/middleware/logging.ts"
|
||||
constraints:
|
||||
- "Log only request metadata"
|
||||
- "Must be async non-blocking"
|
||||
acceptance_criteria:
|
||||
- "Logs appear in console without delaying response"
|
||||
0
.orchestration/agent_trace.jsonl
Normal file
0
.orchestration/agent_trace.jsonl
Normal file
5
.orchestration/intent_map.md
Normal file
5
.orchestration/intent_map.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Intent Map - Spatial Layout
|
||||
|
||||
- INT-001: src/auth/jwt.ts, src/middleware/jwt.ts
|
||||
- INT-002: src/billing/service.ts, src/billing/utils.ts
|
||||
- INT-003: src/middleware/logging.ts
|
||||
Loading…
Add table
Reference in a new issue