The Complete Qoder IDE Guide โ Installing, Using, and Pricing Alibaba's Agentic Coding Platform
The Complete Qoder IDE Guide โ The Era When Agents Write the Code
If Cursor and GitHub Copilot changed the paradigm of coding, Qoder shows the next step. It is an agentic coding platform where AI reads the spec, makes a plan, writes the code, and even runs the tests autonomously.
1. What Is the Qoder IDE
| Item | Details |
|---|---|
| Developer | Alibaba |
| Release date | August 2025 |
| Current version | v0.7+ |
| Official site | https://qoder.com |
| Docs | https://docs.qoder.com |
| GitHub | https://github.com/QoderAI |
Qoder is not a VS Code derivative but a standalone desktop IDE designed for AI agents from the ground up. Instead of a human typing the code as in a conventional IDE, the AI understands the entire project and writes the code autonomously.
2. Core Features
Quest Mode โ Autonomous Agent Development
When a developer gives a natural-language instruction such as "build a login page and add JWT authentication logic," Qoder makes a plan and autonomously edits multiple files.
- Agent Mode: a single agent performs the work alone
- Experts Mode: multiple agents collaborate in parallel
- Spec-driven: specification-based development โ scope definition, structuring, review, implementation order
NES (Next Edit Suggestions)
Beyond simple code completion, it predicts the location and content of the next edit.
- Multi-line simultaneous edit suggestions
- Simultaneous edits to related code across files
- Trigger with
Alt P, accept withTab
Repo Wiki
Automatically documents the project architecture and updates it in real time as the code changes.
100K File Context
It indexes projects of up to 100,000 files, understanding the entire architecture.
3. Download and Installation
macOS
# Option 1: official site
# https://qoder.com/en/download โ download for macOS
# Option 2: CLI
curl -fsSL https://qoder.com/install | bash
Windows
Download the .exe installer from the official site and run it.
Linux
# Debian/Ubuntu
# https://qoder.com/en/download โ download the .deb
sudo dpkg -i qoder_*.deb
# Fedora/RHEL
sudo rpm -i qoder_*.rpm
# CLI
curl -fsSL https://qoder.com/install | bash
JetBrains Plugin
In IntelliJ, PyCharm, GoLand, and others, go to Settings > Plugins > Marketplace, search for "Qoder," and install.
4. Basic Usage
Opening Your First Project
1. Launch Qoder
2. User icon in the top right > Sign in (Google/GitHub)
3. Open a project: Cmd+O (Mac) / Ctrl+O (Windows)
4. Wait for indexing (a few minutes the first time)
Key Shortcuts
| Action | macOS | Windows/Linux |
|---|---|---|
| Trigger NES | Alt P | Alt P |
| Accept NES | Tab | Tab |
| Inline chat | Cmd I | Ctrl I |
| AI chat sidebar | Cmd L | Ctrl L |
| Settings | Cmd Shift , | Ctrl Shift , |
How to Use Quest Mode
1. Click the "Open Quest" button at the top
2. Choose Agent or Experts mode
3. Enter a task description:
"Refactor this module's async handling to async/await"
4. AI generates a Spec document > review > implementation
5. Check the changes in the Diff view
6. Commit/push
5. BYOK (Bring Your Own API Key)
Instead of using Qoder credits, you can connect an API key you already use.
Supported Models
| Provider | Models | Where to get the API key |
|---|---|---|
| DeepSeek | DeepSeek series | platform.deepseek.com |
| OpenAI | GPT series | platform.openai.com |
| Anthropic | Claude series | console.anthropic.com |
| Gemini series | aistudio.google.com | |
| Alibaba | Qwen series | bailian.console.aliyun.com |
How to Connect
Settings > Models > + Add > select provider > enter API key > confirm
When using BYOK, Qoder credits are not consumed. Charges are billed directly by each model provider.
6. Pricing (as of 2026)
| Plan | Price | Credits | Features |
|---|---|---|---|
| Free | Free | Limited | NES, completion, BYOK, Chat (limited) |
| 2-week Pro Trial | Free | 300 | Experience the full Pro features |
| Pro | $20/month | 2,000 | Quest + Repo Wiki + Knowledge Card |
| Pro+ | $60/month | 6,000 | Pro + more credits |
| Ultra | $200/month | 20,000 | Suited to long-running Quest work |
When credits run out, it automatically switches to the base model, and you can buy additional credits ($20/1,500).
7. Qoder vs Cursor vs Copilot
| Item | Qoder | Cursor | GitHub Copilot |
|---|---|---|---|
| Form | Standalone IDE | VS Code derivative | IDE plugin |
| Agent | Quest (autonomous) | Agent (experimental) | Limited |
| Multi-model | Automatic routing | Single model | Single model |
| Context | 100K files | 128K-200K tokens | Limited |
| Auto documentation | Repo Wiki | None | None |
| Price | $20/month~ | $20/month~ | $10/month~ |
| BYOK | Supported | No | No |
8. Practical Usage Tips
- Clear instructions: "add validation to this component" works better than "fix the code"
- Use @ references: reference related files with
@to convey context - Take a gradual approach: MVP first > review > add detailed requirements, repeating
- Leverage Repo Wiki: keep the documentation current so the AI doesn't get lost in large projects
Qoder IDE is an agentic coding platform developed by Alibaba as of 2026, differentiating itself from the existing Cursor/Copilot through Quest Mode and NES.
AI Knowledge Hub