Usage
bengal.utils.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