bootspring orchestrator

Intelligent agent coordination and workflow management.

Overview#

The orchestrator command provides intelligent workflow coordination, suggesting agents and managing complex multi-step workflows.

Usage#

bootspring orchestrator <command> [options]

Commands#

CommandDescription
analyze [context]Analyze context and suggest agents
suggest [context]Alias for analyze
workflow <name>Show workflow details
workflowsList available workflows
start <workflow>Start a workflow
nextAdvance to next workflow step
checkpoint [w] [s]Mark workflow completion signal
statusShow orchestrator status
agentsList available agents
helpShow help

Options#

OptionDescription
--access-mode <m>Entitlement mode: local or server
--entitled <bool>Entitlement override for premium workflows
--tier <tier>Tier override: free, pro, team, enterprise

Available Workflows#

WorkflowDescription
feature-developmentEnd-to-end feature development
bug-fixBug investigation and fix
code-reviewComprehensive code review
security-auditSecurity assessment
performance-optimizationPerformance improvements
launch-packProduct launch workflow
fundraising-packFundraising preparation
growth-packGrowth optimization
enterprise-packEnterprise readiness

Examples#

1# Analyze context for suggestions 2bootspring orchestrator analyze "building authentication api" 3 4# List workflows 5bootspring orchestrator workflows 6 7# Show workflow details 8bootspring orchestrator workflow feature-development 9 10# Start a workflow 11bootspring orchestrator start feature-development 12 13# Advance to next step 14bootspring orchestrator next 15 16# Mark checkpoint 17bootspring orchestrator checkpoint launch-pack 1 18 19# Check status 20bootspring orchestrator status 21 22# List agents 23bootspring orchestrator agents

Workflow Lifecycle#

[Start] → [Phase 1] → [Phase 2] → ... → [Complete] ↓ checkpoint
  1. Start - Initialize workflow with context
  2. Phases - Execute each phase in order
  3. Checkpoints - Mark phase completion
  4. Complete - All phases finished

Intelligent Suggestions#

The orchestrator analyzes your context and suggests:

  • Relevant workflows
  • Appropriate agents
  • Next actions
  • Quality gates