Skip to content

Quick Start

This guide will get you from zero to a working Thought Ledger setup in under 10 minutes.

Make sure you have:

  • macOS or Linux system
  • 8GB+ RAM (16GB recommended)
  • 10GB+ free disk space
Terminal window
# Install everything with a single command
curl -fsSL https://get.thought-ledger.com | sh

If the script doesn’t work, follow the manual steps below.

Terminal window
# Install Ollama (local AI runtime)
curl -fsSL https://ollama.com/install.sh | sh
Terminal window
# Clone and install Thought Ledger
git clone https://github.com/your-org/thought-ledger.git
cd thought-ledger
npm install
npm run build
Terminal window
# Download a lightweight model to start
ollama pull llama3.2:3b
Terminal window
# Launch Thought Ledger
npm start

Open http://localhost:3000 in your browser.

In the web interface:

  1. Click “New Decision”
  2. Enter a decision title, like “Choose project framework”
  3. Add context: “Web app needing real-time features”
  4. Click “Get AI Assistance”

Thought Ledger will provide:

  • Relevant past decisions (if any)
  • Contextual suggestions based on your history
  • Decision factors to consider
  1. Make your choice
  2. Add reasoning
  3. Save the decision

This decision is now part of your decision memory!

You’ve successfully:

  • ✅ Set up a private AI system
  • ✅ Made your first AI-assisted decision
  • ✅ Started building your decision memory
  • ✅ Created context for future decisions
  • Decision Search: Find past decisions by keyword
  • Pattern Analysis: See your decision patterns over time
  • AI Chat: Ask questions about your decision history

For better insights, upgrade to a more capable model:

Terminal window
# Download a more powerful model
ollama pull llama3.2:8b
# Update your configuration
echo '{"ai":{"model":"llama3.2:8b"}}' > config.json

Congratulations! You now have a private AI decision memory system ready to help you make better decisions. 🎉