πŸ“ Clarity AI Jan 21, 2026 Meetup Notes

Comprehensive guide to AI coding tools and local AI

🎯 Jan 21st Biweekly Clarity AI Meetup

Welcome to our comprehensive guide on AI-powered coding tools, local LLM management, and the latest frameworks for modern development. This page contains key insights from our meetup discussions.

πŸ€–
AI Assistants
Next-gen coding tools
🏠
Local AI
Run LLMs on your machine
⚑
Modern Stack
Cutting-edge frameworks

πŸ’» Coding Assistants & IDEs

Cursor

Popular

A powerful AI-driven IDE that is a fork of VS Code. Cursor integrates AI deeply into the workflow for building features and managing tickets with advanced context awareness.

✨ Key Features
  • β€’ AI-powered code generation
  • β€’ Natural language commands
  • β€’ Context-aware suggestions
  • β€’ Integrated terminal & git
🎯 Best For
  • β€’ Full-stack development
  • β€’ Feature building
  • β€’ Rapid prototyping
  • β€’ Ticket management
Try Cursor β†’

Claude Code

New

A command-line tool and agentic coding assistant from Anthropic that can write code, run tests, and manage git workflows autonomously.

πŸ”§ Capabilities
Code Generation
Test Execution
Git Management
# Install Claude Code
npm install -g @anthropic-ai/claude-code

# Start coding with Claude
claude-code init my-project
Learn More β†’

Continue

Open Source

An open-source library/plugin for VS Code and JetBrains that allows users to connect to local LLMs (like Ollama) or remote APIs for AI-assisted coding.

πŸ”Œ Integrations
  • β€’ VS Code extension
  • β€’ JetBrains plugin
  • β€’ Ollama support
  • β€’ Custom API endpoints
πŸ’‘ Use Cases
  • β€’ Code completion
  • β€’ Refactoring assistance
  • β€’ Bug fixing
  • β€’ Documentation generation
Get Continue β†’

Gemini Code Assist

Enterprise

Google's enterprise-grade AI assistance tool integrated into VS Code and other IDEs, designed for professional development teams.

🎯 Enterprise Features
βœ“ Advanced code suggestions
βœ“ Security scanning
βœ“ Team collaboration
βœ“ Custom model training
Explore Gemini β†’

Cloud Code

Evolving

Google's suite of IDE extensions evolving quickly to support cloud-based development with Kubernetes, Cloud Run, and more.

☁️ Cloud Features
  • β€’ Kubernetes support
  • β€’ Cloud Run integration
  • β€’ GCP services access
  • β€’ Debug in cloud
Learn Cloud Code β†’

Code Companion

Neovim

A Neovim plugin that allows users to interact with AI models directly within the terminal-based editor, perfect for vim enthusiasts.

-- Install with lazy.nvim
{
  "olimorris/codecompanion.nvim",
  dependencies = {
    "nvim-lua/plenary.nvim",
    "nvim-treesitter/nvim-treesitter",
  },
}
View on GitHub β†’

πŸ”Œ Essential VS Code Plugins for AI Development

Continue (AI Code Assistant)

Open-source AI code assistant that works with local LLMs and cloud APIs.

Installation
ext install continue.continue
Free Open Source

GitHub Copilot

AI pair programmer that suggests code and entire functions in real-time.

Installation
ext install GitHub.copilot
Popular $10/mo

Tabnine

AI code completion tool with privacy-focused local model options.

Installation
ext install TabNine.tabnine-vscode
Free Tier Privacy

Codeium

Free AI-powered code acceleration toolkit with autocomplete and chat.

Installation
ext install Codeium.codeium
Free Fast

Gemini Code Assist

Google's enterprise AI coding assistant with advanced features.

Installation
ext install GoogleCloudTools.cloudcode
Enterprise GCP

CodeGPT

Connect to multiple AI models including GPT-4, Claude, and local LLMs.

Installation
ext install DanielSanMedium.dscodegpt
Multi-Model Flexible

Ollama

Run local LLMs directly in VS Code with Ollama integration.

Installation
ext install ollama.ollama-vscode
Local Privacy

AI Commit

Generate meaningful commit messages automatically using AI.

Installation
ext install MattIPv4.vscode-ai-commit
Git Automation

⚑ Quick Install Multiple Extensions

code --install-extension continue.continue \
--install-extension GitHub.copilot \
--install-extension TabNine.tabnine-vscode \
--install-extension Codeium.codeium \
--install-extension ollama.ollama-vscode

🏠 Running AI Locally - Complete Guide

Ollama

Free

A tool for running large language models (like Llama 3 or DeepSeek) locally on your own machine. Perfect for privacy-conscious development and offline work.

πŸ“₯ Installation

🍎 macOS
brew install ollama
🐧 Linux
curl -fsSL https://ollama.com/install.sh | sh
πŸͺŸ Windows

Download from: ollama.com/download/windows

πŸš€ Quick Start

1. Start Ollama
ollama serve
2. Pull a Model (e.g., Llama 3)
ollama pull llama3
3. Run the Model
ollama run llama3

🌟 Popular Models

Llama 3
ollama pull llama3

Meta's latest, 8B params

DeepSeek Coder
ollama pull deepseek-coder

Specialized for coding

Mistral
ollama pull mistral

Fast & efficient, 7B params

CodeLlama
ollama pull codellama

Code-focused Llama variant

πŸ”— Connect to VS Code (via Continue)

Configure Continue extension to use Ollama:

{
  "models": [{
    "title": "Llama 3",
    "provider": "ollama",
    "model": "llama3"
  }],
  "tabAutocompleteModel": {
    "title": "DeepSeek Coder",
    "provider": "ollama",
    "model": "deepseek-coder"
  }
}

LM Studio

GUI

A desktop application (primarily Mac, but supports others) that provides a GUI for discovering and running local LLMs without needing the command line.

✨ Key Features

πŸ–₯️
User-Friendly Interface

No command line needed

πŸ“š
Model Discovery

Browse & download models easily

βš™οΈ
Easy Configuration

Adjust parameters with sliders

πŸ”Œ
Local API Server

OpenAI-compatible endpoint

πŸ“₯ Getting Started

  1. 1. Download from lmstudio.ai
  2. 2. Install and launch the application
  3. 3. Browse models in the "Discover" tab
  4. 4. Download your preferred model (Llama, Mistral, etc.)
  5. 5. Start chatting or run as a local server
Download LM Studio β†’

βš–οΈ Ollama vs LM Studio

Feature Ollama LM Studio
Interface Command Line GUI
Platform Mac, Linux, Windows Mac, Windows
Ease of Use Requires CLI knowledge Very beginner-friendly
Automation Excellent for scripts Limited
Best For Developers, automation Beginners, experimentation

πŸ—οΈ Frameworks & Infrastructure

Chroma DB

An open-source AI expression database (vector database) used for building RAG (Retrieval-Augmented Generation) systems locally.

🎯 Use Cases
  • β€’ Document Q&A systems
  • β€’ Semantic search
  • β€’ Knowledge bases
  • β€’ Context-aware AI apps
⚑ Quick Setup
pip install chromadb

import chromadb
client = chromadb.Client()
Learn More β†’

Linear

A project management tool used to pull in tickets so that AI agents can analyze and build features based on them.

πŸ”— AI Integration
  • β€’ API access for agents
  • β€’ Ticket analysis
  • β€’ Automated feature building
  • β€’ Progress tracking
Explore Linear β†’

NATS

A connective technology for adaptive edge and cloud-native applications, mentioned for its latest SDK documentation.

🌐 Features
Message Streaming
Pub/Sub
Request/Reply
Key-Value Store
Visit NATS β†’

Gas Town

Beta

A very early-stage/beta project by Steve Yegge focused on Agent Orchestrationβ€”having agents manage and verify other agents.

πŸ€– Concept

Multi-agent systems where AI agents coordinate, verify each other's work, and manage complex workflows autonomously.

Note: Still in early development stage. Follow Steve Yegge's updates for more information.

Aurora

Mentioned in the context of backend infrastructure and Neovim integration for modern development workflows.

πŸ’‘ Context

Used for backend infrastructure with Neovim integration, enabling terminal-based development with modern AI capabilities.

πŸ“š Recommended Reading: Vibe Coding

πŸ“–

Vibe Coding

By Steve Yegge (with contributions from Gene Kim)

A revolutionary approach to software development where AI handles the syntax and implementation details, while humans focus on the "vibe" or architectural intent of the code. This paradigm shift represents a new way of thinking about coding in the AI era.

πŸ“š Get the Book on Amazon β†’

🎯 Key Concepts

  • β€’ High-Level Thinking: Focus on architecture and design rather than syntax
  • β€’ AI as Co-Pilot: Let AI handle implementation details and boilerplate
  • β€’ Intent-Driven Development: Communicate what you want, not how to build it
  • β€’ Rapid Iteration: Prototype and refine ideas at unprecedented speed

πŸ’‘ What You'll Learn

  • βœ“ How to communicate effectively with AI coding assistants
  • βœ“ Strategies for maintaining code quality with AI assistance
  • βœ“ When to trust AI vs when to review carefully
  • βœ“ Building complex systems with AI collaboration

"In vibe coding, you're the architect and the AI is your construction crew. You set the vision, the AI makes it real."

β€” Steve Yegge

πŸš€ Quick Start Guide

🌱 Beginner Path (GUI-Focused)

1 Install LM Studio

Download from lmstudio.ai and install

2 Download a Model

Try Llama 3 or Mistral from the Discover tab

3 Install VS Code + Continue

Get the Continue extension for VS Code

4 Start Coding!

Use Ctrl+I to ask AI questions in VS Code

⚑ Advanced Path (CLI-Focused)

1 Install Ollama
brew install ollama  # or curl method for Linux
2 Pull Models
ollama pull llama3
ollama pull deepseek-coder
3 Setup Continue + Cursor

Install both and configure to use Ollama

4 Explore RAG with ChromaDB
pip install chromadb
# Build your first knowledge base

πŸ’Ž Pro Tips

  • πŸ’‘ Start with GUI tools (LM Studio) to understand the concepts, then move to CLI (Ollama) for automation
  • πŸ’‘ Use Continue for VS Code integration - it works with both local and cloud models
  • πŸ’‘ Keep smaller models (7B-13B) for fast iterations, use larger ones for complex tasks
  • πŸ’‘ Read "Vibe Coding" to learn the philosophy behind AI-assisted development