We're excited to announce the biggest update to Bootspring yet. This release introduces 24 new features across four categories, transforming how you build software with AI assistance.
What's New#
Intelligent Workflows#
Parallel Phase Execution - Run multiple workflow phases concurrently. Backend and frontend development can happen simultaneously, with Bootspring tracking completion of each parallel track.
bootspring workflow start full-stack-parallel
# Backend and frontend phases run in parallel
# Complete each independently
bootspring workflow complete-phase 1 # Backend
bootspring workflow complete-phase 2 # FrontendAdaptive Workflows - When things go wrong, Bootspring now provides automatic remediation paths. Failed tests? Get a guided path through analysis, fixing, and verification with the right agents at each step.
Workflow Composition - Chain multiple workflows together. Create a "feature-to-production" composition that runs feature development, security audit, and launch preparation in sequence.
Git Autopilot#
Your git activity now drives intelligent workflow suggestions:
- Create a
feature/*branch → Feature Development workflow suggested - Commit with
security:prefix → Security Audit triggered - Tag with
v*→ Launch Preparation recommended - Modify
prisma/*files → Database Migration suggested
Enable it with a single command:
bootspring autopilot enableAI Content Generation#
Generate professional documents using your project context:
- Privacy Policy - GDPR/CCPA compliant
- Terms of Service - Standard legal agreement
- README - Project documentation with setup instructions
- Changelog - Keep a Changelog format
- Business Plan - Basic outline for planning
- Pitch Deck - Investor presentation structure
bootspring content generate privacy-policy readme --saveTemplate Marketplace#
Install pre-built templates in seconds:
- SaaS Starter - Complete SaaS with auth, payments, dashboard
- API Starter - REST API with docs and auth
- Auth (Clerk) - Full Clerk integration
- Payments (Stripe) - Subscriptions and webhooks
- AI Chat - Claude-powered chat interface
bootspring marketplace install auth-clerkAgent Collaboration#
Enable multiple agents to work together on complex tasks:
collab.startSession({
primaryAgent: 'architecture-expert',
supportingAgents: ['security-expert', 'database-expert'],
task: { title: 'Design authentication system' }
});Agents can delegate subtasks, hand off context, and aggregate their results.
Cross-Project Learning#
Opt-in to share anonymized patterns with the community:
- Your data is fully anonymized
- Contribute patterns, decisions, and workflow outcomes
- Receive community insights to improve recommendations
- Delete your data anytime
bootspring cross-project enableMore Improvements#
- 37 agents (up from 36) with new AI Integration Expert
- 11 workflows (up from 6) including parallel and audit workflows
- Config presets for quick project setup (saas-starter, api-only, minimal, ai-app, enterprise)
- Decision tracking with impact scoring and pattern learning
- Append-only storage for better write performance
Getting Started#
Update to the latest version:
npm update -g bootspringTry the new features:
1# Start a parallel workflow
2bootspring workflow start full-stack-parallel
3
4# Enable git autopilot
5bootspring autopilot enable
6
7# Generate docs
8bootspring content generate readme privacy-policy
9
10# Install a template
11bootspring marketplace install auth-clerkDocumentation#
We've added comprehensive documentation for all new features:
- Workflows Overview
- Parallel Execution
- Adaptive Workflows
- Git Autopilot
- Content Generation
- Template Marketplace
- Agent Collaboration
- Cross-Project Learning
- Config Presets
What's Next#
We're already working on the next set of improvements:
- More marketplace templates
- Enhanced learning algorithms
- IDE integrations
- Team collaboration features
Thank you for being part of the Bootspring community. We can't wait to see what you build!
Questions? Join our Discord or check the documentation.