EveryDev.ai
Subscribe
Home
Tools

3,904+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. GenerativeIDE (GIDE)
    GenerativeIDE (GIDE) icon

    GenerativeIDE (GIDE)

    AI Coding Assistants
    Featured

    A local-first agentic AI code editor built on VS Code that runs LLMs entirely on your machine with no token costs, a write gate on every edit, and support for any GGUF model.

    Visit Website

    At a Glance

    Pricing
    Trial available

    Full access to any paid plan for 30 days, no credit card required.

    Developer: $200/yr
    Business: $1000/yr
    Enterprise: Custom/contact

    Engagement

    Available On

    Windows
    macOS
    Linux
    Android
    API

    Resources

    WebsiteDocsllms.txt

    Topics

    AI Coding AssistantsLocal InferenceDevelopment Environments

    Alternatives

    SylixTRAEEnia Code
    Developer
    GenerativeIDE (GIDE, Inc.)Corpus Christi, TXEst. 2022

    Listed Sep 2026

    About GenerativeIDE (GIDE)

    GenerativeIDE (GIDE) is a local-first agentic code editor built on VS Code OSS that runs large language models entirely on your machine via llama.cpp, with no per-token charges and no code leaving your device. It ships with Ornith 9B bundled so the editor is productive on first launch, and supports Qwen, Gemma, DeepSeek, and any GGUF file alongside cloud models (Claude, GPT, Gemini) via bring-your-own-key. The current release is v2.3.6, available for Windows, macOS (Apple Silicon), and Linux.

    What It Is

    GIDE is an agentic IDE in the same category as Cursor or GitHub Copilot, but designed around a local-first, offline-capable model. The agent accepts a plain-English goal, plans the work, edits across multiple files, runs shell commands, and verifies its own output — all without single-line completions. A "write gate" pauses every file write and shell command for user approval before anything is applied, and a rejection is fed back to the agent so it can try a different approach rather than silently failing. Every tool call, write, and approval is recorded in a local JSONL audit log.

    How the Agent Works

    The agent operates in a multi-step loop:

    • Plan → Edit files → Run commands → Verify — the full cycle runs end to end on a stated goal
    • Semantic retrieval (RAG) — Hybrid JEPA embeddings index the whole repo so answers are grounded in real files, not guesses from file names
    • Persistent project memory — context, architecture decisions, and naming conventions survive across restarts per project
    • Skill files — drop a markdown file in .gide/skills and the agent loads it deterministically by @mention or file glob
    • One persistent shell — a cd, exported variable, or activated virtualenv carries forward to the next command in the same session
    • Universal Refactoring Engine — AST-level rename, extract, and restructure via Tree-sitter across 21 languages, applied atomically across files

    Model Access and Local Inference

    GIDE is model-agnostic. The bundled Ornith 9B requires no setup; Qwen, Gemma, and DeepSeek are one command away; and any .gguf file is auto-detected — GIDE derives the prompt dialect and tool-call format from the model file itself. Inference runs through llama.cpp with GPU acceleration on Apple Silicon (Metal) and NVIDIA (CUDA). The site states Ornith 9B needs 12 GB VRAM on Windows or 18 GB unified memory on Mac. Cloud models (Claude, GPT, Gemini) work with a user-supplied API key stored in the OS keychain; GIDE never proxies prompts or marks up tokens.

    Deployment Model and Interfaces

    GIDE offers three interfaces that share one local server:

    • Editor — a full VS Code–based IDE with a chat panel; compatible with Open VSX extensions and existing VS Code keybindings
    • CLI — the same agent in the terminal, with real exit codes so it pipes and composes like any shell tool; supports gide --continue and gide --resume
    • Local OpenAI-compatible API — an endpoint bound to 127.0.0.1:41337/v1; mint an sk-gide- key and point any OpenAI SDK at it; traffic never leaves the machine

    The CLI and editor coordinate through a lease and can run simultaneously, sharing the same model, memory, and write gate.

    Target Audience and Regulated Environments

    The contact page states GIDE supports developers in defense, healthcare, financial services, and robotics — environments where code privacy and air-gap operation are non-negotiable. Enterprise features include air-gapped deployment, SSO/SAML (Okta, Azure AD), custom compliance reporting, JSONL audit telemetry, bearer-token authentication, folder trust (path containment blocks symlink escapes), and 20 safety guards that prevent the agent from writing outside the project root or deleting untracked files.

    Update: v2.3.6

    Version 2.3.6 is the current release. Notable additions in this version include: a one persistent shell (so environment state carries across commands), folder trust (stored once, shared by editor and CLI), support for any GGUF with auto-detected model identity, a current llama.cpp runtime tracking upstream closely (Gemma 4, DeepSeek V4, Mistral 4, and Cohere2-MoE among recent additions), and the full Gide CLI as a terminal client sharing the same local server as the editor.

    GenerativeIDE (GIDE) - 1

    Community Discussions

    Be the first to start a conversation about GenerativeIDE (GIDE)

    Share your experience with GenerativeIDE (GIDE), ask questions, or help others learn from your insights.

    Pricing

    TRIAL

    30-Day Free Trial

    Full access to any paid plan for 30 days, no credit card required.

    • Full access to any paid plan features
    • No credit card required
    • 30 days or until plan purchase

    Developer

    For individual developers running local AI models offline.

    $200/yr
    billed annually
    $20/mo monthly
    • Ornith 9B bundled, runs fully offline
    • Unlimited local inference, no per-token charges
    • Plan-gate + write-gate on every edit
    • Universal Refactoring Engine (21 languages)
    • Gide CLI, local API and Skill files
    • Email support

    Business

    Popular

    For individuals and teams needing frontier models and advanced features.

    $1000/yr
    billed annually
    $100/mo monthly
    • Everything in Developer
    • BYOK: Claude, GPT, Gemini or any OpenAI-compatible API
    • Full MCP client + Context Memory Server
    • GIDE Wiki: architecture graph of your codebase
    • Custom AI model on request
    • Priority email support
    • Team management & invites
    • Shared workspace
    • Per-seat billing

    Enterprise

    For organizations needing air-gapped deployment, SSO, and compliance features.

    Custom
    contact sales
    • Everything in Business
    • Air-gapped deployment
    • SSO/SAML (Okta, Azure AD)
    • Custom compliance reporting
    • Custom integrations
    • Dedicated onboarding & setup
    • Volume seat licensing
    • 1-day support SLA
    View official pricing

    Capabilities

    Key Features

    • Agentic coding (plan → edit → run → verify)
    • Write gate on every file write and shell command
    • Local JSONL audit log
    • Bundled Ornith 9B model (no setup required)
    • Support for Qwen, Gemma, DeepSeek, and any GGUF model
    • BYOK for Claude, GPT, and Gemini
    • Semantic retrieval (RAG) across whole codebase
    • Persistent project memory across sessions
    • Skill files for team conventions
    • Universal Refactoring Engine (AST-level, 21 languages via Tree-sitter)
    • One persistent shell (environment state carries across commands)
    • Folder trust with path containment
    • Full MCP client with gallery and management UI
    • Context Memory Server
    • GIDE Wiki (architecture graph via Tree-sitter import analysis)
    • Local OpenAI-compatible API endpoint (127.0.0.1)
    • CLI with real exit codes and scriptable interface
    • GPU acceleration (Metal on Apple Silicon, CUDA on NVIDIA)
    • Air-gapped deployment support
    • SSO/SAML (Okta, Azure AD)
    • 20 safety guards
    • Open VSX extension compatibility
    • Sandboxed shell

    Integrations

    llama.cpp
    VS Code OSS
    Open VSX marketplace
    Claude (Anthropic)
    GPT (OpenAI)
    Gemini (Google)
    MCP (Model Context Protocol)
    Okta
    Azure AD
    OpenAI-compatible APIs
    Tree-sitter
    CUDA
    Metal (Apple Silicon)
    Vulkan
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate GenerativeIDE (GIDE) and help others make informed decisions.

    Developer

    GenerativeIDE (GIDE, Inc.)

    GenerativeIDE builds GIDE, a local-first agentic code editor that runs LLMs entirely on-device via llama.cpp with no token costs. Founded by Rohit B.R (Founder & CTO) with a remote-first global team incorporated as a Delaware C-corp based in Texas, the company focuses on privacy-first AI tooling for developers in regulated industries including defense, healthcare, and financial services. GIDE is built on VS Code OSS and ships with a bundled model so developers are productive on first launch without any cloud dependency.

    Founded 2022
    Corpus Christi, TX
    Read more about GenerativeIDE (GIDE, Inc.)
    WebsiteLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    Sylix icon

    Sylix

    A free, local-first AI code editor built in Rust with BYOK support, a verify loop, and a multi-agent architecture that keeps your code on your machine.

    TRAE icon

    TRAE

    AI-powered code editor and autonomous coding agent that helps developers ship software faster with intelligent code generation and multi-agent capabilities.

    Enia Code icon

    Enia Code

    Enia Code is a proactive AI coding partner for VS Code that detects issues and surfaces ready-to-apply solutions before you even prompt it.

    Browse all tools

    Related Topics

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    852 tools

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    194 tools

    Development Environments

    AI-enhanced code editors and IDEs that improve the coding experience.

    199 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions