From 9132c441f188e09a86ee1958c5f9603897176550 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Tue, 6 Jan 2026 12:33:48 +1100 Subject: [PATCH] Remove Key findings section from dependency analysis docs --- AGENTS.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 86e9880..b454a79 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -216,11 +216,4 @@ The `analysis/deps/` directory contains static analysis artifacts generated by t | `hotspots.md` | Coupling hotspots: files/crates with disproportionate fan-in or fan-out (>2× average) | | `limitations.md` | Known limitations of the static analysis (conditional compilation, macros, re-exports) | -**Key findings:** -- No cycles detected at crate or file level (strict DAG structure) -- `g3-config` and `g3-providers` are the most depended-upon crates (fan-in: 4) -- `g3-cli` has highest fan-out (5 crate dependencies) as the composition root -- `ui_writer.rs` is the most imported file (11 dependents) -- `g3-core/src/lib.rs` has highest fan-out (25 module declarations) - These artifacts are useful for understanding coupling, planning refactors, and identifying architectural boundaries.