Aide is an open-source AI-native code editor developed by CodeStory AI. It is a fork of VS Code that tightly integrates agentic AI capabilities — including proactive error fixing, combined chat-and-edit workflows, and inline editing — directly into the editor experience. As a GitHub Copilot alternative, it is best suited for developers who want a fully AI-integrated standalone IDE rather than an extension layered on top of an existing editor.
| Aide | GitHub Copilot | |
|---|---|---|
| Type | AI IDE (VS Code fork) | IDE Extension / CLI |
| IDEs | Standalone (VS Code-based) | VS Code, JetBrains, Vim, Neovim, Visual Studio, Xcode |
| Pricing | Not publicly documented (open source, check official site) | Free for students/OSS; Individual $10/mo; Business $19/mo; Enterprise $39/mo |
| Models | Claude Sonnet 3.5 (used in swebench evaluation); broader model support not publicly specified | OpenAI GPT-4o, Claude 3.5 Sonnet, Gemini 1.5 Pro (multi-model) |
| Privacy / hosting | Open source; self-hostable | Cloud (GitHub/Microsoft) |
| Open source | Yes (GitHub: codestoryai/aide) | No |
| Offline / local models | Not publicly documented | No |
Aide is best suited for developers who want a fully open-source, agentic AI IDE that can be audited, forked, or self-hosted. It is particularly strong for developers working on challenging code editing and refactoring tasks where benchmark-proven agentic accuracy matters. Researchers and engineers interested in AI-native development tooling at the cutting edge of test-time inference will find Aide especially relevant.
Prices are subject to change. Check the official site for current details.
Aide is a compelling open-source GitHub Copilot alternative for developers who want a fully integrated AI-native IDE they can trust and inspect. Its proactive Language Server-aware agents and top swebench performance make it technically impressive. Developers willing to switch IDEs and work with a less mature ecosystem will find Aide's open-source, self-hostable approach a meaningful departure from the proprietary cloud-only model of GitHub Copilot.
Aide is open source and freely available on GitHub (codestoryai/aide). Pricing for any managed cloud tier is not publicly documented — check the official site for current details.
Aide is a fork of VS Code, not an extension for it. It is a standalone AI-native IDE that looks and feels like VS Code but has AI capabilities deeply integrated at the editor level. It does not run as an extension inside a separate VS Code installation.
GitHub Copilot is a proprietary cloud extension that adds AI suggestions to existing editors. Aide is an open-source standalone IDE with proactive, Language Server-integrated agents. Aide scored 62.2% on SWE-bench Verified, demonstrating strong real-world agentic code editing capability. GitHub Copilot covers more editors and has a larger ecosystem and enterprise support infrastructure.
Yes. Aide's source code is publicly available on GitHub under the codestoryai organization. Developers can inspect the code, submit issues and pull requests, and self-host the IDE.
Most AI coding tools are reactive: they respond when you trigger them — pressing Tab to accept a completion, pressing a hotkey to open chat. Aide's agents are designed to be proactive. The IDE monitors Language Server output (linter errors, type errors, compiler diagnostics) and automatically initiates agent actions to address issues without you having to ask.
When a linter detects a type error, an Aide agent can use go-to-definitions and go-to-references to trace the source of the problem, pull in the relevant context from across the codebase, and propose a fix — all before you've finished reading the error message. This shifts the developer's role from trigger-and-review to oversee-and-approve, which can meaningfully reduce the cognitive overhead of keeping a large codebase in a clean state.
The proactive approach also means Aide agents make fewer mistakes caused by missing context. Because they actively gather relevant code via Language Server queries rather than relying only on what's open, they are less likely to propose a fix that breaks another module or ignores an existing pattern.
SWE-bench Verified is the most widely cited benchmark for evaluating AI coding agents on real-world software engineering tasks. It consists of real GitHub issues from popular open-source repositories, requiring agents to understand the problem, locate the relevant code, implement a fix, and verify that existing tests pass.
CodeStory AI published a result of 62.2% resolution rate on SWE-bench Verified using Aide's framework with Claude Sonnet 3.5 and test-time inference scaling. This was a state-of-the-art result at the time of publication and places Aide among the top-performing systems globally on this benchmark. The blog post detailing the methodology is available on the aide.dev site under the "Bitter Lesson" post.
What this means in practice: Aide's underlying agentic framework has been rigorously validated on real codebases, not just toy problems. The same approach that scored 62.2% on SWE-bench is what powers the Aide IDE — meaning developers using Aide are using a system with demonstrated performance on the kinds of multi-file, contextually complex changes that real software development requires.
Aide is published under the CodeStory AI GitHub organization (github.com/codestoryai/aide) and is freely available as open source. The codebase is a fork of VS Code (the open-source portion), extended with CodeStory's agentic framework — the Sidecar — which handles context gathering, agent orchestration, and Language Server integration.
Being open source means developers can audit exactly what Aide does, submit bug reports and pull requests, and fork the codebase for their own purposes. For organizations with strict software supply chain requirements, the ability to review the full source of their AI coding tool is a significant advantage over proprietary tools where the implementation is opaque.
Self-hosting is supported, giving organizations complete control over where their code is processed and which AI models are used for inference. This addresses the privacy and compliance concerns that prevent many organizations from adopting cloud-only AI coding tools.
Aide merges what are typically two separate interfaces in AI IDEs — the chat panel and the editor — into a single unified workflow. When you're in chat, you can reference specific files and code symbols directly. When you decide to make changes, you can jump from the chat into multi-file edits without switching modes or restarting a conversation.
This integration matters because real coding work rarely fits neatly into either "chat about the problem" or "generate some code" — it involves a back-and-forth between reasoning, exploration, and execution. Aide's workflow reflects this reality. You can brainstorm an approach, explore relevant files, draft a solution, review the changes Aide proposes, and refine the implementation — all in a single continuous flow rather than context-switching between tools.
The inline editing widget (activated with Ctrl/Cmd+K) provides a quick-access entry point for targeted edits — similar to macOS Spotlight but for code. You can invoke it at any cursor position and give a natural language instruction, which Aide executes in-place without opening a separate chat panel.