Expand description
CLI-agnostic invocation model for the execution engine.
These types decouple the execution core from any specific CLI framework
(e.g., clap). The executor accepts OperationCall and ExecutionContext
and returns ExecutionResult, enabling library/SDK usage, alternative
frontends, and unit testing without CLI parsing dependencies.
Structs§
- Execution
Context - Execution-time configuration that is orthogonal to the operation itself.
- Operation
Call - Describes a single API operation to invoke, fully resolved from user input.
Enums§
- Execution
Result - Structured result returned by the executor. The CLI layer decides how to render this (JSON, YAML, table, etc.) — the executor never prints.