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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
mod app;
mod assets;
mod cache;
mod changes;
mod classify;
mod compress;
mod config;
mod delta;
mod extract;
mod fields;
mod filter;
mod localization;
mod mcp;
mod progress;
mod query;
mod recall;
mod render;
mod rust_plugin;
mod search;
mod serve;
mod snippet;
mod store;
mod symbol_locator;
mod watch;
use std::path::PathBuf;
use clap::{Parser, Subcommand, ValueEnum};
#[derive(Parser)]
#[command(
name = "grapha",
version,
about = "Structural code graph for LLM consumption"
)]
struct Cli {
/// ANSI color mode for tree output
#[arg(long, global = true, value_enum, default_value_t = ColorMode::Auto)]
color: ColorMode,
#[command(subcommand)]
command: Commands,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)]
enum ColorMode {
Auto,
Always,
Never,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)]
enum QueryOutputFormat {
Json,
Tree,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)]
enum TraceDirection {
Forward,
Reverse,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, ValueEnum)]
enum OriginTerminalFilter {
Network,
Persistence,
Cache,
Event,
Keychain,
Search,
}
impl OriginTerminalFilter {
const fn as_str(self) -> &'static str {
match self {
Self::Network => "network",
Self::Persistence => "persistence",
Self::Cache => "cache",
Self::Event => "event",
Self::Keychain => "keychain",
Self::Search => "search",
}
}
}
#[derive(Subcommand)]
enum Commands {
/// Analyze source files and output graph
Analyze {
/// File or directory to analyze
path: PathBuf,
/// Output file (default: stdout)
#[arg(short, long)]
output: Option<PathBuf>,
/// Filter node kinds (comma-separated: fn,struct,enum,trait,impl,mod,field,variant)
#[arg(long)]
filter: Option<String>,
/// Output in compact grouped format (optimized for LLM consumption)
#[arg(long)]
compact: bool,
},
/// Index a project into persistent storage
Index {
/// Project directory to index
path: PathBuf,
/// Storage format: "json" or "sqlite" (default: sqlite)
#[arg(long, default_value = "sqlite")]
format: String,
/// Storage directory (default: .grapha/ in project root)
#[arg(long)]
store_dir: Option<PathBuf>,
/// Force a full store/search rebuild instead of using incremental sync
#[arg(long)]
full_rebuild: bool,
/// Show per-phase timing breakdown for performance profiling
#[arg(long)]
timing: bool,
},
/// Launch web UI for interactive graph exploration
Serve {
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Port to listen on
#[arg(long, default_value = "8080")]
port: u16,
/// Run as MCP server over stdio (instead of HTTP)
#[arg(long)]
mcp: bool,
/// Watch for file changes and auto-update the graph
#[arg(long)]
watch: bool,
},
/// Query symbol relationships and search indexed symbols
Symbol {
#[command(subcommand)]
command: SymbolCommands,
},
/// Inspect dataflow between symbols, entries, and effects
Flow {
#[command(subcommand)]
command: FlowCommands,
},
/// Inspect localization references and usage sites
#[command(name = "l10n")]
L10n {
#[command(subcommand)]
command: L10nCommands,
},
/// Inspect image asset catalogs and usage sites
Asset {
#[command(subcommand)]
command: AssetCommands,
},
/// Run repository-scoped analysis over the indexed graph
Repo {
#[command(subcommand)]
command: RepoCommands,
},
}
#[derive(Subcommand)]
enum SymbolCommands {
/// Search symbols by name or file
Search {
/// Search query
query: String,
/// Max results
#[arg(long, default_value = "20")]
limit: usize,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Filter by symbol kind (function, struct, enum, trait, etc.)
#[arg(long)]
kind: Option<String>,
/// Filter by module name
#[arg(long)]
module: Option<String>,
/// Filter by file path glob
#[arg(long)]
file: Option<String>,
/// Filter by role (entry_point, terminal, internal)
#[arg(long)]
role: Option<String>,
/// Enable fuzzy matching (tolerates typos)
#[arg(long)]
fuzzy: bool,
/// Include source snippet and relationships in results
#[arg(long)]
context: bool,
/// Fields to display (comma-separated: file,id,locator,module,span,snippet,visibility,signature,role; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Query symbol context (callers, callees, implementors)
Context {
/// Symbol name or ID
symbol: String,
/// Project directory (reads from .grapha/)
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display (comma-separated: file,id,locator,module,span,snippet,visibility,signature,role; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Analyze blast radius of changing a symbol
Impact {
/// Symbol name or ID
symbol: String,
/// Maximum traversal depth
#[arg(long, default_value = "3")]
depth: usize,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display (comma-separated: file,id,locator,module,span,snippet,visibility,signature,role; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Analyze structural complexity of a type (properties, dependencies, invalidation surface)
Complexity {
/// Type name or ID to analyze
symbol: String,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
/// List all declarations in a file, ordered by source position
File {
/// File name or path suffix (e.g. "RoomPage.swift" or "src/main.rs")
file: String,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
}
#[derive(Subcommand)]
enum FlowCommands {
/// Trace dataflow forward to terminals or backward to entry points
Trace {
/// Symbol name or ID
symbol: String,
/// Trace direction
#[arg(long, value_enum, default_value_t = TraceDirection::Forward)]
direction: TraceDirection,
/// Maximum traversal depth
#[arg(long)]
depth: Option<usize>,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Derive a semantic effect graph from a symbol
Graph {
/// Symbol name or ID
symbol: String,
/// Maximum traversal depth
#[arg(long, default_value = "10")]
depth: usize,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Trace backward to likely API/data origins for a UI symbol
Origin {
/// Symbol name or ID
symbol: String,
/// Maximum traversal depth
#[arg(long, default_value = "10")]
depth: usize,
/// Keep only origins whose terminal kind matches
#[arg(long, value_enum)]
terminal_kind: Option<OriginTerminalFilter>,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in output (comma-separated: file,snippet; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// List auto-detected entry points
Entries {
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Filter entry points by module name
#[arg(long)]
module: Option<String>,
/// Filter entry points by file path or suffix
#[arg(long)]
file: Option<String>,
/// Limit the number of shown entries
#[arg(long)]
limit: Option<usize>,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
}
#[derive(Subcommand)]
enum L10nCommands {
/// Resolve localization records reachable from a SwiftUI symbol subtree
Symbol {
/// Symbol name or ID
symbol: String,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
/// Find SwiftUI usage sites for a localization key or translated value
Usages {
/// Localization key or translated string value
key: String,
/// Optional table/catalog name
#[arg(long)]
table: Option<String>,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
}
#[derive(Subcommand)]
enum AssetCommands {
/// List image assets from indexed catalogs
List {
/// Only show assets with no references in source code
#[arg(long)]
unused: bool,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
/// Find source code usage sites for an image asset
Usages {
/// Asset name (e.g., "icon_gift" or "Room/voiceWave")
name: String,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value_t = QueryOutputFormat::Json)]
format: QueryOutputFormat,
/// Fields to display in tree output (comma-separated: file; or "full"/"all"/"none")
#[arg(long)]
fields: Option<String>,
},
}
#[derive(Subcommand)]
enum RepoCommands {
/// Detect code changes and analyze their impact
Changes {
/// Scope: "unstaged", "staged", "all", or a git ref (e.g., "main")
#[arg(default_value = "all")]
scope: String,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
/// Show file/symbol map for orientation in large projects
Map {
/// Filter by module name
#[arg(long)]
module: Option<String>,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
/// Detect code smells across the graph (god types, deep nesting, wide invalidation, etc.)
Smells {
/// Filter to a specific module
#[arg(long)]
module: Option<String>,
/// Limit smell analysis to symbols declared in a matching file
#[arg(long)]
file: Option<String>,
/// Limit smell analysis to a specific symbol and its local neighborhood
#[arg(long)]
symbol: Option<String>,
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
/// Show per-module metrics (symbol counts, coupling, entry points)
Modules {
/// Project directory
#[arg(short, long, default_value = ".")]
path: PathBuf,
},
}
fn main() -> anyhow::Result<()> {
let cli = Cli::parse();
let render_options = app::query::tree_render_options(cli.color);
match cli.command {
Commands::Analyze {
path,
output,
filter,
compact,
} => app::pipeline::handle_analyze(path, output, filter, compact)?,
Commands::Index {
path,
format,
store_dir,
full_rebuild,
timing,
} => app::index::handle_index(path, format, store_dir, full_rebuild, timing)?,
Commands::Serve {
path,
port,
mcp,
watch,
} => app::serve::handle_serve(path, port, mcp, watch)?,
Commands::Symbol { command } => app::query::handle_symbol_command(command, render_options)?,
Commands::Flow { command } => app::query::handle_flow_command(command, render_options)?,
Commands::L10n { command } => app::query::handle_l10n_command(command, render_options)?,
Commands::Asset { command } => app::query::handle_asset_command(command, render_options)?,
Commands::Repo { command } => app::query::handle_repo_command(command)?,
}
Ok(())
}