lean_ctx/tools/registered/
mod.rs1pub mod ctx_agent;
2pub mod ctx_analyze;
3pub mod ctx_architecture;
4pub mod ctx_artifacts;
5pub mod ctx_benchmark;
6pub mod ctx_cache;
7pub mod ctx_call;
8pub mod ctx_callgraph;
9pub mod ctx_checkpoint;
10pub mod ctx_compare;
11pub mod ctx_compile;
12pub mod ctx_compose;
13pub mod ctx_compress;
14pub mod ctx_compress_memory;
15pub mod ctx_context;
16pub mod ctx_control;
17pub mod ctx_cost;
18pub mod ctx_dedup;
19pub mod ctx_delta;
20pub mod ctx_discover;
21pub mod ctx_discover_tools;
22pub mod ctx_edit;
23pub mod ctx_execute;
24pub mod ctx_expand;
25pub mod ctx_explore;
26pub mod ctx_feedback;
27pub mod ctx_fill;
28pub mod ctx_gain;
29pub mod ctx_git_read;
30pub mod ctx_glob;
31pub mod ctx_graph;
32pub mod ctx_handoff;
33pub mod ctx_heatmap;
34pub mod ctx_impact;
35pub mod ctx_index;
36pub mod ctx_intent;
37pub mod ctx_knowledge;
38pub mod ctx_ledger;
39pub mod ctx_load_tools;
40pub mod ctx_metrics;
41pub mod ctx_multi_read;
42pub mod ctx_multi_repo;
43pub mod ctx_outline;
44pub mod ctx_overview;
45pub mod ctx_pack;
46pub mod ctx_package;
47pub mod ctx_patch;
48pub mod ctx_plan;
49pub mod ctx_plugins;
50pub mod ctx_prefetch;
51pub mod ctx_preload;
52pub mod ctx_proof;
53pub mod ctx_provider;
54pub mod ctx_quality;
55pub mod ctx_radar;
56pub mod ctx_read;
57pub mod ctx_refactor;
58pub mod ctx_repomap;
59pub mod ctx_response;
60pub mod ctx_retrieve;
61pub mod ctx_review;
62pub mod ctx_routes;
63pub mod ctx_rules;
64pub mod ctx_search;
65pub mod ctx_semantic_search;
66pub mod ctx_session;
67pub mod ctx_share;
68pub mod ctx_shell;
69pub mod ctx_skillify;
70pub mod ctx_smart_read;
71pub mod ctx_smells;
72pub mod ctx_summary;
73pub mod ctx_symbol;
74pub mod ctx_task;
75pub mod ctx_tools;
76pub mod ctx_transcript_compact;
77pub mod ctx_tree;
78pub mod ctx_url_read;
79pub mod ctx_verify;
80pub mod ctx_workflow;
81pub mod plugin_tool;
82pub mod shell_alias;
83
84pub(crate) fn resolve_path_sync(
87 session: &crate::core::session::SessionState,
88 raw: &str,
89) -> Result<String, String> {
90 crate::core::path_resolve::resolve_tool_path_with_roots(
91 session.project_root.as_deref(),
92 session.shell_cwd.as_deref(),
93 raw,
94 &session.extra_roots,
95 )
96}
97
98