Break down the three initial crates (alknet-vault, alknet-core, alknet-call) into dependency-ordered task files for implementation agents. Structure: - tasks/vault/ (10 tasks) — drift fixes from ADR-025/026 refactor, review, spec sync. Vault is independent and can run fully in parallel with core/call. - tasks/core/ (6 tasks) — crate init, core types, config, auth, endpoint, review. Core is foundational; call depends on it. - tasks/call/ (12 tasks) — split into registry/ and protocol/ topic subdirs reflecting the two subsystems. CallAdapter is the merge point. Key decisions: - Drifts 3+9+10 grouped as one task (key-versioning-rotation) — the complete ADR-021 rotation feature that doesn't compile in pieces - Reviews injected at end of each crate phase (vault, core, call) - Vault spec-sync task removes the drift table and bumps doc status to stable - ACME deferred in core/endpoint (noted as TODO; X509 manual certs for now) - OperationEnv kept as a trait (load-bearing for ADR-024 layering) Validated: 28 tasks, no cycles, 11 generations of parallel work. Critical path runs through call (11 tasks). Vault completes by generation 4. 6 high-risk tasks identified (21%): irpc-removal, endpoint, operation-context, operation-env, call-adapter, abort-cascade.
6.9 KiB
id, name, status, depends_on, scope, risk, impact, level
| id | name | status | depends_on | scope | risk | impact | level | |
|---|---|---|---|---|---|---|---|---|
| call/review-call | Review alknet-call implementation for spec conformance and pattern consistency | pending |
|
broad | low | phase | review |
Description
Review the alknet-call implementation for spec conformance, pattern consistency, and correctness. This is the quality checkpoint at the end of the call phase — the most complex crate in this batch.
Review Checklist
-
Registry conformance (operation-registry.md):
OperationSpechas all 8 fields,path()adds leading slashOperationType(Query/Mutation/Subscription),Visibility(External/Internal)ErrorDefinitionwith code, description, schema, http_status (ADR-023)AccessControlwith required_scopes (AND), required_scopes_any (OR), resource checksAccessControl::checkreturns Allowed/Forbidden, None identity with restrictions → ForbiddenOperationContexthas all 10 fields,internalis pub(crate),is_internal()readsAbortPolicy(AbortDependents default, ContinueRunning opt-in)CompositionAuthoritywith label, scopes, resources,as_identity()ScopedOperationEnvwithallows()reachability checkHandlertype (async closure → ResponseEnvelope)HandlerRegistrationwith all 6 fields (spec, handler, provenance, authority, scoped_env, caps)OperationProvenancewith all 6 variantsOperationRegistrywith register, registration, invoke, list_operationsOperationRegistryBuilderwith with_local, with_leaf, with, buildOperationEnvtrait with invoke, invoke_with_policy, containsLocalOperationEnvreachability check, authority switch, fresh metadata, inherited deadlineCompositeOperationEnvoverlay dispatch (session → connection → base), contains probeservices/listreturns External only,services/schemareturns full spec
-
Protocol conformance (call-protocol.md):
EventEnvelopewith type, id, payload (JSON, length-prefixed framing)ResponseEnvelopewith request_id, resultCallErrorwith code, message, retryable, details- 5 event types: call.requested, call.responded, call.completed, call.aborted, call.error
- Wire payload schemas match spec table
call.requestedhas operationId (leading slash), input, optional auth_tokencall.errorhas protocol-level codes (NOT_FOUND, FORBIDDEN, INVALID_INPUT, INTERNAL, TIMEOUT)PendingRequestMapcorrelates by ID (not stream), handles all event typesCallConnectionwith Layer 2 overlay, register_imported, overlay_env, call/subscribe/abortCallAdapterimplements ProtocolHandler for alknet/call- CallAdapter stream handling (accept_bi loop, FrameFramedReader/Writer)
- Per-request identity resolution (auth_token overrides connection-level)
build_root_contextsets internal: false, deadline, capabilities from registrationcompose_root_envbuilds CompositeOperationEnv (base + session + connection)- operationId leading slash stripped before lookup
- ResponseEnvelope → EventEnvelope conversion
- Timeout: 30s default, composed calls inherit parent deadline
- Abort cascade: walks tree by parent_request_id, AbortDependents/ContinueRunning
-
ADR conformance:
- ADR-005: irpc framing used
- ADR-012: bidirectional streams, ID-based correlation
- ADR-014: no secret material on wire, Capabilities non-serializable
- ADR-015: internal flag switches authority (handler_identity vs identity), Visibility
- ADR-016: abort cascade, AbortPolicy, default AbortDependents
- ADR-017: connection direction independent of call direction
- ADR-022: registration bundle (provenance, authority, scoped_env, capabilities)
- ADR-023: ErrorDefinition, typed details in call.error
- ADR-024: registry layering (curated + session + connection), OperationEnv as trait
-
Security constraints:
- Capabilities non-serializable (no Serialize derive)
- Capabilities zeroized, immutable after construction
- Metadata does not propagate through composition (fresh HashMap::new())
- Call protocol carries no secret material
- Internal ops return NOT_FOUND from wire (don't leak existence)
- Reachability check (scoped_env.allows) bounds composition attack surface
- Request IDs are UUID v4 (non-deterministic, no collisions)
-
Pattern consistency:
- OperationEnv is a trait (not concrete) — enables layering
- CompositeOperationEnv uses contains() probe before dispatch
- Authority switch in invoke_with_policy (child identity = parent handler_identity)
- Deadline inheritance (children don't get fresh 30s)
- ArcSwap not used in call (that's core's pattern)
-
Test coverage:
- Unit tests for AccessControl::check (all combinations)
- Unit tests for OperationContext construction
- Unit tests for OperationEnv (LocalOperationEnv, CompositeOperationEnv)
- Unit tests for PendingRequestMap (all event types, timeouts, fail_all)
- Unit tests for framing (round-trip, truncation)
- Unit tests for abort cascade (both policies, tree walking)
- Integration test: call.requested → dispatch → call.responded
- Integration test: auth_token overrides identity
- Integration test: Internal op → NOT_FOUND from wire
- Integration test: ACL denied → FORBIDDEN
- Integration test: subscription streaming (multiple responded, completed)
Acceptance Criteria
- All registry types match operation-registry.md
- All protocol types match call-protocol.md
- All ADRs conformed to (005, 012, 014, 015, 016, 017, 022, 023, 024)
- Capabilities non-serializable, zeroized, immutable
- Metadata does not propagate through composition
- Internal ops return NOT_FOUND from wire
- Reachability check bounds composition
- Request IDs are UUID v4
- OperationEnv is a trait (not concrete)
- CompositeOperationEnv uses contains() probe
- Authority switch correct (internal: true → handler_identity)
- Deadline inheritance correct (children inherit parent deadline)
- Test coverage adequate for all functionality
cargo fmt --check -p alknet-callpassescargo clippy -p alknet-callpasses with no warnings- All tests pass
References
- docs/architecture/crates/call/README.md
- docs/architecture/crates/call/call-protocol.md
- docs/architecture/crates/call/operation-registry.md
- docs/architecture/decisions/ (relevant ADRs: 005, 012, 014-017, 022-024)
Notes
This is the most complex crate in this batch. The review should verify that the registry layering (ADR-024), authority switch (ADR-015), abort cascade (ADR-016), and composition model (ADR-022) all work correctly together. The OperationEnv trait-object design is load-bearing — verify it's a trait, not concrete. If deviations are found, document and fix before considering the call crate complete.
Summary
To be filled on completion