All Agents

Complete list of 37 expert agents available in Bootspring

Bootspring includes 37 specialized expert agents covering technical development, business strategy, and operations.

Technical Agents#

Core Development#

AgentExpertise
frontend-expertReact, Next.js, Vue, Svelte, CSS, responsive design
backend-expertNode.js, APIs, server architecture, microservices
database-expertPostgreSQL, MySQL, MongoDB, Prisma, schema design
api-expertREST, GraphQL, API design, OpenAPI, versioning
mobile-expertReact Native, Flutter, iOS, Android

Quality & Security#

AgentExpertise
security-expertOWASP, auth, encryption, vulnerability assessment
testing-expertJest, Vitest, Playwright, TDD, test strategies
code-review-expertCode quality, patterns, refactoring
performance-expertProfiling, optimization, caching, load testing

Infrastructure#

AgentExpertise
devops-expertCI/CD, Docker, Kubernetes, infrastructure
vercel-expertVercel deployment, edge functions, analytics
railway-expertRailway deployment, databases, scaling
monitoring-expertLogging, metrics, alerting, observability

Architecture#

AgentExpertise
architecture-expertSystem design, patterns, scalability
software-architectEnterprise architecture, integration
data-modeling-expertData architecture, ETL, warehousing
ai-integration-expertLLMs, Claude SDK, embeddings, RAG

Specialized#

AgentExpertise
auth-expertClerk, NextAuth, OAuth, SSO, MFA
payment-expertStripe, subscriptions, billing
email-expertTransactional email, deliverability
ui-ux-expertDesign systems, accessibility, UX
debugging-detectiveRoot cause analysis, debugging
research-expertTechnical research, evaluation

Business Agents#

Strategy#

AgentExpertise
business-strategy-expertBusiness models, market analysis
competitive-analysis-expertCompetitive intelligence, positioning
growth-expertGrowth strategies, metrics, experimentation
marketing-expertMarketing strategy, content, campaigns
sales-expertSales process, pipeline, closing

Finance & Investment#

AgentExpertise
financial-expertFinancial modeling, projections, unit economics
fundraising-expertPitch decks, investor targeting, term sheets
investor-relations-expertBoard management, investor updates
private-equity-expertPE/VC dynamics, due diligence

Operations#

AgentExpertise
operations-expertProcesses, workflows, scaling
legal-expertContracts, compliance, IP
partnerships-expertBusiness development, partnerships

Using Agents#

Via CLI#

1# List all agents 2bootspring agent list 3 4# Invoke a specific agent 5bootspring agent invoke frontend-expert 6 7# Get agent context 8bootspring agent context database-expert

Via MCP#

"Invoke the security-expert agent to review my authentication" "Get help from the database-expert with my schema design" "Use the fundraising-expert to prepare my pitch deck"

Agent Selection Guide#

TaskRecommended Agents
New featurearchitecture-expert, frontend-expert, backend-expert
Security reviewsecurity-expert, code-review-expert
Performance issuesperformance-expert, database-expert
Preparing to raisefundraising-expert, financial-expert
Going enterpriseauth-expert, security-expert, legal-expert

Agent Collaboration#

Agents can work together on complex tasks:

1const collab = require('bootspring/intelligence/agent-collab'); 2 3collab.startSession({ 4 primaryAgent: 'architecture-expert', 5 supportingAgents: ['security-expert', 'database-expert'], 6 task: { title: 'Design authentication system' } 7});

Learn about Agent Collaboration →

Adding Context#

Agents work better with context:

1# Generate agent context 2bootspring agent context architecture-expert 3 4# Agents automatically receive: 5# - Project structure 6# - Tech stack 7# - Recent commits 8# - Related files