save progress

This commit is contained in:
StellaOps Bot
2026-01-02 21:06:27 +02:00
parent f46bde5575
commit 3f197814c5
441 changed files with 21545 additions and 4306 deletions

View File

@@ -0,0 +1,28 @@
# Gateway WebService Agent Charter
## Mission
- Operate the Gateway WebService as the HTTP/HTTPS ingress that authenticates callers and routes to microservices with deterministic behavior.
## Responsibilities
- Maintain routing middleware, transport integration, and identity header policy.
- Keep output ordering, timestamps, and IDs deterministic for audit and replay.
- Keep configuration validation strict and offline-safe.
## Required Reading
- docs/modules/gateway/architecture.md
- docs/modules/gateway/openapi.md
- docs/modules/router/architecture.md
- docs/modules/authority/architecture.md
- docs/modules/platform/architecture-overview.md
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
## Definition of Done
- Configuration validation is explicit and fails fast.
- Routing and identity headers are deterministic and audit-friendly.
- Tests cover middleware, transport client behavior, and health monitoring.
## Working Agreement
- 1. Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
- 2. Review required docs before changes.
- 3. Prefer TimeProvider and ID generators for timestamps and correlation IDs.
- 4. Keep tests offline-safe and deterministic.

View File

@@ -0,0 +1,10 @@
# Gateway WebService Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |
| AUDIT-0346-M | DONE | Maintainability audit for Gateway.WebService. |
| AUDIT-0346-T | DONE | Test coverage audit for Gateway.WebService. |
| AUDIT-0346-A | TODO | Pending approval (non-test project). |

View File

@@ -0,0 +1,27 @@
# Gateway WebService Tests Agent Charter
## Mission
- Maintain deterministic, offline-safe tests for the Gateway WebService.
## Responsibilities
- Keep test fixtures stable and time/ID deterministic.
- Cover middleware, transport wiring, and gateway health/openapi behavior.
- Ensure test categories reflect integration vs unit scope.
## Required Reading
- docs/modules/gateway/architecture.md
- docs/modules/gateway/openapi.md
- docs/modules/router/architecture.md
- docs/modules/platform/architecture-overview.md
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
## Definition of Done
- Tests are deterministic and offline-safe.
- Coverage includes critical middleware and hosted service behavior.
- Test metadata (traits/categories) is accurate.
## Working Agreement
- 1. Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
- 2. Review required docs before changes.
- 3. Prefer fixed IDs/timestamps and injected time providers in tests.
- 4. Avoid network calls in tests unless explicitly mocked.

View File

@@ -0,0 +1,10 @@
# Gateway WebService Tests Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |
| AUDIT-0348-M | DONE | Maintainability audit for Gateway.WebService.Tests. |
| AUDIT-0348-T | DONE | Test coverage audit for Gateway.WebService.Tests. |
| AUDIT-0348-A | DONE | Waived (test project). |