Get smart recommendations on what to work on next
# /htmlgraph:recommend Get smart recommendations on what to work on next ## Usage ## Parameters - `--count` (optional) (default: 3): Number of recommendations to show - `--check-bottlenecks` (optional) (default: True): Also show bottlenecks ## Examples Get top 3 recommendations with bottleneck check Get top 5 recommendations Recommendations only, skip bottleneck analysis ## Instructions for Claude This command uses the SDK's `recommend_next_work()` method. ### Implementation: python from htmlgraph import SDK sdk = SDK(agent="claude") # Get recommendations recs = sdk.re...