The suggest command provides intelligent recommendations based on your project context, telemetry, and learned patterns. It can also enable auto-suggestions that proactively recommend commands in Claude Code.
1# Show all recommendations2bootspring suggest
34# Show next action only5bootspring suggest next
67# Show workflow recommendations8bootspring suggest workflows
910# Show skill recommendations11bootspring suggest skills
1213# Test auto-suggest14bootspring suggest analyze "I need to add authentication"1516# Enable auto-suggest in Claude Code17bootspring suggest --enable-auto
1819# Disable auto-suggest20bootspring suggest --disable-auto
2122# Toggle a category23bootspring suggest --category security
2425# Suppress a command26bootspring suggest --suppress"bootspring todo"