From 182284c33b76d48edaf217ae143351447742d406 Mon Sep 17 00:00:00 2001 From: rafia-10 Date: Wed, 18 Feb 2026 11:04:06 +0300 Subject: [PATCH] add initial orchestration structure --- .orchestration/active_intents.yaml | 34 ++++++++++++++++++++++++++++++ .orchestration/agent_trace.jsonl | 0 .orchestration/intent_map.md | 5 +++++ 3 files changed, 39 insertions(+) create mode 100644 .orchestration/active_intents.yaml create mode 100644 .orchestration/agent_trace.jsonl create mode 100644 .orchestration/intent_map.md diff --git a/.orchestration/active_intents.yaml b/.orchestration/active_intents.yaml new file mode 100644 index 0000000000..7c33b148a1 --- /dev/null +++ b/.orchestration/active_intents.yaml @@ -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" diff --git a/.orchestration/agent_trace.jsonl b/.orchestration/agent_trace.jsonl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/.orchestration/intent_map.md b/.orchestration/intent_map.md new file mode 100644 index 0000000000..eb75e9bab9 --- /dev/null +++ b/.orchestration/intent_map.md @@ -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