add initial orchestration structure

This commit is contained in:
rafia-10 2026-02-18 11:04:06 +03:00
parent bfbfaf6d46
commit 182284c33b
3 changed files with 39 additions and 0 deletions

View 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"

View file

View 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