bootspring_orchestrator

Intelligent agent coordination and workflow management. Analyze context, suggest agents, and manage multi-step workflows.

Overview#

The bootspring_orchestrator tool (also known as the workflow tool) coordinates agents and manages workflows. It analyzes your project context, recommends the best agents to consult, and guides you through multi-step development processes.

Parameters#

ParameterTypeRequiredDescription
actionstringYesAction to perform
contextstringNoContext text to analyze
workflowstringNoWorkflow name
signalstringNoCompletion signal ref for checkpoints
limitnumberNoMax recommendations (default: 5, max: 50)
modestringNoEntitlement mode: local or server
entitledbooleanNoOverride for premium workflows
tierstringNoTier override: free, pro, team, enterprise

Available Actions#

ActionDescription
analyzeAnalyze context and get suggestions
suggestAlias for analyze
recommendGet recommended workflows and skills
workflowsList all available workflows
workflowShow specific workflow details
startStart a workflow
nextAdvance to next workflow step
checkpointMark a workflow checkpoint complete
statusGet current orchestrator status

Usage Examples#

Analyze Context#

Use the bootspring_orchestrator tool with: - action: "analyze" - context: "I need to add user authentication with social login"

Response:

Loading code block...

List Available Workflows#

Use the bootspring_orchestrator tool with: - action: "workflows"

Response:

Loading code block...

Start a Workflow#

Use the bootspring_orchestrator tool with: - action: "start" - workflow: "feature-development"

Response:

Loading code block...

Advance Workflow#

Use the bootspring_orchestrator tool with: - action: "next"

Response:

Loading code block...

Mark Checkpoint Complete#

Use the bootspring_orchestrator tool with: - action: "checkpoint" - signal: "design-approved"

Response:

Loading code block...

Get Status#

Use the bootspring_orchestrator tool with: - action: "status"

Response:

Loading code block...

Get Recommendations#

Use the bootspring_orchestrator tool with: - action: "recommend" - context: "Building a SaaS with Stripe billing" - limit: 10

Response:

Loading code block...

Workflow Concepts#

Phases#

Projects go through development phases:

PhaseDescription
setupInitial project setup
featureActive feature development
testingTesting and QA
deploymentProduction deployment
maintenanceOngoing maintenance

Signals#

Signals are checkpoints within workflows that indicate progress:

  • Can be marked complete with exact text, partial match, or index
  • Track overall workflow progress
  • Enable resuming workflows

Tier Access#

Some workflows require specific subscription tiers:

TierAccess
freeBasic workflows
proAdvanced workflows
teamTeam collaboration workflows
enterpriseCustom workflows

Error Handling#

Unknown Workflow#

Loading code block...

Premium Workflow Access#

Loading code block...

Best Practices#

Start with Analysis#

Run analyze first to understand your project context before starting a workflow.

Use Signals#

Mark checkpoints as you complete them to track progress accurately.

Follow the Flow#

Workflows are designed with specific ordering - follow steps in sequence for best results.

Combine with Agents#

Use workflow suggestions to invoke the right agents at each step.