pub enum DevCommands {
Show 16 variants
Health,
Api(ApiArgs),
Exec(ExecArgs),
Schema {
path: Vec<String>,
},
Event {
command: EventCommands,
},
Projection {
command: ProjectionCommands,
},
Agent {
command: AgentCommands,
},
Observation {
command: ObservationCommands,
},
Mcp {
command: McpCommands,
},
Import {
command: ImportCommands,
},
Provider {
command: ProviderCommands,
},
Eval {
command: EvalCommands,
},
Snapshot,
Config,
Doctor,
Discover {
endpoints: bool,
exercises: bool,
query: Option<String>,
limit: Option<u32>,
},
}Variants§
Health
Check API health
Api(ApiArgs)
Direct API access (like gh api — works with any endpoint)
Exec(ExecArgs)
Execute one request from a JSON envelope file (defaults to stdin)
Schema
Emit machine-readable schema for CLI commands/args
Event
Event operations (create, list, batch)
Fields
command: EventCommandsProjection
Projection operations (get, list)
Fields
command: ProjectionCommandsAgent
Agent operations (vNext writes, context, legacy repair surfaces, preferences, visualization)
Fields
command: AgentCommandsObservation
Observation workflows (draft visibility + promotion)
Fields
command: ObservationCommandsMcp
MCP server operations (Model Context Protocol over stdio)
Fields
command: McpCommandsImport
External import job operations
Fields
command: ImportCommandsProvider
Provider connection operations
Fields
command: ProviderCommandsEval
Offline replay evaluation wrappers (worker-backed)
Fields
command: EvalCommandsSnapshot
Get all projections in one call (agent bootstrap snapshot)
Config
Get system configuration (dimensions, conventions, event types)
Doctor
Diagnose setup: API, auth, worker, system config
Discover
Discover API surfaces (OpenAPI endpoints or exercise vocabulary)
Fields
Trait Implementations§
Source§impl FromArgMatches for DevCommands
impl FromArgMatches for DevCommands
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§impl Subcommand for DevCommands
impl Subcommand for DevCommands
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for DevCommands
impl RefUnwindSafe for DevCommands
impl Send for DevCommands
impl Sync for DevCommands
impl Unpin for DevCommands
impl UnsafeUnpin for DevCommands
impl UnwindSafe for DevCommands
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more