pub enum Commands {
Show 32 variants
Setup(SetupArgs),
Auth {
command: AuthCommands,
},
Workspace {
command: WorkspaceCommands,
},
Space {
command: SpaceCommands,
},
Folder {
command: FolderCommands,
},
List {
command: ListCommands,
},
Task {
command: TaskCommands,
},
Checklist {
command: ChecklistCommands,
},
Comment {
command: CommentCommands,
},
Tag {
command: TagCommands,
},
Field {
command: FieldCommands,
},
TaskType {
command: TaskTypeCommands,
},
Attachment {
command: AttachmentCommands,
},
Time {
command: TimeCommands,
},
Goal {
command: GoalCommands,
},
View {
command: ViewCommands,
},
Member {
command: MemberCommands,
},
User {
command: UserCommands,
},
Chat {
command: ChatCommands,
},
Doc {
command: DocCommands,
},
Webhook {
command: WebhookCommands,
},
Template {
command: TemplateCommands,
},
Guest {
command: GuestCommands,
},
Group {
command: GroupCommands,
},
Role {
command: RoleCommands,
},
Shared {
command: SharedCommands,
},
AuditLog {
command: AuditLogCommands,
},
Acl {
command: AclCommands,
},
AgentConfig {
command: AgentConfigCommands,
},
Mcp {
command: McpCommands,
},
Status,
Completions {
shell: Shell,
},
}Variants§
Setup(SetupArgs)
Configure API token and default workspace
Auth
Authentication commands
Fields
§
command: AuthCommandsWorkspace
Workspace commands
Fields
§
command: WorkspaceCommandsSpace
Space commands
Fields
§
command: SpaceCommandsFolder
Folder commands
Fields
§
command: FolderCommandsList
List commands
Fields
§
command: ListCommandsTask
Task commands
Fields
§
command: TaskCommandsChecklist
Checklist commands
Fields
§
command: ChecklistCommandsComment
Comment commands
Fields
§
command: CommentCommandsTag
Tag commands
Fields
§
command: TagCommandsField
Custom field commands
Fields
§
command: FieldCommandsTaskType
Custom task type commands
Fields
§
command: TaskTypeCommandsAttachment
Attachment commands
Fields
§
command: AttachmentCommandsTime
Time tracking commands
Fields
§
command: TimeCommandsGoal
Goal commands
Fields
§
command: GoalCommandsView
View commands
Fields
§
command: ViewCommandsMember
Member commands
Fields
§
command: MemberCommandsUser
User commands
Fields
§
command: UserCommandsChat
Chat commands (v3)
Fields
§
command: ChatCommandsDoc
Doc commands (v3)
Fields
§
command: DocCommandsWebhook
Webhook commands
Fields
§
command: WebhookCommandsTemplate
Template commands
Fields
§
command: TemplateCommandsGuest
Guest commands (Enterprise only)
Fields
§
command: GuestCommandsGroup
Group commands
Fields
§
command: GroupCommandsRole
Role commands (Enterprise only)
Fields
§
command: RoleCommandsShared hierarchy commands
AuditLog
Audit log commands (Enterprise only, v3)
Fields
§
command: AuditLogCommandsAcl
ACL commands (Enterprise only, v3)
Fields
§
command: AclCommandsAgentConfig
Generate CLI reference for AI agent configs
Fields
§
command: AgentConfigCommandsMcp
Start MCP server (Model Context Protocol over stdio)
Fields
§
command: McpCommandsStatus
Show current configuration and status
Completions
Generate shell completions
Trait Implementations§
Source§impl FromArgMatches for Commands
impl FromArgMatches for Commands
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>
Assign values from
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>
Assign values from
ArgMatches to self.Source§impl Subcommand for Commands
impl Subcommand for Commands
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
Append to
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
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for Commands
impl RefUnwindSafe for Commands
impl Send for Commands
impl Sync for Commands
impl Unpin for Commands
impl UnsafeUnpin for Commands
impl UnwindSafe for Commands
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
Mutably borrows from an owned value. Read more