Skip to main content

ProjectCommand

Enum ProjectCommand 

Source
pub enum ProjectCommand {
    Register {
Show 16 fields project_id: String, name: String, aliases: Vec<String>, project_root: PathBuf, board_dir: PathBuf, team_name: String, session_name: String, owner: Option<String>, tags: Vec<String>, channel_bindings: Vec<String>, thread_bindings: Vec<String>, allow_openclaw_supervision: bool, allow_cross_project_routing: bool, allow_shared_service_routing: bool, archived: bool, json: bool,
}, Unregister { project_id: String, json: bool, }, List { json: bool, }, Get { project_id: String, json: bool, }, Start { project_id: String, json: bool, }, Stop { project_id: String, json: bool, }, Restart { project_id: String, json: bool, }, Status { project_id: String, json: bool, }, SetActive { project_id: String, channel: Option<String>, binding: Option<String>, thread_binding: Option<String>, json: bool, }, Resolve { message: String, channel: Option<String>, binding: Option<String>, thread_binding: Option<String>, json: bool, }, }

Variants§

§

Register

Register a project in the global Batty/OpenClaw registry

Fields

§project_id: String

Stable unique project identifier

§name: String

Operator-facing project name

§aliases: Vec<String>

Alternate operator-facing aliases used for routing

§project_root: PathBuf

Repository root for the supervised project

§board_dir: PathBuf

Kanban board directory for the project

§team_name: String

Batty team name from team.yaml

§session_name: String

Explicit runtime session name

§owner: Option<String>

Optional owner or owning team

§tags: Vec<String>

Tag metadata

§channel_bindings: Vec<String>

Channel binding in the form =

§thread_bindings: Vec<String>

Thread binding in the form =#

§allow_openclaw_supervision: bool

Allow OpenClaw supervision actions for this project

§allow_cross_project_routing: bool

Allow cross-project routing for this project

§allow_shared_service_routing: bool

Allow shared-service routing for this project

§archived: bool

Mark the project archived at registration time

§json: bool

Emit machine-readable JSON output

§

Unregister

Remove a project from the registry

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

List

List all registered projects

Fields

§json: bool

Emit machine-readable JSON output

§

Get

Show one registered project by projectId

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

Start

Start one registered project by projectId

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

Stop

Stop one registered project by projectId

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

Restart

Restart one registered project by projectId

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

Status

Show lifecycle and health status for one registered project

Fields

§project_id: String

Stable unique project identifier

§json: bool

Emit machine-readable JSON output

§

SetActive

Set the active project used for implicit routing

Fields

§project_id: String

Stable unique project identifier

§channel: Option<String>

Optional channel provider name for channel-scoped activation

§binding: Option<String>

Optional channel binding identifier for channel-scoped activation

§thread_binding: Option<String>

Optional thread binding identifier for thread-scoped activation

§json: bool

Emit machine-readable JSON output

§

Resolve

Resolve which project a message should route to

Fields

§message: String

Message text to resolve

§channel: Option<String>

Optional channel provider name

§binding: Option<String>

Optional channel binding identifier

§thread_binding: Option<String>

Optional thread binding identifier

§json: bool

Emit machine-readable JSON output

Trait Implementations§

Source§

impl Debug for ProjectCommand

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromArgMatches for ProjectCommand

Source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Source§

fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Source§

impl Subcommand for ProjectCommand

Source§

fn augment_subcommands<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate Self via FromArgMatches::from_arg_matches_mut Read more
Source§

fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate self via FromArgMatches::update_from_arg_matches_mut Read more
Source§

fn has_subcommand(__clap_name: &str) -> bool

Test whether Self can parse a specific subcommand

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more