Platform Setup Guides

Complete installation and configuration guides for every platform and environment.

Quick Start#

Choose your platform to get started:

PlatformTimeDifficulty
macOS5 minEasy
Windows5 minEasy
Linux5 minEasy

IDE Integrations#

Connect Bootspring to your development environment:

IntegrationDescription
VS CodeExtension and terminal integration
CursorAI editor with Bootspring context
JetBrainsIntelliJ, WebStorm, PyCharm
XcodeiOS, macOS, Swift development
NeovimTerminal-based setup

AI Assistant Setup#

Connect Bootspring to AI assistants:

AssistantDescription
Claude DesktopMCP server integration
Claude CodeCLI AI coding assistant
Claude WebUsing context with claude.ai
ChatGPTUsing context with ChatGPT
Codex DesktopOpenAI's desktop assistant

Terminal & CLI#

Use Bootspring directly from the command line:

PlatformDescription
TerminalStandalone CLI usage without IDE

System Requirements#

Minimum Requirements#

RequirementSpecification
Node.jsv18.0.0 or higher
npmv8.0.0 or higher
Memory512 MB RAM
Disk100 MB free space
NetworkInternet connection
RequirementSpecification
Node.jsv20.x LTS
npmv10.x
Memory2 GB RAM
Disk500 MB free space

Pre-Installation Checklist#

Before installing Bootspring, ensure you have:

  • Node.js 18+ installed
  • npm or yarn package manager
  • Terminal/command line access
  • Bootspring account (optional for Pro features)

Check Node.js Version#

node --version # Should output v18.0.0 or higher npm --version # Should output 8.0.0 or higher

Install Node.js#

If you don't have Node.js:

macOS (Homebrew):

brew install node

Windows (Chocolatey):

choco install nodejs

Linux (apt):

curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt-get install -y nodejs

All Platforms (nvm - recommended):

1# Install nvm 2curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash 3 4# Install Node.js 5nvm install 20 6nvm use 20

Universal Installation#

Once Node.js is installed, Bootspring installation is the same on all platforms:

# Install globally npm install -g bootspring # Verify installation bootspring --version

Authentication#

Create Account#

  1. Visit bootspring.dev/signup
  2. Create your account
  3. Verify your email

Authenticate CLI#

# Login via browser bootspring login # Or use device code bootspring login --device

Project Setup#

Initialize New Project#

cd your-project bootspring init

This creates:

  • bootspring.config.js - Configuration
  • CLAUDE.md - AI context file
  • .bootspring/ - Local data directory

Connect Existing Project#

cd existing-project bootspring init --existing

Verify Installation#

Run the health check:

bootspring doctor

Expected output:

✓ Node.js version: v20.10.0 ✓ npm version: 10.2.3 ✓ Bootspring version: 1.2.0 ✓ Configuration: Valid ✓ Authentication: Logged in ✓ Network: Connected ✓ MCP: Available All checks passed!

Next Steps#

After installation:

  1. Generate Context - Create your CLAUDE.md
  2. Use Agents - Invoke expert agents
  3. Apply Skills - Use skill patterns
  4. Set Up IDE - Configure your editor

Troubleshooting#

Common Issues#

IssueSolution
command not foundCheck PATH, reinstall with -g flag
Permission deniedUse sudo or fix npm permissions
Network errorsCheck firewall, proxy settings
Auth failuresRun bootspring logout then bootspring login

See Troubleshooting Guide for more help.

Getting Help#