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

@ -0,0 +1,6 @@
// cli/ — command-line interface handlers
//
// Split from main.rs for readability. Each module handles a group
// of related subcommands.
pub mod graph;