Aide

Aide

Open-source AI-native code editor by CodeStory AI, built as a VS Code fork. Features proactive Language Server-integrated agents, combined chat+edit workflow, AST navigation, and top SWE-bench Verified performance (62.2%).

Aide

Aide: A GitHub Copilot Alternative for Developers Who Want an Open-Source AI-Native IDE

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 vs. GitHub Copilot: Quick Comparison

AideGitHub Copilot
TypeAI IDE (VS Code fork)IDE Extension / CLI
IDEsStandalone (VS Code-based)VS Code, JetBrains, Vim, Neovim, Visual Studio, Xcode
PricingNot publicly documented (open source, check official site)Free for students/OSS; Individual $10/mo; Business $19/mo; Enterprise $39/mo
ModelsClaude Sonnet 3.5 (used in swebench evaluation); broader model support not publicly specifiedOpenAI GPT-4o, Claude 3.5 Sonnet, Gemini 1.5 Pro (multi-model)
Privacy / hostingOpen source; self-hostableCloud (GitHub/Microsoft)
Open sourceYes (GitHub: codestoryai/aide)No
Offline / local modelsNot publicly documentedNo

Key Strengths

  • Open source and self-hostable: Aide is fully open source under the CodeStory AI GitHub organization. Developers who want full control over their AI coding environment — including the ability to self-host, audit the codebase, and contribute improvements — can do so freely, unlike GitHub Copilot which is entirely proprietary.
  • State-of-the-art swebench performance: CodeStory AI published a result of 62.2% resolution rate on SWE-bench Verified using Aide's agentic framework with Claude Sonnet 3.5 and test-time inference scaling. This places Aide among the top-performing systems on this rigorous real-world code editing benchmark.
  • Proactive agents with Language Server integration: Aide's agents do not just respond to prompts — they proactively monitor linter errors from the Language Server and use go-to-definitions and go-to-references to pull in relevant context and propose fixes autonomously. This tight integration with the editor's own intelligence layer produces more contextually accurate agent behavior.
  • Combined chat and edit flow: Aide merges the brainstorming/chat phase with the editing phase in a single workflow. Users can reference files in chat, reason about the problem, and jump directly into multi-file edits — without switching modes or tools.
  • AST-based navigation: Aide supports AST (Abstract Syntax Tree) navigation, allowing developers to move through code in logical blocks rather than line-by-line. This is particularly useful for understanding and refactoring unfamiliar codebases.

Known Limitations

  • Standalone IDE, not an extension: Aide requires switching to its standalone IDE rather than adding AI features to your existing editor. Developers with deep JetBrains, Vim, Neovim, or Visual Studio customizations cannot use Aide in their current environment.
  • Pricing not publicly documented: Aide's pricing model is not clearly spelled out on the official site. The product appears to have both open-source and commercial components; developers evaluating cost should check directly with CodeStory AI or the GitHub repository.
  • Smaller community and ecosystem: As a newer, open-source project, Aide has a smaller community and plugin ecosystem compared to VS Code with GitHub Copilot or JetBrains IDEs. Enterprise support and SLA guarantees are not publicly documented.

Best For

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.

Pricing

  • Open Source: Free to use and self-host (source available on GitHub at codestoryai/aide)
  • Managed / Cloud tier: Not publicly documented — check the official site for current availability

Prices are subject to change. Check the official site for current details.

Tech Details

  • Type: AI IDE (VS Code fork)
  • IDEs: Standalone AI-native IDE based on VS Code; not an extension for other editors
  • Key features: Proactive agents with Language Server integration, combined chat+edit workflow, inline editing widget (Ctrl/Cmd+K), AST navigation, intelligent code completion, multi-file edits, go-to-definitions/references context pull
  • Privacy / hosting: Open source; self-hostable; cloud managed option details not publicly documented
  • Models / context window: Claude Sonnet 3.5 confirmed in swebench evaluation; broader model support not publicly specified

When to Choose This Over GitHub Copilot

  • You want a fully open-source AI coding tool you can audit, fork, or self-host
  • You need an AI IDE with proactive, autonomous agents rather than reactive completions triggered by typing
  • You value cutting-edge swebench benchmark performance as a proxy for real-world agentic code editing quality
  • You are comfortable switching to a new IDE and want AI features deeply integrated at the editor level rather than bolted on via an extension

When GitHub Copilot May Be a Better Fit

  • You need an AI extension for your existing IDE (JetBrains, Vim, Neovim, Visual Studio, Xcode) rather than a new standalone editor
  • You require enterprise SLAs, dedicated support, and transparent pricing from a well-funded company
  • You rely on the GitHub Copilot ecosystem — Copilot Workspace, PR integration, extensions marketplace — that does not have an equivalent in Aide
  • You need multi-model selection (GPT-4o, Gemini, Claude) with explicit per-request model switching

Conclusion

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.

Sources

FAQ

Is Aide free?

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.

Does Aide work with VS Code?

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.

How does Aide compare to GitHub Copilot?

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.

Is Aide open source?

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.

Aide's Agentic Framework: Proactive vs Reactive AI

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 Performance and What It Means in Practice

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.

Open Source Architecture and Self-Hosting

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's Combined Chat and Edit Workflow

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.

Reviews

No reviews yet

Similar tools alternatives to Github Copilot