cli: extract graph commands from main.rs into cli/graph.rs

Move 18 graph subcommand handlers (594 lines) out of main.rs:
link, link-add, link-impact, link-audit, link-orphans,
triangle-close, cap-degree, normalize-strengths, differentiate,
trace, spectral-*, organize, interference.

main.rs: 3130 → 2518 lines.

Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
ProofOfConcept 2026-03-14 17:59:46 -04:00
parent 55715ad998
commit c8d86e94c1
4 changed files with 649 additions and 630 deletions

View file

@ -21,6 +21,9 @@ pub mod neuro;
pub mod counters;
pub mod cursor;
// CLI handlers (split from main.rs)
pub mod cli;
// Agent layer (LLM-powered operations)
pub mod agents;
pub mod tui;