ADR-015 locks the call protocol's security model: - internal flag switches authority context to handler identity, not skip ACL - Operations have External/Internal visibility (Internal returns NOT_FOUND from wire, excluded from services/list) - OperationContext carries both identity (caller/principal) and handler_identity (handler/agent) - Scoped composition env bounds reachability (handler can only invoke declared operations) - Three controls together: visibility (wire boundary) + handler identity (authority) + scoped env (reachability) = least privilege Spec updates: - OperationSpec gains Visibility field (External/Internal) - OperationContext gains handler_identity field - AccessControl section: ACL runs against caller identity for external, handler identity for internal - LocalOperationEnv propagates handler_identity - services/list only returns External operations - Adapter-registered operations are Internal by default - OQ-18 resolved, ADR-015 referenced across all call crate specs
23 KiB
status, last_updated
| status | last_updated |
|---|---|
| draft | 2026-06-20 |
Operation Registry
OperationSpec, Handler, OperationRegistry, AccessControl, service discovery, and irpc integration.
What
The operation registry maps operation names to specs and handlers. It is the dispatch core of the call protocol — when a call.requested event arrives, the registry looks up the operation by name, checks access control, invokes the handler, and returns the result.
The registry is populated at startup by the CLI binary (or by the assembly layer in embedded contexts). Operations cannot be added or removed at runtime. This is consistent with OQ-04 (static registration at startup) and the HandlerRegistry model in alknet-core.
Why
The operation registry provides:
- Discoverability: Clients can query
/services/listand/services/schemato learn what operations exist before calling them - Access control: Each operation declares its required scopes and resources; the registry enforces ACL before invoking the handler
- Type safety: JSON Schema for input and output enables validation and client code generation
- Composability: Handlers can invoke other operations through
OperationEnv(local dispatch — remote dispatch is a separate architectural concern, see Constraints)
The registry design is informed by the @alkdev/operations TypeScript package, which demonstrated the same capabilities in JavaScript runtimes. The Rust implementation in alknet-call is canonical — it preserves the behavioral contract (namespace + operation name → invoke with input, return output) while defining the adapter contract (from_, to_) in Rust (see ADR-013).
Architecture
OperationSpec
Every registered operation has a spec that declares its name, type, schemas, and access control:
pub struct OperationSpec {
pub name: String, // e.g., "fs/readFile", "agent/chat" (no leading slash)
pub namespace: String, // e.g., "fs", "agent"
pub op_type: OperationType, // Query, Mutation, Subscription
pub visibility: Visibility, // External (wire-callable) or Internal (composition-only)
pub input_schema: Value, // JSON Schema for input
pub output_schema: Value, // JSON Schema for output
pub access_control: AccessControl,
}
pub enum OperationType {
Query, // Read-only, idempotent (e.g., "fs/readFile", "services/list")
Mutation, // Side effects (e.g., "bash/exec", "github/authenticate")
Subscription, // Streaming (e.g., "agent/chat", "events/subscribe")
}
pub enum Visibility {
External, // Callable from the wire (call.requested from a client)
Internal, // Composition-only (env.invoke from a handler)
}
Operation names use slash-based paths without a leading slash, aligned with URL path conventions: fs/readFile, agent/chat, services/list. The leading slash is added when needed for display (spec.path() returns /fs/readFile) and for wire format (the call.requested payload uses /fs/readFile). See OQ-13 for the path format decision (single-node service/op vs head/worker node/service/op).
The namespace field is derived from the name: for fs/readFile it's fs, for agent/chat it's agent. It's a convenience accessor for ACL matching and service grouping.
Visibility (ADR-015) controls whether an operation is callable from the wire. External operations are wire-facing — they appear in services/list and accept call.requested from clients. Internal operations are composition-only — they return NOT_FOUND (not FORBIDDEN) when called from the wire, and do not appear in services/list. The assembly layer declares visibility at registration. from_openapi and from_jsonschema adapters register operations as Internal by default (they're composition material, not directly callable); the handler that composes them is External.
AccessControl
pub struct AccessControl {
pub required_scopes: Vec<String>, // AND-checked: caller must have ALL
pub required_scopes_any: Option<Vec<String>>, // OR-checked: caller must have at LEAST ONE
pub resource_type: Option<String>, // e.g., "service"
pub resource_action: Option<String>, // e.g., "read"
}
When a call.requested event arrives:
- The
CallAdapterresolves the caller'sIdentityfromAuthContext(and possibly anAuthTokenin the payload) - The registry checks operation visibility — if the operation is
Internal, returnscall.errorwith codeNOT_FOUND(does not leak existence) - The registry checks
access_control.check(identity)— for external calls (internal: false), ACL runs against the caller's identity; for internal calls (internal: true), ACL runs against the handler's identity (ADR-015) - If access is denied, the adapter returns
call.errorwith codeFORBIDDEN - If the relevant identity is
Noneand the operation has restrictions, the adapter returnscall.errorwith codeFORBIDDENand message"authentication required"
Operations with empty AccessControl (no required scopes, no resource checks) are accessible to all callers, including unauthenticated ones.
Internal calls and authority context: When a handler invokes another operation through OperationEnv, the nested call is marked internal: true, meaning it originated from composition (not from a wire request). The internal flag switches the authority context: the ACL check runs against the composing handler's handler_identity (set at registration), not the caller's identity and not as a blanket skip. This prevents privilege escalation through composition — a handler can only compose operations its own identity is authorized for. See ADR-015.
Handler
pub type Handler = Arc<dyn Fn(Value, OperationContext) -> Pin<Box<dyn Future<Output = ResponseEnvelope> + Send>> + Send + Sync>;
Handlers are async — many operations (file I/O, HTTP service calls, irpc service calls) are inherently asynchronous. The handler receives an async runtime context and returns a Future<Output = ResponseEnvelope>.
A handler receives:
input: Value— the deserializedpayloadfrom thecall.requestedevent (alwaysserde_json::Value)context: OperationContext— request ID, identity, metadata, env
And returns a ResponseEnvelope containing the result or an error.
OperationContext
pub struct OperationContext {
pub request_id: String,
pub parent_request_id: Option<String>,
pub identity: Option<Identity>, // Caller's identity (inbound — who invoked me)
pub handler_identity: Option<Identity>, // Handler's identity (composition authority — who am I acting as)
pub capabilities: Capabilities,
pub metadata: HashMap<String, Value>,
pub env: OperationEnv,
pub internal: bool,
}
request_id: Correlates with thecall.requestedevent'sidfieldparent_request_id: Set when this call was initiated by another operation (viaOperationEnv). Records the agency chain — the call tree is the principal→agent chain (ADR-015)identity: The authenticated caller (fromIdentityProvider) — inbound auth (who is calling me). For external calls, this is who sent thecall.requested. For internal calls, this is the parent handler'shandler_identity(propagated throughOperationEnv::invoke())handler_identity: The identity of the handler processing this call. Set at registration by the assembly layer. For internal calls (internal: true), the ACL check runs against this identity (ADR-015)capabilities: Outbound credentials the handler may use (decrypted API keys, scoped vault access) — see Capability Injection belowmetadata: Additional context (connection info, tracing IDs). Must not hold secret material — see ADR-014env: The operation environment for composing calls to other operations. Scoped — the handler can only invoke a declared set of operations (ADR-015)internal: Whentrue, this call originated from composition (a handler calling another operation viaOperationEnv), not from a wire request. This switches the authority context: ACL runs againsthandler_identity, notidentity. Theinternalfield uses module-private construction — handlers constructOperationContextthroughOperationEnv::invoke()which setsinternal: true, or through theCallAdapterdispatch path which setsinternal: false. The field is notpubfor writes; onlypub fn is_internal(&self) -> boolis exposed for reads. See ADR-015.
identity and capabilities are orthogonal: identity is inbound (who is calling me), capabilities are outbound (what credentials I can use). identity and handler_identity are the principal/agent pair: identity is the principal (who delegated), handler_identity is the agent (who is acting). See ADR-014 for capabilities and ADR-015 for the privilege model.
OperationRegistry
pub struct OperationRegistry {
operations: HashMap<String, (OperationSpec, Handler)>,
}
The registry maps operation names to (OperationSpec, Handler) pairs. Key methods:
register(spec, handler): Add an operation at startuplookup(name): Find an operation by name, returning spec and handlerinvoke(name, input, context): Look up, check ACL, invoke handler, return resultlist_operations(): Return all registered specs (for/services/list)
The OperationRegistryBuilder provides a fluent API for constructing the registry at startup:
let registry = OperationRegistryBuilder::new()
.with(services_list_spec(), Arc::new(services_list_handler))
.with(services_schema_spec(), Arc::new(schema_handler))
.with(agent_chat_spec(), Arc::new(agent_chat_handler))
.build();
The CLI binary (or assembly layer) constructs the registry and passes it to the CallAdapter. Handlers are constructed with injected capabilities (see Capability Injection) before registration. Once built, the registry is immutable.
OperationEnv
#[async_trait]
pub trait OperationEnv: Send + Sync {
async fn invoke(&self, namespace: &str, operation: &str, input: Value, parent: &OperationContext) -> ResponseEnvelope;
}
OperationEnv is the universal composition mechanism. A handler calls context.env.invoke("fs", "readFile", input, &context) and gets a ResponseEnvelope back — regardless of whether the operation runs locally, via an irpc service, or on a remote node.
The parent parameter propagates the calling context: the nested call gets parent_request_id: Some(parent.request_id), inherits parent.identity, and is marked internal: true.
Local dispatch only. The initial OperationEnv implementation dispatches directly through the local OperationRegistry:
pub struct LocalOperationEnv {
registry: Arc<OperationRegistry>,
}
#[async_trait]
impl OperationEnv for LocalOperationEnv {
async fn invoke(&self, namespace: &str, operation: &str, input: Value, parent: &OperationContext) -> ResponseEnvelope {
let name = format!("{namespace}/{operation}");
let context = OperationContext {
request_id: format!("env-{name}"),
parent_request_id: Some(parent.request_id.clone()),
identity: parent.handler_identity.clone(), // Parent's handler identity becomes the caller
handler_identity: parent.handler_identity.clone(), // Inherit handler authority for ACL
capabilities: parent.capabilities.clone(), // Inherit caller's capabilities
metadata: parent.metadata.clone(), // Inherit caller's metadata
env: self.clone(),
internal: true, // Nested calls use handler authority
};
self.registry.invoke(&name, input, context).await
}
}
Future work may add irpc service dispatch and remote call protocol dispatch as additional backends. The handler-facing API stays the same.
Service Discovery
Two built-in operations expose what the node offers:
| Operation name | Display path | Type | Description |
|---|---|---|---|
services/list |
/services/list |
Query | List registered operation names and metadata |
services/schema |
/services/schema |
Query | Get the OperationSpec for a specific operation |
These are read-only — no admin operations are exposed through the call protocol itself.
services/list only returns External operations to remote callers. Internal operations are not part of the wire-facing API surface — they're implementation details of composition. A remote client cannot enumerate the internal call tree. See ADR-015.
services/list returns:
{
"operations": [
{ "name": "fs/readFile", "namespace": "fs", "op_type": "query" },
{ "name": "agent/chat", "namespace": "agent", "op_type": "subscription" },
{ "name": "events/subscribe", "namespace": "events", "op_type": "subscription" }
]
}
services/schema accepts { "name": "fs/readFile" } and returns the full OperationSpec including input/output JSON Schemas.
irpc Integration
irpc and the operation registry serve different scopes:
| Layer | Mechanism | Serialization | Scope |
|---|---|---|---|
| Call protocol (external) | EventEnvelope over QUIC streams |
JSON | Cross-language, cross-node |
| irpc services (internal) | VaultProtocol derive macro, Service trait |
postcard (binary) | Rust-to-Rust, in-process or in-cluster |
| Local dispatch (in-process) | Direct function call through OperationRegistry |
None | Same process |
irpc services are an internal dispatch mechanism — they are not directly exposed on the call protocol. The vault's VaultProtocol uses irpc for in-process, type-safe dispatch via VaultServiceHandle (postcard serialization for in-cluster, direct calls for in-process). The vault is accessed by the assembly layer (CLI binary) at startup, not by handlers at call time. See ADR-008 and ADR-014.
If a handler internally uses an irpc-based service, the handler bridges the two: it receives JSON input from the call protocol, calls the irpc service in-process (postcard, type-safe), and serializes the result back to JSON for the call protocol response. This layering preserves irpc's type safety for internal calls while keeping the external interface cross-language.
Operation Registration at Startup
The CLI binary (or assembly layer) constructs handlers with the credentials they need (from the vault — see Capability Injection), then registers them before starting the endpoint:
// Assembly layer: unlock vault, derive credentials, construct handlers
let vault = VaultServiceHandle::new();
vault.unlock(&mnemonic, passphrase.as_deref())?;
let google_api_key = vault.decrypt(&google_key_blob)?;
let github_signing_key = vault.derive_ed25519(PATHS::GITHUB_SIGNING)?;
// Construct handlers with injected capabilities
let agent_handler = Arc::new(agent_chat_handler(Capabilities::new()
.with_api_key("google", google_api_key)));
let github_handler = Arc::new(github_authenticate_handler(Capabilities::new()
.with_signing_key(github_signing_key)));
// Register operations — vault operations are NOT registered here
let registry = OperationRegistryBuilder::new()
// Built-in service discovery
.with(services_list_spec(), Arc::new(services_list_handler))
.with(services_schema_spec(), Arc::new(schema_handler))
// Agent and GitHub handlers (constructed with injected capabilities)
.with(agent_chat_spec(), agent_handler)
.with(github_authenticate_spec(), github_handler)
.build();
let call_adapter = CallAdapter::new(Arc::new(registry), identity_provider);
The vault is used at construction time, not registered as call protocol operations. The registry is immutable after construction. Adding operations requires restarting the process. This is consistent with OQ-04, ADR-008, and ADR-014.
Capability Injection
Handlers that need outbound credentials (LLM provider API keys, signing keys, HTTP service tokens) receive them through the Capabilities type on OperationContext, not by calling vault operations over the wire and not from environment variables. This is the mechanism that ADR-008 described in prose ("derived keys and decrypted credentials are injected into operation contexts at the assembly layer") and that ADR-014 specifies as a one-way door.
The flow is:
Assembly layer (CLI startup):
1. Unlock vault (local, mnemonic from secure prompt or file)
2. Derive / decrypt the credentials each handler needs
3. Construct handlers with those credentials
4. Register operations with the constructed handlers
5. Start the endpoint
Handler invocation (at call time):
call.requested → OperationContext { capabilities, identity, ... }
handler reads capabilities → uses the credential for its outbound call
The Capabilities type holds non-serializable, zeroized secret material. It does not implement Serialize — it cannot cross the call protocol wire even by accident. The concrete shape of the type (a typed map, a struct with named fields, a trait object) is a two-way door for implementation. The one-way constraints are fixed by ADR-014:
- Capabilities are populated by the assembly layer at handler construction (the common case: a static decrypted API key) or scoped per-request for internal-only flows. They are never populated from call protocol inputs.
- Capabilities hold secret material that does not implement
Serializeand does not appear inEventEnvelopepayloads. - The call protocol carries no secret material. See call-protocol.md for the wire-level constraint.
No vault operations are registered in the call protocol. The vault is assembly-layer only (ADR-008, ADR-014). A handler that needs a child key for a specific operation (e.g., signing for GitHub auth) receives a scoped capability that performs the derivation in-process — it never holds the master seed and never calls a network-exposed vault operation.
Adapters take credential sources. The from_openapi and from_jsonschema adapter patterns (see OQ-15, constrained by ADR-014) register HTTP-backed operations. The credential the HTTP service needs (bearer token, API key) is provided by the assembly layer at registration time — the adapter receives a credential source, not a static token string. This is the integration point where the vault feeds credentials into HTTP-backed operations, including LLM providers that expose OpenAPI-compatible endpoints. Adapter-registered operations are Internal by default (ADR-015) — they're composition material, not directly callable from the wire.
Scoped composition env. The OperationEnv given to a handler is scoped — it can only invoke a declared set of operations, set at registration by the assembly layer. This bounds the parameterized-dispatch attack surface: a handler (or an LLM picking tools, or a quickjs sandbox) can only reach declared operations, not the entire registry. The scoped env is the reachability control; the handler identity is the authority control. Both are needed for least privilege. See ADR-015.
Constraints
- The registry is immutable after construction. No runtime registration or deregistration. Two-way door —
ArcSwap<OperationRegistry>can be added later. - Operation specs use JSON Schema. The call protocol's external interface is always JSON. irpc's postcard serialization is internal only.
OperationEnv::invoke()dispatches through the local registry. Remote dispatch (federation, head/worker routing) would be a separate mechanism at a different layer — not a prefix added to operation paths. irpc service dispatch is contracted but not built.- The call protocol does not depend on any database. Operation specs are in-memory, populated at startup.
OperationContext.internalis set byOperationEnv, not by callers. A handler cannot mark its own call as internal. Theinternalflag switches authority context (handler identity for ACL), it does not skip ACL — see ADR-015.- Operations have External/Internal visibility.
Internaloperations returnNOT_FOUNDwhen called from the wire and are excluded fromservices/list. The assembly layer declares visibility at registration. See ADR-015. - The composition env is scoped. A handler can only invoke operations declared in its scoped env. This bounds parameterized-dispatch attack surface. See ADR-015.
- No vault operations are registered in the call protocol. The vault is assembly-layer only (ADR-008, ADR-014). Handlers receive secret material through
OperationContext.capabilities, not by calling vault operations over the wire. - The call protocol carries no secret material. Secret material (private keys, API keys, mnemonics, decrypted credentials) must not appear in
call.requestedpayloads,call.respondedpayloads, orOperationContext.metadata. See ADR-014.
Design Decisions
| Decision | ADR | Summary |
|---|---|---|
| irpc as call protocol foundation | ADR-005 | irpc provides framing and service dispatch |
| Call protocol stream model | ADR-012 | Bidirectional streams, EventEnvelope, ID-based correlation |
| Static handler registration | ADR-010 | Registry is immutable after construction |
| Vault integration via assembly layer | ADR-008 | Vault is a capability source, accessed at assembly time |
| Secret material flow and capability injection | ADR-014 | Capabilities carry outbound credentials; call protocol carries no secret material |
| Privilege model and authority context | ADR-015 | internal = authority switch not ACL skip; External/Internal visibility; handler identity + scoped env |
Open Questions
See open-questions.md for full details.
- OQ-13 (resolved): Operation path format is
/{service}/{op}. Remote dispatch is a separate mechanism, not a path prefix. - OQ-14 (resolved): Batch is a client-side pattern of correlated
call.requestedevents, not a protocol primitive. - OQ-15 (open): Call protocol client and adapter contract. ADR-014 constrains the adapter contract: adapters take credential sources from the assembly layer, not static tokens. ADR-015 constrains: adapter-registered operations are
Internalby default. - OQ-16 (resolved by ADR-014): No vault operations are exposed over the call protocol for now.
- OQ-17 (open): Abort cascade semantics —
call.abortedcascades to descendants, defaultabort-dependents,continue-runningopt-in. One-way door on the event schema; mechanism is a two-way door. - OQ-19 (open): Session-scoped operation registries — agent-written operations overlaid on the global registry via
OperationEnvtrait layering. Protocol doesn't need changes; one-way door is not closing the trait-based composition point.
References
- call-protocol.md — CallAdapter, EventEnvelope, stream model, PendingRequestMap
- ADR-005: irpc as call protocol foundation
- ADR-008: Vault integration point
- ADR-010: ALPN router and endpoint (static registration)
- ADR-012: Call protocol stream model
- Reference implementation:
/workspace/@alkdev/alknet-main/crates/alknet-core/src/call/