Features
Advanced features for intelligent development automation
Bootspring provides powerful features that go beyond basic scaffolding, enabling intelligent automation throughout your development process.
Automation Features#
Git Autopilot#
Automatically trigger workflows based on git events like branches, commits, and tags.
1# Enable git autopilot
2bootspring autopilot enable
3
4# Git events automatically suggest workflows:
5# - feature/* branch → Feature Development workflow
6# - security: commit → Security Audit workflow
7# - v* tag → Launch Preparation workflowContent Generation#
Generate professional documents using your project context.
1# Generate documents
2bootspring content generate privacy-policy readme changelog
3
4# Available templates:
5# - Privacy Policy, Terms of Service
6# - README, Contributing Guide
7# - Business Plan, Pitch Deck OutlineCollaboration Features#
Agent Collaboration#
Enable multiple agents to work together on complex tasks.
1// Start a collaboration session
2const session = collab.startSession({
3 primaryAgent: 'architecture-expert',
4 supportingAgents: ['security-expert', 'database-expert'],
5 task: { title: 'Design auth system' }
6});
7
8// Delegate subtasks to specialists
9collab.delegateTask(session.id, {
10 title: 'Security review',
11 assignee: 'security-expert'
12});Template Marketplace#
Discover and install community templates.
1# Browse templates
2bootspring marketplace list
3
4# Install a template
5bootspring marketplace install auth-clerk
6
7# Available templates:
8# - SaaS Starter, API Starter
9# - Clerk Auth, Stripe Payments
10# - AI Chat InterfaceLearning Features#
Decision Tracking#
Track decisions, record outcomes, and learn from patterns.
1# Log a decision
2bootspring decision log "Using PostgreSQL" --type database
3
4# Record outcome
5bootspring decision outcome <id> success
6
7# Get recommendations
8bootspring decision recommend --type databaseCross-Project Learning#
Share anonymized patterns with the community (opt-in).
1# Enable cross-project learning
2bootspring cross-project enable
3
4# View community insights
5bootspring cross-project insights
6
7# Your data is:
8# - Fully anonymized
9# - Opt-in only
10# - Deletable on requestFeature Comparison#
| Feature | Free | Pro |
|---|---|---|
| Git Autopilot | Yes | Yes |
| Content Generation | Yes | Yes |
| Agent Collaboration | Basic | Full |
| Template Marketplace | Community | Premium |
| Decision Tracking | Yes | Yes |
| Cross-Project Learning | Receive | Contribute + Receive |
Quick Links#
- Git Autopilot - Automated workflow triggers
- Content Generation - Document generation
- Agent Collaboration - Multi-agent tasks
- Template Marketplace - Community templates
- Decision Tracking - Learn from patterns
- Cross-Project Learning - Community insights