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

Qure: Desktop App for Generating E2E Tests from Recorded Browser Flows
Qure is a desktop application from JetBrains (currently in closed beta) that generates end-to-end web test code from recordings made in its built-in browser. Instead of describing test flows in text for AI agents, developers record their manual QA scenarios by interacting with their product, and the AI produces working test code that matches their existing codebase.

OpenClaw .NET: NativeAOT Port with JSON-RPC Bridge for Existing Plugins
OpenClaw .NET is a C# port of OpenClaw that compiles to a ~23MB NativeAOT binary, eliminating JIT warmup and Node runtime overhead while maintaining compatibility with existing TypeScript/JavaScript plugins through a built-in JSON-RPC bridge.

DeepMind DiscoRL Meta Learning Update Rule Ported from JAX to PyTorch
A developer has ported DeepMind's DiscoRL meta learning update rule from the 2025 Nature article from JAX to PyTorch. The implementation includes a GitHub repository with a Colab notebook, API, and weights hosted on Hugging Face.

Snip tool enables visual communication with AI coding agents
Snip is a free tool that lets developers screenshot, annotate, and draw to show AI agents what they mean visually, while agents can generate diagrams or load images directly through CLI or MCP. Currently runs on Apple Silicon Macs with Mermaid diagram support and HTML support in progress.