bootspring_suggest

Get intelligent suggestions for agents, skills, and workflows based on your current context.

Overview#

The bootspring_suggest tool analyzes your current context and provides intelligent recommendations. It suggests the most relevant agents to consult, skills to apply, and workflows to follow based on what you're working on.

Parameters#

ParameterTypeRequiredDescription
contextstringYesContext describing what you're working on
typestringNoSuggestion type: agents, skills, workflows, all
limitnumberNoMaximum suggestions (default: 5)
optionsobjectNoAdditional options

Options Object#

OptionTypeDefaultDescription
includeReasoningbooleantrueInclude explanation for suggestions
prioritizestringnullPrioritize: speed, quality, learning
modestring"local"Access mode: local or server

Usage Examples#

Get All Suggestions#

Use the bootspring_suggest tool with: - context: "Building a user dashboard with real-time notifications"

Response:

Loading code block...

Agent Suggestions Only#

Use the bootspring_suggest tool with: - context: "Need to optimize slow database queries" - type: "agents"

Response:

Loading code block...

Skill Suggestions#

Use the bootspring_suggest tool with: - context: "Setting up authentication with social login" - type: "skills"

Response:

Loading code block...

Workflow Suggestions#

Use the bootspring_suggest tool with: - context: "Preparing for production deployment" - type: "workflows"

Response:

Loading code block...

With Priority#

Use the bootspring_suggest tool with: - context: "Quick fix for login bug in production" - options: { prioritize: "speed" }

Response:

Loading code block...

Suggestion Types#

Agent Suggestions#

Recommends expert agents based on:

  • Task domain (frontend, backend, database, etc.)
  • Problem type (debugging, optimization, design)
  • Technology stack

Skill Suggestions#

Recommends code patterns based on:

  • Feature requirements
  • Technology choices
  • Best practices

Workflow Suggestions#

Recommends workflows based on:

  • Development phase
  • Task complexity
  • Team processes

Confidence Levels#

LevelScoreDescription
High0.8+Strong match, highly recommended
Medium0.5-0.8Good match, consider using
Low0.3-0.5Possible match, explore if relevant

Response Format#

Success Response#

Loading code block...

No Suggestions#

Loading code block...

Tier Availability#

FeatureFreeProTeam
Basic suggestions
Skill suggestions
Workflow suggestionsLimited
Priority modes-
Custom patterns--

Best Practices#

Provide Rich Context#

More context leads to better suggestions:

  • Bad: "Help with auth"
  • Good: "Setting up authentication for a Next.js app with Google and GitHub social login, using Prisma for the database"

Act on Suggestions#

Follow through on recommendations:

1. Get suggestions for your task 2. Invoke the recommended agent 3. Apply the suggested skills 4. Follow the suggested workflow

Iterate#

Refine suggestions as you work:

1. Initial: "Building user management" → Suggestions for user CRUD 2. Refined: "Building user management with roles and permissions" → More specific suggestions for RBAC

Integration with Other Tools#

Suggestions often lead to other tools:

bootspring_suggest ↓ bootspring_agent (invoke suggested agent) ↓ bootspring_skill (apply suggested skill) ↓ bootspring_quality (verify implementation)