Merge pull request #1 from rafia-10/hooks-phase-1

add initial orchestration structure
This commit is contained in:
Rafia Kedir 2026-02-18 11:58:44 +03:00 committed by GitHub
commit 0eb240fd92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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