Expert Agents
Bootspring provides 36 expert agents, each specialized in a specific domain. Technical experts for code, business experts for growth, content experts for documentation.
What Are Agents?#
Agents are specialized AI personas that bring deep expertise to specific areas. When you invoke an agent, your AI assistant adopts that agent's knowledge, patterns, and best practices.
Agent Categories#
| Category | Count | Description |
|---|---|---|
| Technical | 14 | Software development experts |
| Platform | 5 | Deployment and infrastructure |
| Data & Monitoring | 3 | Data architecture and observability |
| Content | 1 | Documentation and content creation |
| Business | 13 | Strategy, growth, and operations |
Technical Agents (14)#
Core software development expertise.
| Agent | Specialization | Best For |
|---|---|---|
| Database Expert | SQL, Prisma, PostgreSQL | Schema design, queries, migrations |
| Security Expert | Auth, OWASP, Encryption | Security reviews, auth flows |
| Frontend Expert | React, Next.js, TypeScript | Components, styling, state |
| Backend Expert | Node.js, APIs, Architecture | API design, server logic |
| Testing Expert | Jest, Vitest, Playwright | Test strategies, coverage |
| DevOps Expert | CI/CD, Docker, AWS | Deployment, infrastructure |
| Architecture Expert | System Design, DDD, Patterns | Architecture decisions |
| API Expert | REST, GraphQL, tRPC | API design, documentation |
| Performance Expert | Caching, Profiling, Optimization | Speed improvements |
| UI/UX Expert | Design Systems, A11y, UX | User experience |
| Code Review Expert | Quality, Standards, Refactoring | Code quality |
| AI Integration Expert | LLMs, RAG, Embeddings, Agents | AI/ML integration |
| Mobile Expert | React Native, Flutter, iOS, Android | Mobile app development |
| Infrastructure Expert | AWS, Terraform, Kubernetes, IaC | Cloud infrastructure |
Platform Agents (5)#
Deployment platforms and integrations.
| Agent | Specialization | Best For |
|---|---|---|
| Vercel Expert | Edge, Serverless, ISR | Vercel deployments |
| Railway Expert | Containers, Databases, Scaling | Railway platform |
| Auth Expert | NextAuth, Clerk, OAuth, Sessions | Authentication setup |
| Payment Expert | Stripe, Subscriptions, Webhooks | Payment integration |
| Email Expert | Transactional, Templates, Deliverability | Email systems |
Data & Monitoring Agents (3)#
Data architecture and observability.
| Agent | Specialization | Best For |
|---|---|---|
| Data Modeling Expert | ERD, Normalization, Schema Design | Database architecture |
| Monitoring Expert | APM, Alerting, Logging, Observability | Monitoring setup |
| Research Expert | Analysis, Documentation, Evaluation | Technical research |
Content Agents (1)#
Documentation and content creation expertise.
| Agent | Specialization | Best For |
|---|---|---|
| Content Expert | Docs, Blogs, Release Notes, API Docs | Technical writing, documentation |
Business Agents (13)#
Strategy, growth, and operations expertise.
| Agent | Specialization | Best For |
|---|---|---|
| Product Expert | Roadmaps, PRDs, User Research | Product management |
| Business Strategy Expert | Planning, Models, Markets | Business planning |
| Financial Expert | Modeling, Projections, Metrics | Financial planning |
| Fundraising Expert | Pitch Decks, VCs, Term Sheets | Raising capital |
| Growth Expert | Acquisition, Retention, PLG | Growth strategies |
| Marketing Expert | GTM, Content, SEO, Campaigns | Marketing strategy |
| Sales Expert | Pipeline, CRM, Enterprise Sales | Sales process |
| Legal Expert | Contracts, Compliance, IP | Legal matters |
| Investor Relations Expert | Updates, Board, Reporting | Investor communication |
| Private Equity Expert | M&A, Valuations, Due Diligence | PE and exits |
| Partnerships Expert | BD, Alliances, Integrations | Partnership development |
| Operations Expert | Processes, Scaling, Teams | Operations |
| Competitive Analysis Expert | Research, Intelligence, Positioning | Market research |
How to Use Agents#
Via Natural Language#
Simply ask your AI assistant to use an agent:
Use the frontend-expert agent to help me build a responsive navigation component.
Via CLI#
1# List all agents
2bootspring agent list
3
4# List by category
5bootspring agent list --category business
6
7# Invoke an agent
8bootspring agent invoke database-expert
9
10# Invoke with context
11bootspring agent invoke fundraising-expert --context ./pitch-deck.mdVia MCP Tool#
Use the bootspring_agent tool directly:
Call bootspring_agent with:
- agent: "frontend-expert"
- context: "Build a responsive navigation component"
Agent Capabilities#
Each agent provides:
1. Domain Expertise#
Deep knowledge in their specialization area:
- Best practices
- Common patterns
- Anti-patterns to avoid
- Industry standards
2. Contextual Awareness#
Agents understand your project context:
- Tech stack detection
- Existing code patterns
- Project conventions
- File structure
3. Actionable Guidance#
Agents provide practical help:
- Code examples
- Step-by-step instructions
- Configuration snippets
- Troubleshooting tips
Chaining Agents#
Complex tasks benefit from multiple agents:
Example: Building a SaaS Feature#
- Architecture Expert - Plan the approach
- Database Expert - Design the schema
- Backend Expert - Build the API
- Frontend Expert - Create the UI
- Testing Expert - Write tests
- Security Expert - Security review
Example: Launching a Product#
- Business Strategy Expert - Define positioning
- Marketing Expert - Plan go-to-market
- Growth Expert - Set up metrics
- Legal Expert - Prepare terms/privacy
Example: Raising a Round#
- Fundraising Expert - Prepare materials
- Financial Expert - Build projections
- Investor Relations Expert - Outreach strategy
- Legal Expert - Term sheet review
Agent Selection Guide#
By Task Type#
| Task | Recommended Agent(s) |
|---|---|
| Build a component | Frontend Expert, UI/UX Expert |
| Create an API | Backend Expert, API Expert |
| Design a schema | Database Expert, Data Modeling Expert |
| Set up deployment | DevOps Expert, Vercel/Railway Expert |
| Security review | Security Expert |
| Write tests | Testing Expert |
| Improve performance | Performance Expert |
| Plan architecture | Architecture Expert |
| Integrate AI | AI Integration Expert |
| Add payments | Payment Expert |
| Set up auth | Auth Expert |
| Build mobile app | Mobile Expert, Frontend Expert |
| Cloud infrastructure | Infrastructure Expert, DevOps Expert |
| Product roadmap | Product Expert, Business Strategy Expert |
| Plan fundraise | Fundraising Expert, Financial Expert |
| Growth strategy | Growth Expert, Marketing Expert |
| Enterprise sales | Sales Expert, Legal Expert |
By Technology#
| Technology | Recommended Agent |
|---|---|
| React/Next.js | Frontend Expert |
| Node.js/Express | Backend Expert |
| PostgreSQL/Prisma | Database Expert |
| Docker/K8s | DevOps Expert |
| JWT/OAuth/Clerk | Auth Expert |
| Jest/Vitest/Playwright | Testing Expert |
| Stripe | Payment Expert |
| OpenAI/Claude | AI Integration Expert |
| Vercel | Vercel Expert |
| Railway | Railway Expert |
Custom Instructions#
Customize agent behavior in your config:
1// bootspring.config.js
2module.exports = {
3 agents: {
4 customInstructions: {
5 'frontend-expert': `
6 Always use TypeScript.
7 Use Tailwind CSS for styling.
8 Prefer server components when possible.
9 `,
10 'database-expert': `
11 Use Prisma ORM.
12 PostgreSQL is the database.
13 Always include indexes for foreign keys.
14 `,
15 },
16 },
17};Next Steps#
- Code Patterns - 101 production-ready patterns
- Workflow Packs - End-to-end business playbooks
- CLI Reference - All 25 commands
- Getting Started - Installation guide