1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
mod commands;
mod config;
mod db;
mod index;
mod models;
mod neo4j;
mod output;
mod progress;
mod project;
mod savings;
mod schema;
mod search;
mod secrets;
mod skill;
use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(name = "gcode", version, about = "Fast code index CLI for Gobby")]
struct Cli {
/// Override project root (default: detect from cwd)
#[arg(long, global = true)]
project: Option<String>,
/// Output format
#[arg(long, global = true, default_value = "json")]
format: output::Format,
/// Suppress warnings
#[arg(long, global = true)]
quiet: bool,
/// Enable verbose output
#[arg(long, global = true)]
verbose: bool,
#[command(subcommand)]
command: Command,
}
#[derive(Subcommand)]
enum Command {
// ── Project Setup ────────────────────────────────────────────────
/// Initialize project context (.gobby/gcode.json)
Init,
/// Index a directory (full or incremental). Writes symbols, files, and chunks to SQLite
Index {
/// Path to index (default: project root)
path: Option<String>,
/// Index only specific files
#[arg(long, num_args = 1..)]
files: Option<Vec<String>>,
/// Force full reindex (skip incremental hash check)
#[arg(long)]
full: bool,
},
/// Show project index status
Status,
/// Clear index and force re-index
Invalidate {
/// Skip confirmation prompt
#[arg(long)]
force: bool,
},
// ── Search (works in all modes) ──────────────────────────────────
/// Hybrid search: FTS5 + optional semantic (Qdrant) + optional graph boost (Neo4j)
Search {
query: String,
#[arg(long, default_value = "10")]
limit: usize,
/// Skip first N results (for pagination)
#[arg(long, default_value = "0")]
offset: usize,
/// Filter by symbol kind
#[arg(long)]
kind: Option<String>,
/// Filter by file path glob (e.g. "src/**/*.rs", "*.py")
#[arg(long)]
path: Option<String>,
},
/// FTS5 search on symbol metadata (names, signatures, docstrings)
SearchText {
query: String,
#[arg(long, default_value = "10")]
limit: usize,
/// Skip first N results (for pagination)
#[arg(long, default_value = "0")]
offset: usize,
/// Filter by file path glob (e.g. "src/**/*.rs", "*.py")
#[arg(long)]
path: Option<String>,
},
/// FTS5 search on file content chunks
SearchContent {
query: String,
#[arg(long, default_value = "10")]
limit: usize,
/// Skip first N results (for pagination)
#[arg(long, default_value = "0")]
offset: usize,
/// Filter by file path glob (e.g. "src/**/*.rs", "*.py")
#[arg(long)]
path: Option<String>,
},
// ── Symbol Retrieval (works in all modes) ────────────────────────
/// Hierarchical symbol tree for a file
Outline { file: String },
/// Fetch symbol source code by ID (byte-offset read)
Symbol { id: String },
/// Batch retrieve symbols by ID
Symbols { ids: Vec<String> },
/// List distinct symbol kinds in the index
Kinds,
/// File tree with symbol counts
Tree,
// ── Dependency Graph (requires Gobby) ──────────────────────────────
/// Find callers of a symbol [requires Gobby]
Callers {
symbol_name: String,
#[arg(long, default_value = "10")]
limit: usize,
/// Skip first N results (for pagination)
#[arg(long, default_value = "0")]
offset: usize,
},
/// Find all usages of a symbol — calls + imports [requires Gobby]
Usages {
symbol_name: String,
#[arg(long, default_value = "10")]
limit: usize,
/// Skip first N results (for pagination)
#[arg(long, default_value = "0")]
offset: usize,
},
/// Show import graph for a file [requires Gobby]
Imports { file: String },
/// Transitive impact analysis [requires Gobby]
BlastRadius {
/// Symbol name or file path
target: String,
#[arg(long, default_value = "3")]
depth: usize,
},
// ── Project Management ───────────────────────────────────────────
/// Directory-grouped project stats
RepoOutline,
/// List indexed projects
Projects,
/// Remove stale projects (dead paths, invalid entries)
Prune {
/// Skip confirmation prompt
#[arg(long)]
force: bool,
},
}
fn main() -> anyhow::Result<()> {
let cli = Cli::parse();
// Commands that must run before Context::resolve() (work on uninitialized projects)
match &cli.command {
Command::Init => {
let root = match &cli.project {
Some(p) => std::path::PathBuf::from(p).canonicalize()?,
None => config::detect_project_root()?,
};
return commands::init::run(&root, cli.format, cli.quiet);
}
Command::Projects => {
return commands::status::projects(cli.format);
}
Command::Prune { force } => {
return commands::status::prune(*force);
}
_ => {}
}
let ctx = config::Context::resolve(cli.project.as_deref(), cli.quiet)?;
match cli.command {
Command::Init | Command::Projects | Command::Prune { .. } => unreachable!(),
Command::Index { path, files, full } => commands::index::run(&ctx, path, files, full),
Command::Status => commands::status::run(&ctx, cli.format),
Command::Invalidate { force } => commands::status::invalidate(&ctx, force),
Command::Search {
query,
limit,
offset,
kind,
path,
} => commands::search::search(
&ctx,
&query,
limit,
offset,
kind.as_deref(),
path.as_deref(),
cli.format,
),
Command::SearchText {
query,
limit,
offset,
path,
} => {
commands::search::search_text(&ctx, &query, limit, offset, path.as_deref(), cli.format)
}
Command::SearchContent {
query,
limit,
offset,
path,
} => commands::search::search_content(
&ctx,
&query,
limit,
offset,
path.as_deref(),
cli.format,
),
Command::Outline { file } => {
commands::symbols::outline(&ctx, &file, cli.format, cli.verbose)
}
Command::Symbol { id } => commands::symbols::symbol(&ctx, &id, cli.format),
Command::Symbols { ids } => commands::symbols::symbols(&ctx, &ids, cli.format),
Command::Kinds => commands::symbols::kinds(&ctx, cli.format),
Command::Tree => commands::symbols::tree(&ctx, cli.format),
Command::Callers {
symbol_name,
limit,
offset,
} => commands::graph::callers(&ctx, &symbol_name, limit, offset, cli.format),
Command::Usages {
symbol_name,
limit,
offset,
} => commands::graph::usages(&ctx, &symbol_name, limit, offset, cli.format),
Command::Imports { file } => commands::graph::imports(&ctx, &file, cli.format),
Command::BlastRadius { target, depth } => {
commands::graph::blast_radius(&ctx, &target, depth, cli.format)
}
Command::RepoOutline => commands::status::repo_outline(&ctx, cli.format),
}
}