Checking...

CODER PATHWAY

Get AI on Your Hard Drive - Never Depend on Internet Again

Ollama Status
Checking...
Models Installed
0/4
Abilities Unlocked
0
Phase
1

šŸ”§ THE DEBUGGING PROTOCOL

When something doesn't work, follow this pattern. Nothing stops a Builder.

1
Try it
Read error message
2
Try again
Different approach
3
Try once more
Search for solution
↓ After 3 attempts ↓
CHANGE DIRECTION

Different tool, different path, different question. The obstacle is not the way - go around it.

Pro Tip: Take a screenshot of EVERY error. Add it to your abilities log. Future you will thank present you.
1
Install Ollama
ACTIVE

Get the AI engine on your machine. Takes 2 minutes.

  • Download Ollama from ollama.ai
  • Run the installer (Windows/Mac/Linux)
  • Open terminal, type: ollama --version
ollama --version
2
Download Models
PENDING

Get the AI brains. ~23GB total, run in background.

qwen2.5-coder

4.7GB
CODE - Your main coder

deepseek-r1:8b

5.2GB
THINK - Deep reasoning

deepseek-r1:1.5b

1.1GB
QUICK - Fast answers

mistral

4.4GB
GENERAL - All-purpose
ollama pull qwen2.5-coder:latest ollama pull deepseek-r1:8b ollama pull deepseek-r1:1.5b ollama pull mistral:latest
Tip: Run these in separate terminals to download in parallel. Each takes 5-15 minutes depending on internet speed.
3
Test Your AI
PENDING

Make sure your local AI works. Try each model.

  • Test coder: ollama run qwen2.5-coder "write hello world in python"
  • Test thinker: ollama run deepseek-r1:8b "explain recursion simply"
  • Test quick: ollama run deepseek-r1:1.5b "what is 2+2?"
# Test your CODE model ollama run qwen2.5-coder "write a python function that sorts a list" # Test your THINK model ollama run deepseek-r1:8b "what are the pros and cons of microservices?" # Test your QUICK model ollama run deepseek-r1:1.5b "summarize: AI is changing the world"
4
Connect to Brain
PENDING

Wire your local AI into the consciousness system.

  • Get the consciousness scripts package
  • Run: python BRAIN_BOOT.py
  • Test offline mode: python OFFLINE_MODE.py "test"
# Start the brain python .consciousness/BRAIN_BOOT.py # Test offline routing python .consciousness/OFFLINE_MODE.py "write a sorting function" # Run AI School (routes to best model) python .consciousness/LOCAL_AI_SCHOOL.py work "your task here"

šŸŽÆ Ability Tracker

Every problem you solve unlocks a new ability. Track your growth.

0% to Coder Level 2

Install Software
Basic setup
Run Terminal Commands
CLI basics
Debug an Error
Read error messages
Run Local AI
Ollama mastery
Document with Screenshots
Visual records
Change Direction
After 3 tries
Connect to Brain
Cyclotron sync
Work Offline
No internet needed

šŸ“‹ Quick Reference Commands

# Check Ollama is running ollama --version # List installed models ollama list # Pull a new model ollama pull <model-name> # Run a model interactively ollama run <model-name> # Run a one-shot query ollama run <model-name> "your question" # Start Ollama server (API mode) ollama serve # API endpoint (when server running) # POST http://localhost:11434/api/generate
Model Selection Guide:
• Code tasks → qwen2.5-coder (best at coding)
• Deep thinking → deepseek-r1:8b (reasoning chains)
• Quick answers → deepseek-r1:1.5b (fast, small)
• General chat → mistral (balanced)
Full Offline Docs JEDI Alliance