pub enum CliCommand {
Show 23 variants
Benchmark,
Stats {
format: OutputFormat,
},
Heatmap {
format: OutputFormat,
},
Impact {
format: OutputFormat,
},
Coupling {
format: OutputFormat,
},
Ownership {
format: OutputFormat,
},
Quality {
format: OutputFormat,
},
Timeline {
format: OutputFormat,
},
BusFactor {
format: OutputFormat,
},
TechDebt {
format: OutputFormat,
},
Health {
format: OutputFormat,
},
Summary {
format: OutputFormat,
},
Pack {
format: OutputFormat,
},
ReviewPack {
format: OutputFormat,
},
NextActions {
format: OutputFormat,
},
Why {
id: String,
format: OutputFormat,
},
Verify {
format: OutputFormat,
},
QuickAction {
id: String,
compact: bool,
format: OutputFormat,
},
Handoff {
target: String,
format: OutputFormat,
},
Log {
limit: usize,
format: OutputFormat,
},
ClearCache,
Help,
Version,
}Expand description
CLIコマンド
Variants§
Benchmark
ベンチマークモード
Stats
著者統計を出力
Fields
§
format: OutputFormatHeatmap
ファイルヒートマップを出力
Fields
§
format: OutputFormatImpact
Impact Scoreを出力
Fields
§
format: OutputFormatCoupling
Change Couplingを出力
Fields
§
format: OutputFormatOwnership
コードオーナーシップを出力
Fields
§
format: OutputFormatQuality
コミット品質スコアを出力
Fields
§
format: OutputFormatTimeline
活動タイムラインを出力
Fields
§
format: OutputFormatBusFactor
バスファクター分析を出力
Fields
§
format: OutputFormatTechDebt
技術的負債スコアを出力
Fields
§
format: OutputFormatHealth
プロジェクトヘルスダッシュボードを出力
Fields
§
format: OutputFormatSummary
現在のコンテキスト要約を出力
Fields
§
format: OutputFormatPack
AI向けインサイトパックを出力
Fields
§
format: OutputFormatReviewPack
AIレビュー用パックを出力
Fields
§
format: OutputFormatNextActions
推奨次アクションを出力
Fields
§
format: OutputFormatWhy
推奨項目の根拠を出力
Verify
リスク検証結果を出力
Fields
§
format: OutputFormatQuickAction
クイックアクションを実行
Handoff
ターゲットAI向けのハンドオフコンテキストを出力
Log
最新N件のログを出力
ClearCache
分析キャッシュを削除
Help
ヘルプ表示
Version
バージョン表示
Trait Implementations§
Source§impl Clone for CliCommand
impl Clone for CliCommand
Source§fn clone(&self) -> CliCommand
fn clone(&self) -> CliCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CliCommand
impl Debug for CliCommand
Source§impl PartialEq for CliCommand
impl PartialEq for CliCommand
impl StructuralPartialEq for CliCommand
Auto Trait Implementations§
impl Freeze for CliCommand
impl RefUnwindSafe for CliCommand
impl Send for CliCommand
impl Sync for CliCommand
impl Unpin for CliCommand
impl UnwindSafe for CliCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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