AI-Assisted Coding: The Complete Developer's Guide to Tools, Agents, and Local Models
The way we write software is changing faster than at any point in the last two decades. In 2022, AI coding tools were novelty autocomplete engines. By 2026, they are autonomous agents capable of planning features, writing multi-file implementations, running tests, and iterating on failures — all without direct intervention. This post maps the full landscape: the agentic IDEs, the protocol that connects AI to your tools, the cloud coding assistants, and how to run everything privately on your own hardware.
The Shift: From Autocomplete to Agents
First-generation AI coding tools (2021–2023) were fundamentally glorified autocomplete. GitHub Copilot suggested the next line or function. The developer was always in the driver’s seat. The AI was a passenger offering suggestions.
Second-generation tools (2024–present) are fundamentally different. They operate on tasks, not tokens. You describe a goal — “add OAuth login to this Express app” — and the agent reads your codebase, plans a multi-step implementation, edits files, runs your test suite, observes failures, and iterates. The developer becomes an orchestrator rather than a typist.
This shift required three things to converge:
- Frontier-quality models capable of multi-step reasoning over large codebases (Claude 3.5+, GPT-4o, Gemini 1.5+)
- Context protocols that let models interact with tools, files, and APIs (Model Context Protocol, function calling)
- Agentic loops — software infrastructure to run models in feedback cycles against real systems
All three arrived in 2024. The tools covered in this post are the result.
Claude Code
Claude Code is Anthropic’s official CLI-based coding agent. Unlike chat interfaces, Claude Code operates directly in your terminal with access to your filesystem, shell, and development tools. It reads your actual code, runs commands, and makes edits — without requiring you to paste snippets back and forth.
Core Capabilities
- Full filesystem access — reads, writes, and searches your project files directly
- Shell execution — runs tests, builds, linters, git commands, and arbitrary scripts
- Codebase awareness — indexes your project to understand structure before making changes
- Agentic loops — autonomously chains multiple tool calls to complete a task
- CLAUDE.md — project-specific memory that persists instructions, architecture notes, and coding conventions across sessions
Getting Started
|
|
CLAUDE.md — Persistent Project Memory
The CLAUDE.md file is one of Claude Code’s most powerful features. Place it at the project root (or in subdirectories), and Claude Code reads it automatically at the start of every session.
|
|
Slash Commands
Inside a Claude Code session, slash commands provide quick access to built-in features:
| Command | Description |
|---|---|
/help |
Show available commands |
/clear |
Clear conversation history |
/compact |
Compress context to save tokens |
/cost |
Show API usage and cost for current session |
/doctor |
Check configuration and connectivity |
/init |
Generate a CLAUDE.md for current project |
/review |
Request a code review of current changes |
/pr_comments |
Fetch and address open PR comments |
/vim |
Toggle vim keybindings |
/model |
Switch the underlying Claude model |
Hooks — Automating Claude Code’s Lifecycle
Hooks let you run shell commands at specific points in Claude Code’s execution lifecycle — before/after tool calls, on session start, or when specific events occur. This turns Claude Code into a pipeline component.
|
|
Permissions Model
Claude Code uses a granular permission system. By default it asks before executing shell commands and before writing files. You can pre-approve specific patterns:
|
|
MCP Integration
Claude Code supports MCP servers (covered in depth below), dramatically expanding what it can interact with. Any MCP server you configure becomes a tool available to Claude during a session.
|
|
The Agent SDK
For teams building AI-powered workflows on top of Claude, Anthropic provides the Claude Agent SDK. It enables programmatic creation of agents that can use tools, maintain conversation history, and integrate into CI/CD pipelines.
|
|
Google Antigravity
Google Antigravity is Google’s agentic development platform, launched publicly on November 18, 2025 alongside the release of Gemini 3 Pro. It is Google’s answer to Cursor and Claude Code, but positioned as a step beyond — a fully agentic IDE where autonomous agents are first-class citizens rather than assistants. The platform has since advanced to Antigravity 2.0, unveiled at Google I/O in May 2026, which tracks Google’s current Gemini 3.5 models.
Antigravity is a heavily modified fork of Visual Studio Code, making it immediately familiar to the 70%+ of developers already using VS Code.
Two Views
Antigravity’s distinguishing UI innovation is two complementary views:
Editor View — the familiar VS Code interface with an AI agent sidebar. Functionally similar to Cursor or Copilot Chat, but backed by Gemini 3.5 Pro as the default model.
Manager View — a control center for orchestrating multiple autonomous agents working in parallel across different tasks and workspaces. You can dispatch five agents to work on five different bugs simultaneously, review their artifacts, and merge results — all from a single interface.
Artifacts
Agents in Antigravity generate Artifacts — structured deliverables produced during task execution:
- Task plans (the agent’s implementation strategy before touching code)
- Code diffs and implementation summaries
- Browser recordings of UI interactions
- Test results and screenshots
Artifacts are reviewable before the agent proceeds. You can annotate them with inline comments, and the agent incorporates feedback without pausing its broader execution flow. This gives you oversight without micromanagement.
Browser Agents
Antigravity includes browser subagents that can launch Chrome headlessly, navigate your running application, interact with UI elements, and validate functionality. This closes the feedback loop between code changes and observed behavior — the agent can write a feature and verify it works end-to-end without human intervention.
Model Support
Antigravity primarily uses Google’s Gemini family but supports multiple providers:
- Gemini 3.5 Pro — default, general-purpose tasks
- Gemini 3.5 Flash — faster, lighter tasks
- Claude Sonnet 4.6 / Claude Opus 4.8 — available for teams preferring Anthropic models
- GPT-OSS-120B — open-source OpenAI variant
antigravity.codes
antigravity.codes is a community-run resource hub offering over 1,500 MCP server configurations, 500+ AI coding rules, and pre-built workflows specifically optimized for Antigravity, Cursor, and Windsurf. It functions as an unofficial package registry for AI IDE customizations.
The site includes:
- Turn-key MCP configurations for GitHub, GitLab, Azure DevOps, Firebase, JetBrains, and more
- Rules files that enforce coding standards (e.g., “always use TypeScript strict mode”, “prefer functional React components”)
- Workflow templates for common patterns (feature development, bug fixes, refactoring sessions)
The community project antigravity-awesome-skills extends this with 900+ agentic skills compatible with Claude Code, Antigravity, and Cursor.
Availability
Antigravity is free in public preview with generous Gemini rate limits. An enterprise tier with higher limits and private deployment options is expected. Available for Windows, macOS, and Linux.
Model Context Protocol (MCP)
The Model Context Protocol is an open standard developed by Anthropic that defines how AI models connect to external tools, data sources, and services. Before MCP, every AI tool built its own one-off integrations — a GitHub integration for Copilot, a different one for Cursor, yet another for Claude. MCP standardizes this: one server, many clients.
How MCP Works
MCP defines a client-server architecture with three communication primitives:
- Tools — functions the AI can call (e.g.,
create_github_issue,run_sql_query) - Resources — data sources the AI can read (e.g., file contents, database schemas)
- Prompts — pre-built prompt templates the server exposes
AI Client (Claude Code, Cursor, Antigravity, etc.)
│ JSON-RPC over stdio or SSE
▼
MCP Server (filesystem, GitHub, database, etc.)
│
▼
External System (filesystem, GitHub API, PostgreSQL, etc.)
Communication uses JSON-RPC 2.0 over either stdio (for local processes) or Server-Sent Events (for remote servers).
Configuring MCP Servers
MCP servers are configured per-client. In Claude Code (~/.claude/settings.json), Cursor (.cursor/mcp.json), or Antigravity (antigravity.json), the format is broadly similar:
|
|
Official Reference Servers
Anthropic maintains official reference servers at github.com/modelcontextprotocol/servers:
| Server | Purpose |
|---|---|
server-filesystem |
Read/write local files with configurable path restrictions |
server-github |
Full GitHub API — repos, issues, PRs, code search |
server-gitlab |
GitLab projects, issues, merge requests |
server-postgres |
PostgreSQL schema inspection and query execution |
server-sqlite |
SQLite operations |
server-google-drive |
Read and search Google Drive files |
server-git |
Git repo operations (log, diff, blame, branch management) |
server-memory |
Persistent knowledge graph across sessions |
server-fetch |
Web content fetching with HTML→Markdown conversion |
server-brave-search |
Web and local search via Brave Search API |
server-sequential-thinking |
Structured step-by-step reasoning |
Popular Community MCP Servers
The MCP ecosystem has exploded. Key community servers:
Infrastructure & Cloud:
docker-mcp— manage Docker containers, images, volumes, networkskubernetes-mcp— kubectl operations via natural languageaws-s3-mcp— read/write S3 objectsfirebase-mcp— Firebase/Firestore operations (official from Google)
Databases:
mcp-clickhouse— ClickHouse analytics queriesmongodb-lens— MongoDB CRUD and aggregationmcp-neo4j— Neo4j graph databasemcp-snowflake-server— Snowflake data warehouseelasticsearch-mcp-server— Elasticsearch indexing and search
Developer Productivity:
n8n-mcp— build n8n automation workflowsjetbrains-mcp— JetBrains IDE integrationazure-devops-mcp— work items, pipelines, repos
Communication:
slack-mcp— post messages, read channelslinear-mcp— Linear issue trackingjira-mcp— Jira ticket management
Building a Custom MCP Server
Creating a server for your own tools takes ~50 lines of TypeScript:
|
|
MCP Security Considerations
MCP servers run as local processes with whatever permissions your user account has. Key security practices:
- Scope filesystem access — pass only the directories you want the AI to touch:
server-filesystem /home/user/projectnot/ - Use read-only tokens — create GitHub PATs with minimum required scopes
- Audit tool definitions — understand what each tool can do before enabling it
- Be cautious with community servers — third-party servers are code running on your machine; review them
- Isolate sensitive MCP servers — use environment variables rather than hardcoding secrets in config files
- Use Streamable HTTP for remote servers — the SSE transport was deprecated in the June 2025 MCP specification; all new remote servers should use Streamable HTTP with OAuth 2.1 for authentication
- Beware prompt injection — malicious tool responses or resources can attempt to override the AI’s instructions; treat tool output with the same suspicion as user input from untrusted sources
- Principle of least privilege — follow OWASP’s “Excessive Agency” guidance: agents should have scoped, per-user tokens rather than shared high-privilege service accounts
Major AI Coding Tools
GitHub Copilot
GitHub Copilot was the tool that normalized AI code assistance. Launched in 2021, it pioneered line-by-line and function-level autocomplete inside VS Code and JetBrains. Today it has evolved significantly:
Copilot Chat — conversational AI in the IDE, can explain code, suggest refactors, and answer questions about your codebase.
Copilot Agent Mode (2025) — multi-step agentic workflows that can edit multiple files and run terminal commands, similar to Cursor Agent.
Copilot Extensions — MCP-compatible tool integrations for GitHub Actions, Datadog, Sentry, Docker, and more.
| Plan | Price | Features |
|---|---|---|
| Individual | $10/mo | Completions, Chat, basic agents |
| Business | $19/user/mo | Centralized policy, audit logs |
| Enterprise | $39/user/mo | Fine-tuning, private model options |
Strengths: Deep GitHub integration, broad enterprise adoption, works in VS Code and JetBrains without switching editors.
Weaknesses: Less capable agentic behavior compared to Cursor or Claude Code; heavily geared toward GitHub-hosted projects.
Cursor
Cursor is a VS Code fork that puts AI at the center of the editing experience. It became the benchmark for “AI-native IDEs” and drove the 2024 shift to agent-mode coding.
Autocomplete (Tab): Context-aware multi-line completions that account for the full file and open tabs — not just the line above.
Chat: Inline and sidebar chat with @codebase, @file, @web, and @docs context selectors. You can reference specific files, paste screenshots, and ask questions across the full codebase.
Agent Mode (Ctrl+I): Full agentic editing — the model reads relevant files, proposes a plan, edits across multiple files, and can run terminal commands. Supports checkpoint-based rollback.
Cursor Rules (.cursorrules): Project-level instructions that shape the AI’s behavior for every interaction, similar to Claude Code’s CLAUDE.md.
MCP Support: Full MCP integration as of Cursor 0.43, enabling the same ecosystem of tool servers available to Claude Code and Antigravity.
| Plan | Price | Notes |
|---|---|---|
| Free | $0 | 50 slow requests/month |
| Pro | $20/mo | 500 fast requests, unlimited slow |
| Business | $40/user/mo | Team management, SSO |
Strengths: The most polished AI-native IDE, excellent agent UX, large community with extensive .cursorrules libraries.
Weaknesses: VS Code fork divergence requires keeping up with upstream updates; can be expensive at scale.
Windsurf / Devin Desktop (Cognition)
Windsurf began as Codeium’s flagship AI IDE — a VS Code fork — and then ran through 2025’s messiest ownership saga: a collapsed ~$3B OpenAI deal, a Google DeepMind hire of its founding leadership, and finally an acquisition of the remaining product, brand, and team by Cognition (the company behind the Devin agent) in July 2025. As of June 2026 it has been folded into Cognition’s lineup and rebranded Devin Desktop, though the underlying engine and its signature features carry over. Its differentiator is the Cascade engine — a flow-based agent that maintains a persistent understanding of what has changed in your codebase session-over-session.
Cascade: Windsurf’s agentic engine tracks file edits, terminal output, and browser state as a continuous flow of observations. This gives it better contextual continuity across a long coding session compared to tools that treat each interaction as isolated. Cascade Memories persist context across sessions.
Riptide Search: A proprietary search engine that indexes codebases at scale and can scan millions of lines in seconds — a significant advantage for large monorepos where embedding-based search degrades.
Supercomplete: Windsurf’s autocomplete is multi-line and intention-aware, predicting not just the next token but the full logical completion of what you’re doing.
MCP Support: Windsurf supports MCP servers, making the same ecosystem of integrations available as in Cursor and Antigravity.
| Plan | Price | Notes |
|---|---|---|
| Free | $0 | 5 Flow actions/day, unlimited autocomplete |
| Pro | $15/mo | 90 Flow actions/day |
| Teams | $30/user/mo | Shared workspace, admin controls |
Pricing and branding are in flux under Cognition after the June 2026 Devin Desktop rebrand — verify current plans before committing.
Strengths: Competitive pricing, excellent autocomplete quality, Cascade’s session continuity.
Weaknesses: Smaller community than Cursor; fewer pre-built rule libraries.
Continue.dev
Continue is an open-source AI coding assistant that runs as an extension in VS Code or JetBrains. Unlike Cursor and Windsurf (which are full IDE forks), Continue is modular: you bring your own models.
This makes Continue the natural choice for:
- Teams that need to stay in their existing IDE
- Organizations with data privacy requirements
- Developers wanting to use local models (Ollama, LM Studio)
- Cost-conscious teams that want to use smaller models for autocomplete and larger ones for chat
|
|
Strengths: Open source, model-agnostic, runs in existing IDE, excellent local model support.
Weaknesses: No built-in agent mode comparable to Cursor Agent; requires more configuration; UX less polished than commercial alternatives.
Aider
Aider is a command-line AI coding assistant that runs in your terminal and makes changes directly to your git repository. It is the preferred tool for developers who live in the terminal or who want scriptable AI coding in CI/CD pipelines.
|
|
Aider has a sophisticated model leaderboard at aider.chat/docs/leaderboards tracking coding performance by model. As of mid-2026, Claude Opus 4.8 and Claude Sonnet 4.6 lead.
Aider with local models:
|
|
Strengths: Terminal-native, git-integrated, scriptable, excellent with local models, transparent about what it’s changing.
Weaknesses: Terminal UX isn’t for everyone; no visual diff/merge interface.
Cline (formerly Claude Dev) and RooCode
Cline is a VS Code extension that provides a full agentic coding experience powered by any LLM with tool-use capability. It started as “Claude Dev” before being rebranded. Unlike Cursor (a fork), it’s a pure extension.
RooCode (formerly Roo Cline) is an actively developed fork of Cline with additional features including Boomerang Task Management (native multi-step task planning that removes the need for external task-management MCP servers), Architect/Code/Debug/Custom agent modes, and better local model support.
Both support the full MCP ecosystem and can be pointed at any OpenAI-compatible API endpoint, making them good choices for local model experimentation.
Amazon Q Developer
Amazon Q Developer (formerly CodeWhisperer) is Amazon’s AI coding assistant, deeply integrated into AWS services. It supports VS Code, JetBrains, and the AWS Console.
Its strongest differentiator is security scanning — it can identify vulnerabilities in code and suggest fixes using AWS vulnerability knowledge. For AWS-heavy shops it also understands IAM policies, CloudFormation templates, and CDK constructs at a level other tools don’t match.
Tabnine
Tabnine is a veteran of the AI coding space, predating Copilot. Its current positioning emphasizes enterprise privacy: the ability to run the AI model entirely inside your VPC or on-premise. For organizations that cannot send code to third-party APIs, Tabnine’s on-premise option is a meaningful differentiator.
It also offers personalization — fine-tuning the model on your organization’s codebase so suggestions align with your patterns, naming conventions, and architecture.
JetBrains AI Assistant
JetBrains AI Assistant is natively integrated into the entire JetBrains family (IntelliJ, PyCharm, GoLand, WebStorm, etc.). Its strength is deep IDE integration — it understands refactoring intentions, type systems, and project structure at a level that VS Code extensions can’t quite match for JetBrains users.
Sourcegraph Cody and Amp
Sourcegraph Cody is built on Sourcegraph’s decade of code intelligence infrastructure — deep codebase indexing, cross-repo understanding, and historical code evolution awareness. For large enterprise monorepos, this context layer is a genuine differentiator over tools that rely solely on embeddings.
Amp (launched 2025) is Sourcegraph’s agentic layer on top of Cody: it plans multi-file changes, writes tests, generates documentation, and performs large-scale refactoring using Sourcegraph’s search as its knowledge base. It is currently in early access with credit-based pricing.
| Plan | Price |
|---|---|
| Cody Free | Limited use |
| Cody Pro | $19/user/month |
| Enterprise (Cody + Code Search) | $59/user/month |
| Amp | Credit-based, free in early access |
Best for: Teams with large, complex monorepos where understanding cross-repo dependencies and historical patterns matters.
Running Models Locally
The case for local AI coding has become compelling:
- Privacy — code never leaves your machine; essential for proprietary codebases
- Cost — eliminate per-token API costs for high-volume use cases
- Latency — fast models on capable hardware can match or beat API round-trip times
- Offline — work without internet access
- Customization — fine-tune models on your own codebase
Best Local Models for Coding (2026)
| Model | HumanEval | Context | VRAM (Q4_K_M) | Best For |
|---|---|---|---|---|
| Qwen2.5-Coder-32B | 92.7% | 128K | ~20GB | Chat, architecture, complex tasks |
| Qwen2.5-Coder-14B | ~89% | 128K | ~9GB | All-purpose, mid-VRAM |
| Qwen2.5-Coder-7B | 88.4% | 128K | ~4.5GB | Low VRAM, strong performance |
| Codestral-22B (Mistral) | 86.6% | 256K | ~14GB | FIM autocomplete, long context |
| DeepSeek-Coder-V2-Lite | 81.1% | 128K | ~5GB (MoE active) | Fast, efficient |
| Qwen2.5-Coder-1.5B | ~75% | 32K | ~1GB | Autocomplete (fast) |
| CodeLlama-34B | ~53% | 16K | ~20GB | Legacy, widely available |
| StarCoder2-15B | ~46% | 16K | ~9GB | Multi-language, open training data |
Mistral Codestral 25.01 deserves special mention for autocomplete use cases: it achieves 95.3% on Fill-in-the-Middle (FIM) benchmarks and supports a 256K context window — making it exceptional for completing code in the middle of existing functions. Its 22B size and ~14GB Q4_K_M footprint fit a single RTX 3090/4090.
Recommendation: Start with qwen2.5-coder:7b for all-around local use. Upgrade to qwen2.5-coder:32b if you have a 24GB GPU. Use qwen2.5-coder:1.5b or codestral:22b dedicated to autocomplete.
Ollama
Ollama is the simplest way to run LLMs locally. It manages model downloads, GGUF quantization selection, GPU acceleration, and serves a local HTTP API compatible with the OpenAI standard.
|
|
Ollama REST API (compatible with OpenAI SDK):
|
|
|
|
Remote Ollama server:
|
|
LM Studio
LM Studio is a GUI application for discovering, downloading, and running local models. It provides a polished interface for non-technical users and serves a local OpenAI-compatible API.
Key features:
- Visual model browser — search Hugging Face models filtered by size, quantization, and available VRAM
- Dual inference engines: llama.cpp (cross-platform CPU/GPU) and MLX (Apple Silicon native)
- OpenAI-compatible server at
localhost:1234/v1 - Headless daemon mode via
lmsCLI - Responses API (LM Studio 0.3.29+) — stateful, multi-turn interactions with built-in tool use and MCP server support
|
|
Connecting VS Code Continue.dev to LM Studio:
|
|
Jan.ai
Jan.ai is a free, open-source desktop application for running local models with a privacy-first philosophy. Unlike LM Studio, Jan is fully open-source (MIT licensed) and stores all data locally. It runs a local API server compatible with the OpenAI standard and can also connect to cloud APIs (OpenAI, Anthropic, Groq) from the same interface — useful for switching between local and cloud models without changing tooling.
Download from jan.ai. The local server runs on localhost:1337/v1 by default.
llama.cpp
llama.cpp is the foundational C++ inference engine that powers Ollama, LM Studio, and dozens of other tools. For maximum control — custom quantization, specific hardware tuning, server deployment — using llama.cpp directly is the right approach.
Installation:
|
|
GGUF Quantization Levels:
| Quantization | File Size (7B) | Quality Loss | Recommended Use |
|---|---|---|---|
Q2_K |
~2.7GB | High | Extreme memory constraint |
Q4_K_M |
~4.1GB | Low | Best balance (default choice) |
Q5_K_M |
~4.8GB | Very Low | Higher quality, more VRAM |
Q6_K |
~5.5GB | Minimal | Near-lossless |
Q8_0 |
~7.2GB | Negligible | Almost full precision |
F16 |
~14GB | None | Full inference, max VRAM |
Running with GPU offloading:
|
|
Server mode (OpenAI-compatible API):
|
|
Hardware Requirements
VRAM requirements for common model sizes (Q4_K_M):
| Model Size | VRAM Required | Example GPUs |
|---|---|---|
| 1.5B–3B | 1–2GB | Any GPU from last 10 years |
| 7B | ~4.5GB | RTX 3060 (8GB), M1/M2 Pro |
| 13B–14B | ~8GB | RTX 3070/4070, M1/M2 Max |
| 32B–34B | ~20GB | RTX 3090/4090 (24GB), M2 Ultra |
| 70B | ~40GB | 2× RTX 3090, A100 40GB |
Consumer GPU comparison for 7B model (tokens/second at Q4_K_M):
| GPU | VRAM | Speed (7B) | Notes |
|---|---|---|---|
| RTX 3060 | 12GB | ~45 tok/s | Fits 13B comfortably |
| RTX 3090/4090 | 24GB | ~80–100 tok/s | Can run 32B |
| RTX 5090 | 32GB | ~150+ tok/s | Can run 34B |
| M3 Pro | 36GB unified | ~60 tok/s | Silent, efficient |
| M3 Max | 96GB unified | ~90 tok/s | Runs 70B |
| M4 Ultra | 192GB unified | ~150+ tok/s | Enterprise-grade |
Apple Silicon (MLX framework): Apple Silicon uses unified memory shared between CPU and GPU. A MacBook Pro M3 Max with 96GB RAM can run Qwen2.5-Coder-32B comfortably with about 60–90 tok/s — comparable to an RTX 4090 — while consuming a fraction of the power (~30W vs ~350W).
CPU-only inference: Modern CPUs can run 7B models at 5–15 tokens/second using llama.cpp, which is workable for batch processing but feels slow for interactive use. A high-core-count workstation (Threadripper, EPYC) with AVX-512 support reaches 30–50 tok/s for 7B models.
Connecting Local Models to Aider
|
|
Model performance in Aider (from aider.chat leaderboard):
| Model | Aider Score | Notes |
|---|---|---|
| Claude Opus 4.8 | ~72% | Top performer |
| Claude Sonnet 4.6 | ~68% | Best cost/performance |
| Qwen2.5-Coder-32B (local) | ~58% | Best local option |
| DeepSeek-Coder-V2 (API) | ~56% | Strong open alternative |
| GPT-4o | ~62% | Solid mid-tier |
Using Local Models with Claude Code via litellm
Claude Code itself requires the Anthropic API and cannot directly call a local Ollama instance. However, litellm acts as a proxy that accepts Anthropic-format requests and routes them to any backend — including Ollama:
|
|
This lets Claude Code’s full feature set (file editing, hooks, MCP) work with a completely local model — useful for air-gapped environments or proprietary code that cannot leave your machine.
Choosing the Right Tool
There is no single “best” AI coding tool. The right choice depends on your context:
| Scenario | Recommended Tool(s) |
|---|---|
| VS Code user, cloud models OK | Cursor or GitHub Copilot + Copilot Chat |
| VS Code user, privacy / local models | Continue.dev + Ollama |
| JetBrains user | JetBrains AI + Continue.dev |
| Terminal-native workflow | Aider + Claude Code |
| Maximum agent autonomy | Claude Code or Google Antigravity |
| AWS-heavy infrastructure | Amazon Q Developer |
| Enterprise, on-premise model | Tabnine Enterprise or self-hosted Continue.dev |
| Multi-agent parallel tasks | Google Antigravity Manager View |
| Maximum MCP ecosystem access | Claude Code (broadest MCP support) |
| Large enterprise monorepo | Sourcegraph Cody + Code Search |
Stacking Tools
Many developers use multiple tools simultaneously:
- Cursor for day-to-day editing + autocomplete
- Claude Code via terminal for complex multi-file agentic tasks
- Ollama with Continue.dev autocomplete for fast, offline tab completion
- Aider in CI/CD pipelines for automated code changes
This is entirely reasonable — each tool has different strengths, and they complement rather than compete.
The Future: Toward Autonomous Engineering
The trajectory is clear. AI coding tools are moving from:
- Suggestions → Actions
- Files → Repositories
- Single sessions → Persistent agents with memory
- Single models → Multi-agent teams
Features already in production at Google Antigravity and advanced Claude Code deployments — autonomous browser testing, multi-agent parallel execution, artifact-based oversight — will be table stakes across the industry within 12–18 months.
The skill that will matter isn’t typing faster or knowing more syntax. It’s directing agents effectively: writing precise task descriptions, designing good CLAUDE.md and .cursorrules files, knowing when to review agent artifacts, and building MCP servers that connect AI to the systems that matter in your stack.
The developers who thrive will be those who learn to orchestrate intelligently rather than resist the shift.
Sources
- Model Context Protocol — specification and documentation
- Official MCP reference servers
- Anthropic — Claude Code documentation
- Google Antigravity
- GitHub Copilot
- Cursor
- Cognition — acquisition of Windsurf
- Continue.dev documentation
- Aider — LLM coding leaderboards
- Ollama
- LM Studio
- llama.cpp
- Qwen2.5-Coder
For a focused deep-dive on running models locally — including benchmark data, hardware comparisons, and detailed Ollama/LM Studio/llama.cpp configuration — see the companion post: Local LLM Inference for Coding: The Complete Guide.
Comments