mod cli_base;
mod command_suggestions;
mod commands_agent;
mod commands_args;
#[cfg(feature = "ci")]
mod commands_ci;
#[cfg(feature = "client")]
mod commands_client;
mod commands_context;
mod commands_discuss;
#[cfg(feature = "git-overlay")]
mod commands_git_projection;
mod commands_hook;
mod commands_integration;
mod commands_main;
mod commands_oplog;
mod commands_query;
mod commands_redact;
mod commands_remote;
mod commands_review;
#[cfg(feature = "semantic")]
mod commands_semantic;
mod commands_shell;
mod commands_thread;
mod commands_visibility;
mod output_mode;
pub use cli_base::{Cli, CliContext, should_output_json};
pub use command_suggestions::{format_unrecognized_suggestion, suggested_command};
pub use commands_agent::{
AgentCommands, AgentFanoutCommands, AgentProvenanceCommands, AgentTaskCommands,
PresenceCommands,
};
pub use commands_args::{
AdoptArgs, AgentApiListArgs, AgentCaptureArgs, AgentFanoutPlanArgs, AgentFanoutStartArgs,
AgentHeartbeatArgs, AgentPresenceCompleteArgs, AgentPresenceExplainArgs, AgentPresenceListArgs,
AgentPresenceShowArgs, AgentProvenanceBeginArgs, AgentProvenanceEndArgs,
AgentProvenanceListArgs, AgentProvenanceSegmentArgs, AgentProvenanceShowArgs, AgentReadyArgs,
AgentReleaseArgs, AgentReleaseStatusArg, AgentReserveArgs, AgentTaskCreateArgs,
AgentTaskListArgs, AgentTaskShowArgs, AgentTaskStatusArg, AgentTaskUpdateArgs, CloneArgs,
CollapseArgs, CommitArgs, DiffArgs, DiffBaseArg, DoctorArgs, DoctorCommands, DoctorDocsArgs,
DoctorSchemasArgs, ExpandArgs, INIT_VERB, InitArgs, LandArgs, LogArgs, PullArgs, PushArgs,
ReadyArgs, ResolveArgs, RevertArgs, SnapshotArgs, SyncArgs, ThreadAbsorbArgs,
ThreadApprovalsArgs, ThreadApproveArgs, ThreadCapturesArgs, ThreadCheckMergeArgs,
ThreadDropArgs, ThreadMoveArgs, ThreadNameArgs, ThreadPromoteArgs, ThreadRenameArgs,
ThreadResolveArgs, ThreadRevokeApprovalArgs, ThreadShowArgs, ThreadStartArgs, TimelineCommands,
TimelineForkArgs, TimelineRecordFinishArgs, TimelineRecordStartArgs, TimelineRecordToolArgs,
TimelineRecoverArgs, TimelineResetArgs, TimelineStatusArgs, TimelineTargetArgs, UndoArgs,
WatchArgs, WorkspaceModeArg,
};
#[cfg(feature = "ci")]
pub use commands_ci::{CiCommands, CiRunArgs};
#[cfg(feature = "client")]
pub use commands_client::{
AgentTemplateArg, AuthCommands, AuthInviteCommands, AuthTrustCommands, ClaimArgs,
DEFAULT_CLAIM_WEB_ORIGIN,
};
pub use commands_context::ContextCommands;
#[cfg(all(feature = "git-overlay", feature = "ingest"))]
pub use commands_context::ContextReasonCommands;
pub use commands_discuss::{
DiscussAppendArgs, DiscussCommands, DiscussListArgs, DiscussOpenArgs, DiscussReopenArgs,
DiscussResolveArgs, DiscussShowArgs, ResolveModeArg,
};
#[cfg(feature = "git-overlay")]
pub use commands_git_projection::{BridgeCommands, BridgeGitCommands, GitSource, SyncCommands};
pub use commands_hook::{HookCommands, HookInstallSource};
pub use commands_integration::{
IntegrationCommands, IntegrationInstallArgs, IntegrationRelayArgs, IntegrationStampArgs,
IntegrationTargetArgs,
};
pub use commands_main::{
Commands, DaemonCommands, FsckArgs, FsckCommands, FsckRepairCommands, FsckRepairGitArgs,
MaintenanceCommands,
};
pub use commands_oplog::OplogCommands;
pub use commands_query::QueryArgs;
pub use commands_redact::{
PurgeApplyArgs, PurgeCommands, PurgeListArgs, RedactApplyArgs, RedactCommands, RedactListArgs,
RedactShowArgs,
};
pub use commands_remote::RemoteCommands;
pub use commands_review::{
ReviewCommands, ReviewHealthArgs, ReviewNextArgs, ReviewShowArgs, ReviewSignArgs, SignKindArg,
};
#[cfg(feature = "semantic")]
pub use commands_semantic::{HotEventKindArg, HotSpotKeyArg, SemanticCommands};
pub use commands_shell::{CompletionSubject, ShellCommands, ShellKind};
pub use commands_thread::{
ThreadCleanupArgs, ThreadCommands, ThreadListArgs, ThreadMarkerCommands,
};
pub use commands_visibility::{
VisibilityCommands, VisibilityListArgs, VisibilityPromoteArgs, VisibilitySetArgs,
VisibilityShowArgs, VisibilityTierArg,
};
pub use config::OutputMode;
pub use output_mode::CliOutputMode;