Visual Studio 2022 Extension Adds Native Ollama Integration for Local LLMs

A developer has released a native extension for Visual Studio 2022 that integrates local LLMs via Ollama, addressing privacy concerns for enterprise developers working with proprietary codebases.
Key Features
- 100% Offline Operation: Connect to a local Ollama endpoint at
http://localhost:11434/api/generateand select models like DeepSeek or Llama 3 for completely private AI assistance. - Advanced Text Manipulation: Select code blocks and instruct the local model to perform tasks like "Remove duplicates," "Modify and replicate variables," or clean up code.
- Cloud Fallback: Switch to cloud providers like GPT-4o or Claude 3 Opus for personal projects through extension settings.
- Installation: Available free on the official Visual Studio marketplace. Install by opening Visual Studio 2022, going to Extensions Manager, and searching for "Local LLM Plugin Modern."
The extension eliminates the need to switch between terminal/browser and Visual Studio when using local models, maintaining workflow continuity while keeping code private.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Orchino: Local Multi-Agent Orchestration System for Windows with Parallel Browser and UI Automation
Orchino is a local multi-agent orchestration system for Windows that runs parallel browser and Windows tasks without hijacking the UI. A demo shows 4 agents completing 'Search Sony earbuds on Flipkart and Amazon, email the results, save to Notepad' in 29.5 seconds using true parallel execution.

Voxlert: Voice Notifications for Claude Code Sessions with Character Voices
Voxlert is a tool that hooks into Claude Code events and speaks notifications using distinct character voices like StarCraft Adjutant, SHODAN, GLaDOS, and HEV Suit. It uses an LLM via OpenRouter to generate in-character lines and runs locally with npm installation.

nah: A context-aware permission guard for Claude Code
nah is a PreToolUse hook that intercepts every tool call in Claude Code, classifying commands by action type like filesystem_read or git_history_rewrite and applying policies based on context. It runs a deterministic classifier in milliseconds with optional LLM escalation for ambiguous cases.

bareguard: A Lightweight Safety Gate for AI Agents — Now on npm
bareguard v1.0 is a ~1000-line, single-dependency safety layer for AI agents that blocks destructive actions (rm -rf, DROP TABLE) and enforces budget limits with human escalation. Part of the bare suite, live on npm.