Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/architecture/ard/ARCHITECTURE_RISKS_HEXAGONAL_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,11 @@ Phase 1 artifacts (implemented):
Exit criteria:
- Config module no longer depends on `TesterArgs` mutability.

Phase 2 artifacts (implemented):
- Config override merge path: `src/config/apply.rs`
- Scenario defaults parsing seam: `src/config/apply/scenario.rs`
- Entry wiring for effective args + scenario registry: `src/entry/plan/build.rs`

### Phase 3: Local run use case extraction (2 weeks)
1. Extract `run_local` to `application::local_run::execute(command, ports)`.
2. Introduce ports for traffic, metrics, outputs, shutdown.
Expand All @@ -286,6 +291,10 @@ Exit criteria:
Exit criteria:
- `src/app/runner/core/mod.rs` reduced to adapter composition.

Phase 3 artifacts (implemented):
- Local run use-case orchestration with ports: `src/application/local_run.rs`
- Local run adapter composition layer: `src/app/runner/core/mod.rs`

### Phase 4: Protocol adapter boundary (1-2 weeks)
1. Refactor protocol switch to registry-based `TransportAdapter` implementations.
2. Move protocol setup to adapter layer.
Expand Down
Loading