This organization is home to VS Code extensions built and maintained by Raimal Raja, focused on one goal: cutting the time between "something broke" and "it's fixed" down to a single click, without leaving the editor.
Every extension here is AI-powered, ships with a proxy backend so no API keys ever live in your machine or your VS Code settings, and is designed to stay out of your way until something actually needs your attention.
Automatically detects terminal errors and warnings, explains what went wrong in plain English, and fixes them β right from inside VS Code.
What it does:
| Feature | Description |
|---|---|
| π΄ Auto-Detect | Watches your terminal via VS Code's shell integration API. The moment a command errors out β or even just prints a warning β a notification offers to fix it. |
| π Root-Cause Explanation | Professor-Raimal (CoderAI's model) explains why the error happened, in plain English, not just what the stack trace says. |
| π οΈ Step-by-Step Fix | Clear, numbered instructions for resolving the issue β not just a wall of text. |
| π» One-Click Apply | Generates the corrected code and writes it directly into the file that errored, via Apply Fix to File. |
| π¦ Dependency Detection | Recognizes missing-package errors and hands you the exact install command, ready to copy. |
| π Multi-Language | Python, JavaScript, TypeScript, Java, C++, C#, and more. |
How it works under the hood:
- The extension never ships or stores a real provider API key. Every request is routed through a PHP proxy (
generate.php), which holds the real key server-side, outside the web root. - The proxy calls an OpenAI-compatible LLM endpoint (currently NVIDIA NIM, model
Professor-Raimal) and normalizes the response into a consistent shape the editor UI can render. - Per-IP rate limiting protects the shared backend quota from being exhausted by any single noisy client.
- The side panel runs under a strict, nonce-based Content-Security-Policy β no unsandboxed script execution, scoped
connect-srcto the CoderAI backend only.
Install:
ext install RaimalRaja.coderai-auto-bug-fixerOr from the Marketplace directly: marketplace.visualstudio.com/items?itemName=RaimalRaja.coderai-auto-bug-fixer
- Extension host: TypeScript, VS Code Extension API (shell integration, terminal link providers, webview panels)
- UI: Custom webview with a strict CSP, CSS-driven layout, no external UI frameworks
- Backend: PHP proxy on a standard LAMP host, OpenAI-compatible LLM API
- Tooling:
esbuild/tsc,@vscode/vscefor packaging and publishing
| Repo | Description |
|---|---|
CoderAI-Auto-Bug-Fixer-VScode-Extension |
Source for CoderAI - Auto Bug Fixer |
Open an issue on the relevant repo, or use the in-editor command CoderAI: Analyze Terminal to see if CoderAI can fix it for you first. π
Made with β€οΈ by Raimal Raja