Terminal Setup Guide

Complete guide to using Bootspring from the command line without any IDE integration.

Overview

Bootspring works great as a standalone CLI tool, independent of any AI assistant or IDE. Perfect for:

  • Server environments
  • CI/CD pipelines
  • Quick project setup
  • Automation scripts
  • Developers who prefer terminal workflows

Prerequisites

  • Node.js 18+ installed
  • npm or yarn
  • Terminal (bash, zsh, fish, PowerShell)

Installation

Loading code block...

Local Install

Loading code block...

Verify Installation

Loading code block...

Quick Start

Initialize a New Project

Loading code block...

Initialize an Existing Project

Loading code block...

Core Workflows

1. Project Setup

Loading code block...

2. Development Loop

Loading code block...

3. Business Planning

Loading code block...

4. Analysis & Audit

Loading code block...

5. Deployment

Loading code block...

Agent Interaction (CLI)

List Available Agents

Loading code block...

Invoke an Agent

Loading code block...

Agent Output

Agent responses are written to .bootspring/logs/ and displayed in the terminal.

Skill Patterns

Browse Patterns

Loading code block...

Apply Patterns

Patterns provide code snippets and implementation guidance:

Loading code block...

Configuration

Create Config File

Loading code block...

Config Structure

Loading code block...

Environment Variables

Loading code block...

Shell Completions

Bash

Loading code block...

Zsh

Loading code block...

Fish

Loading code block...

Automation

Git Hooks

Pre-commit quality check:

Loading code block...

Post-commit context update:

Loading code block...

CI/CD Integration

GitHub Actions:

Loading code block...

Scripting

Loading code block...

Multi-Project Workflows

Workspace Setup

Loading code block...

Run Across Projects

Loading code block...

Autonomous Workflows

Loop Mode

Run tasks autonomously:

Loading code block...

Orchestrator

Intelligent workflow coordination:

Loading code block...

Output Formats

JSON Output

Many commands support --json for scripting:

Loading code block...

Pipe to Other Tools

Loading code block...

Troubleshooting

Common Issues

Command not found:

Loading code block...

Permission errors:

Loading code block...

Node version:

Loading code block...

Diagnostics

Loading code block...

Best Practices

Project Structure

my-project/ ├── CLAUDE.md # Generated context ├── bootspring.config.js # Configuration ├── .bootspring/ # Local data │ ├── workflows/ │ ├── logs/ │ └── cache/ ├── planning/ # Generated reports │ ├── CODEBASE_ANALYSIS.md │ └── AUDIT_REPORT.md └── todo.md # Task tracking

Daily Workflow

  1. Morning:

    Loading code block...
  2. Development:

    Loading code block...
  3. End of day:

    Loading code block...

Next Steps