Command

bengal.graph.suggest

Generate smart link suggestions to improve internal linking.

Analyzes your content to recommend links based on:

  • Topic similarity (shared tags/categories)
  • Page importance (PageRank scores)
  • Navigation value (bridge pages)
  • Link gaps (underlinked content)

Use link suggestions to:

  • Improve internal linking structure
  • Boost SEO through better connectivity
  • Increase content discoverability
  • Fill navigation gaps

Usage

bengal.graph.suggest [OPTIONS]

Options

Option Type Description
--config PATH

Path to config file (default: bengal.toml)

--format, -f CHOICE

Output format (default: table)

Default:table
--min-score, -s FLOAT

Minimum score threshold (default: 0.3)

Default:0.3
--top-n, -n INTEGER

Number of suggestions to show (default: 50)

Default:50

Arguments

Argument Type Description
source PATH Default:.

Examples

    # Show top 50 link suggestions
    bengal suggest
    # Show only high-confidence suggestions
    bengal suggest --min-score 0.5
    # Export as JSON
    bengal suggest --format json > suggestions.json
    # Generate markdown checklist
    bengal suggest --format markdown > TODO.md