bootspring suggest

AI-powered recommendations and auto-suggestions.

Overview#

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.

Usage#

bootspring suggest [command] [options]

Commands#

CommandDescription
(default)Show all recommendations
nextShow single next action
learningShow learning statistics
workflowsShow workflow recommendations only
skillsShow skill recommendations only
configShow auto-suggest configuration
analyze <text>Test auto-suggest on text

Auto-Suggest Options#

OptionDescription
--enable-autoEnable proactive suggestions in Claude Code
--disable-autoDisable auto-suggestions
--category <name>Toggle a suggestion category
--suppress <cmd>Stop suggesting a specific command
--unsuppress <cmd>Resume suggesting a command

Other Options#

OptionDescription
--limit <n>Number of recommendations (default: 5)
--jsonOutput as JSON

Examples#

1# Show all recommendations 2bootspring suggest 3 4# Show next action only 5bootspring suggest next 6 7# Show workflow recommendations 8bootspring suggest workflows 9 10# Show skill recommendations 11bootspring suggest skills 12 13# Test auto-suggest 14bootspring suggest analyze "I need to add authentication" 15 16# Enable auto-suggest in Claude Code 17bootspring suggest --enable-auto 18 19# Disable auto-suggest 20bootspring suggest --disable-auto 21 22# Toggle a category 23bootspring suggest --category security 24 25# Suppress a command 26bootspring suggest --suppress "bootspring todo"

Auto-Suggest Categories#

CategoryTriggers
authenticationauth, login, JWT, OAuth
securityXSS, injection, validation
testingtest, coverage, jest
deploymentdeploy, vercel, production
databaseschema, migration, query
performanceslow, optimize, cache
apiendpoint, REST, GraphQL
documentationdocs, README, comments
businessplan, strategy, market
fundraisingpitch, investors, deck
legalterms, privacy, GDPR

How Auto-Suggest Works#

  1. Monitor - Watches your messages in Claude Code
  2. Detect - Identifies when Bootspring features could help
  3. Suggest - Recommends relevant commands
  4. Learn - Improves based on your usage