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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
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,
},
/// Manage code-index graph lifecycle through the Gobby daemon; read graph queries remain top-level [requires Gobby]
Graph {
#[command(subcommand)]
command: GraphCommand,
},
// ── 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 query, resolved to a canonical symbol ID [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 incoming call usages of a symbol query, resolved to a canonical symbol ID [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 for a symbol query, resolved to a canonical symbol ID [requires Gobby]
BlastRadius {
/// Symbol query
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,
},
}
#[derive(Subcommand)]
enum GraphCommand {
/// Clear the current project's code-index graph projection via the Gobby daemon [requires Gobby]
Clear,
/// Rebuild the current project's code-index graph projection via the Gobby daemon [requires Gobby]
Rebuild,
}
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::Graph {
command: GraphCommand::Clear,
} => commands::graph::clear(&ctx, cli.format),
Command::Graph {
command: GraphCommand::Rebuild,
} => commands::graph::rebuild(&ctx, cli.format),
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),
}
}
#[cfg(test)]
mod tests {
use super::*;
use clap::Parser;
#[test]
fn test_parse_graph_clear() {
let cli = Cli::try_parse_from(["gcode", "graph", "clear"]).expect("graph clear parses");
assert!(matches!(
cli.command,
Command::Graph {
command: GraphCommand::Clear
}
));
}
#[test]
fn test_parse_graph_rebuild() {
let cli = Cli::try_parse_from(["gcode", "graph", "rebuild"]).expect("graph rebuild parses");
assert!(matches!(
cli.command,
Command::Graph {
command: GraphCommand::Rebuild
}
));
}
#[test]
fn test_parse_callers_remains_top_level() {
let cli = Cli::try_parse_from(["gcode", "callers", "handleAuth"]).expect("callers parses");
match cli.command {
Command::Callers {
symbol_name,
limit,
offset,
} => {
assert_eq!(symbol_name, "handleAuth");
assert_eq!(limit, 10);
assert_eq!(offset, 0);
}
_ => panic!("expected top-level callers command"),
}
}
#[test]
fn test_parse_usages_remains_top_level() {
let cli = Cli::try_parse_from(["gcode", "usages", "DatabasePool"]).expect("usages parses");
match cli.command {
Command::Usages {
symbol_name,
limit,
offset,
} => {
assert_eq!(symbol_name, "DatabasePool");
assert_eq!(limit, 10);
assert_eq!(offset, 0);
}
_ => panic!("expected top-level usages command"),
}
}
#[test]
fn test_parse_imports_remains_top_level() {
let cli = Cli::try_parse_from(["gcode", "imports", "src/auth.ts"]).expect("imports parses");
match cli.command {
Command::Imports { file } => assert_eq!(file, "src/auth.ts"),
_ => panic!("expected top-level imports command"),
}
}
#[test]
fn test_parse_blast_radius_remains_top_level() {
let cli = Cli::try_parse_from(["gcode", "blast-radius", "handleAuth"])
.expect("blast-radius parses");
match cli.command {
Command::BlastRadius { target, depth } => {
assert_eq!(target, "handleAuth");
assert_eq!(depth, 3);
}
_ => panic!("expected top-level blast-radius command"),
}
}
}