Adds the full explain command with 7 output sections: entity summary, description, key decisions (heuristic event-note correlation), activity summary, open threads, related entities (closing MRs, cross-references), and timeline excerpt (reuses existing pipeline). Supports --sections filtering, --since time scoping, --no-timeline, --max-decisions, and robot mode JSON output. Closes: bd-2i3z, bd-a3j8, bd-wb0b, bd-3q5e, bd-nj7f, bd-9lbr
70 lines
2.7 KiB
Rust
70 lines
2.7 KiB
Rust
pub mod auth_test;
|
|
pub mod count;
|
|
#[cfg(unix)]
|
|
pub mod cron;
|
|
pub mod doctor;
|
|
pub mod drift;
|
|
pub mod embed;
|
|
pub mod explain;
|
|
pub mod file_history;
|
|
pub mod generate_docs;
|
|
pub mod ingest;
|
|
pub mod init;
|
|
pub mod list;
|
|
pub mod me;
|
|
pub mod related;
|
|
pub mod search;
|
|
pub mod show;
|
|
pub mod stats;
|
|
pub mod sync;
|
|
pub mod sync_status;
|
|
pub mod timeline;
|
|
pub mod trace;
|
|
pub mod who;
|
|
|
|
pub use auth_test::run_auth_test;
|
|
pub use count::{
|
|
print_count, print_count_json, print_event_count, print_event_count_json, run_count,
|
|
run_count_events,
|
|
};
|
|
#[cfg(unix)]
|
|
pub use cron::{
|
|
print_cron_install, print_cron_install_json, print_cron_status, print_cron_status_json,
|
|
print_cron_uninstall, print_cron_uninstall_json, run_cron_install, run_cron_status,
|
|
run_cron_uninstall,
|
|
};
|
|
pub use doctor::{DoctorChecks, print_doctor_results, run_doctor};
|
|
pub use drift::{DriftResponse, print_drift_human, print_drift_json, run_drift};
|
|
pub use embed::{print_embed, print_embed_json, run_embed};
|
|
pub use explain::{handle_explain, print_explain, print_explain_json, run_explain};
|
|
pub use file_history::{print_file_history, print_file_history_json, run_file_history};
|
|
pub use generate_docs::{print_generate_docs, print_generate_docs_json, run_generate_docs};
|
|
pub use ingest::{
|
|
DryRunPreview, IngestDisplay, print_dry_run_preview, print_dry_run_preview_json,
|
|
print_ingest_summary, print_ingest_summary_json, run_ingest, run_ingest_dry_run,
|
|
};
|
|
pub use init::{
|
|
InitInputs, InitOptions, InitResult, RefreshOptions, RefreshResult, delete_orphan_projects,
|
|
run_init, run_init_refresh, run_token_set, run_token_show,
|
|
};
|
|
pub use list::{
|
|
ListFilters, MrListFilters, NoteListFilters, open_issue_in_browser, open_mr_in_browser,
|
|
print_list_issues, print_list_issues_json, print_list_mrs, print_list_mrs_json,
|
|
print_list_notes, print_list_notes_json, query_notes, run_list_issues, run_list_mrs,
|
|
};
|
|
pub use me::run_me;
|
|
pub use related::{RelatedResponse, print_related_human, print_related_json, run_related};
|
|
pub use search::{
|
|
SearchCliFilters, SearchResponse, print_search_results, print_search_results_json, run_search,
|
|
};
|
|
pub use show::{
|
|
print_show_issue, print_show_issue_json, print_show_mr, print_show_mr_json, run_show_issue,
|
|
run_show_mr,
|
|
};
|
|
pub use stats::{print_stats, print_stats_json, run_stats};
|
|
pub use sync::{SyncOptions, SyncResult, print_sync, print_sync_json, run_sync, run_sync_surgical};
|
|
pub use sync_status::{print_sync_status, print_sync_status_json, run_sync_status};
|
|
pub use timeline::{TimelineParams, print_timeline, print_timeline_json_with_meta, run_timeline};
|
|
pub use trace::{parse_trace_path, print_trace, print_trace_json};
|
|
pub use who::{WhoRun, print_who_human, print_who_json, run_who};
|