EveryDev.ai
Subscribe
Home
Tools

4,030+ 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. Ix
    Ix icon

    Ix

    Code Intelligence
    Featured

    Open-source CLI tool that parses any codebase into a persistent graph of symbols, calls, and imports so developers and AI agents can query code structure instead of grepping files.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free to use, modify, and distribute under the Apache License 2.0.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    VS Code

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Code IntelligenceAI Coding AssistantsMCP Servers

    Alternatives

    SlnmapCodeGraphpolycodegraph
    Developer
    Ix Infrastructure, Inc.San Diego, CAEst. 2025

    Listed Sep 2026

    About Ix

    Ix is an open-source code intelligence tool built by Ix Infrastructure, Inc. and licensed under Apache 2.0. It parses repositories using tree-sitter into a persistent local graph of symbols, calls, and imports, giving both developers and AI coding agents a structured way to navigate any codebase. The project reached v0.10.8 as of September 2026 and has accumulated nearly 900 GitHub stars since its March 2026 launch.

    What It Is

    Ix is a CLI-first code intelligence layer that maps a repository once and keeps that map alive between sessions. Instead of re-reading files or pasting whole modules into an AI prompt, developers and agents query a local graph database (ArangoDB plus a memory layer, run in Docker) for bounded, precise answers about any symbol, flow, or dependency. The tool also ships an MCP server so any MCP-capable AI client can use the same graph tools directly.

    How the Graph Model Works

    The core pipeline is Map → Structure → Retrieve → Remember:

    • ix map . runs tree-sitter over the repo and extracts symbols, calls, and imports as nodes and edges.
    • The graph is stored locally in ArangoDB and persists between sessions and agent runs.
    • Commands like ix explain, ix trace, ix impact, and ix callers return bounded structural slices rather than whole files.
    • ix watch keeps the graph current as files change.
    • ix view opens Compass, a browser-based visualizer of the graph.

    The README notes that across internal development work, querying the graph instead of feeding files into a prompt cut token use by 30–99.7%, varying with task and repo size. These are described as internal measurements, not a published benchmark.

    Language and Integration Coverage

    Ix extracts symbols, calls, and imports across 27 languages, including JavaScript, TypeScript, Python, Java, C, C++, C#, Go, Ruby, Rust, PHP, Kotlin, Swift, Scala, Elixir, Haskell, Zig, Lua, Bash, PowerShell, HCL/Terraform, and more. CUDA files are parsed with the C++ grammar. Config and data formats such as YAML, JSON, TOML, SQL, Protocol Buffers, Dockerfile, and Markdown are also recognized.

    For AI client integration, ix mcp install auto-detects and registers the MCP server with Claude Code, Codex, Cursor, VS Code, Gemini CLI, OpenClaw, and opencode. Native plugin packages are also available for each client. An agent skill file in skills/ix/ follows the Claude Code skill format and the agents.md standard, so multiple harnesses load the same skill tree.

    Setup Path

    Installation on macOS and Linux requires only curl:

    curl -fsSL https://ix-infra.com/install.sh | sh
    

    On Windows, Node.js 22+ and Docker Desktop are prerequisites, then a PowerShell one-liner handles the rest. The installer checks for and installs Node.js 22+, Git, ripgrep, and Docker Compose automatically. Pre-built CLI packages cover Apple Silicon macOS, Linux (x86-64 and arm64), and Windows x86-64; Intel Macs can install via Homebrew from source.

    Update: v0.10.8

    The latest release is v0.10.8, published on September 6, 2026. The repository was last pushed to on September 24, 2026, indicating active development. The project launched in March 2026 and has moved through ten minor versions in roughly six months. Alongside Ix, the team is building Kartr, an agent platform that extends the same memory engine to non-code sources (email, calendar, meetings, team chat) and is currently in alpha with early-access onboarding.

    Ix - 1

    Community Discussions

    Be the first to start a conversation about Ix

    Share your experience with Ix, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free to use, modify, and distribute under the Apache License 2.0.

    • Full CLI access (ix map, ix explain, ix trace, ix impact, etc.)
    • Persistent local graph via ArangoDB + Docker
    • MCP server for AI client integration
    • 27 language support
    • Compass visualizer

    Capabilities

    Key Features

    • Parse any repository into a persistent local graph of symbols, calls, and imports
    • Query code structure with commands like ix explain, ix trace, ix impact, ix callers
    • MCP server for AI client integration (Claude Code, Codex, Cursor, VS Code, Gemini CLI, OpenClaw, opencode)
    • Supports 27 programming languages via tree-sitter
    • Compass browser-based graph visualizer (ix view)
    • Persistent graph survives between sessions and agent runs
    • ix watch for continuous re-mapping on file changes
    • Agent skill file compatible with Claude Code skill format and agents.md standard
    • Structural smell detection (ix smells)
    • Token-minimal LLM output format for agent consumption
    • Git history and diff support (ix history, ix diff)
    • Local backend via ArangoDB + Docker Compose

    Integrations

    Claude Code
    Codex
    Cursor
    VS Code
    Gemini CLI
    OpenClaw
    opencode
    ArangoDB
    Docker
    tree-sitter
    MCP (Model Context Protocol)
    Homebrew
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Ix and help others make informed decisions.

    Developer

    Ix Infrastructure, Inc.

    Ix Infrastructure builds open-source code intelligence tools and AI agent platforms. Their flagship open-source project, Ix, parses codebases into persistent graphs so developers and AI agents can query structure instead of reading files. The team also develops Kartr, an agent platform extending the same memory engine to email, calendar, meetings, and team chat. Ix Infrastructure operates under the tagline "Persistent world models for intelligent machines."

    Founded 2025
    San Diego, CA
    8 employees
    Read more about Ix Infrastructure, Inc.
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    Slnmap icon

    Slnmap

    A local semantic code graph and MCP server that gives AI coding agents a compiler-accurate map of your entire .NET solution for precise refactoring and impact analysis.

    CodeGraph icon

    CodeGraph

    A local-first, open-source code intelligence tool that turns any codebase into a queryable knowledge graph for AI coding agents, reducing tool calls and token usage.

    polycodegraph icon

    polycodegraph

    A language-agnostic code graph builder and MCP server that parses any repo into a queryable SQLite graph, enabling AI assistants like Claude Code and Cursor to trace parameters across the full stack with focused context.

    Browse all tools

    Related Topics

    Code Intelligence

    AI tools that analyze, generate, and transform code through natural language understanding and programming language comprehension.

    107 tools

    AI Coding Assistants

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

    881 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

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