Add 10 new tasks under tasks/architecture/ for Phase 0a (ADR writing): - 9 ADR tasks (026-034) with dependency-ordered structure - 1 review checkpoint task before Phase 0b spec writing ADR dependency graph (3 generations): Gen 1 (parallel): 026, 029, 030, 031, 032, 034 Gen 2 (depends on 029): 027, 028 Gen 3 (depends on 027+028): 033 Gen 4: review checkpoint Also mark all 34 prior implementation tasks as completed — they were finished but still showing as pending in the taskgraph.
1.1 KiB
1.1 KiB
id, name, status, depends_on, scope, risk, impact, level
| id | name | status | depends_on | scope | risk | impact | level | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| meta/transport-layer | Complete transport layer — trait, TCP, TLS, iroh, ACME | completed |
|
system | high | phase | planning |
Description
Meta task that clusters all transport module tasks. Once complete, the transport layer provides a clean Transport/TransportAcceptor abstraction with TCP, TLS (feature-gated), iroh (feature-gated), and ACME (feature-gated) implementations. All transports produce the AsyncRead + AsyncWrite + Unpin + Send streams that SSH consumes.
Acceptance Criteria
- All transport tasks completed
Transporttrait produces duplex streams consumed byrussh::connect_stream()/russh::run_stream()- TCP, TLS, iroh transports all work end-to-end
- ACME cert provisioning integrates with TLS acceptor
- Feature flags correctly gate optional transports
References
- docs/architecture/transport.md
Notes
To be filled by implementation agent
Summary
To be filled on completion