# Analysis URL: /bengal/docs/0.4.3/content/analysis/ Section: analysis -------------------------------------------------------------------------------- Site Analysis Analyze your site's structure to improve navigation and discoverability. Do I Need This? Note Note Skip this if: Your site has under 50 pages. Read this if: You have a large site and want to optimize internal linking and find orphan pages. Analysis Tools flowchart LR A[Your Site] --> B[Analysis Engine] subgraph Outputs C[Connectivity Report] D[Link Suggestions] E[PageRank] end B --> C B --> D B --> E Quick Start Report Orphans PageRank # Unified connectivity report bengal graph report # Brief output for CI bengal graph report --brief # CI mode with thresholds bengal graph report --ci --threshold-isolated 5 Shows: Connectivity distribution Isolated/lightly-linked pages Bridge pages Actionable recommendations # Find isolated pages bengal graph orphans # Find lightly-linked pages bengal graph orphans --level lightly # JSON output for processing bengal graph orphans --format json # Paths only (for scripting) bengal graph orphans --format paths Identifies pages by connectivity level: 🔴 Isolated (score < 0.25) 🟠 Lightly linked (0.25-1.0) 🟡 Adequately linked (1.0-2.0) 🟢 Well-connected (≥ 2.0) bengal graph pagerank --top-n 20 Identifies: Most important pages Underlinked valuable content Navigation priorities Use Cases Goal Command Output Get site health overview bengal graph report Connectivity distribution and recommendations Find isolated pages bengal graph orphans Pages needing attention Find bridge pages bengal graph bridges Navigation bottlenecks Identify key content bengal graph pagerank --top-n 20 Pages ranked by importance Tip Tip Start with bengal graph report for a unified view of your site structure. Use --ci mode in pipelines to fail builds when connectivity thresholds are exceeded. -------------------------------------------------------------------------------- Metadata: - Author: lbliii - Word Count: 256 - Reading Time: 1 minutes