EveryDev.ai
Subscribe
Home
Tools

3,844+ 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. Codeknow
    Codeknow icon

    Codeknow

    Code Intelligence

    Turn any codebase into a queryable knowledge graph with health scores, drift detection, impact analysis, and onboarding guides — all from AST parsing, no API keys required.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. All features available at no cost.

    Engagement

    Available On

    Web
    API
    VS Code
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Code IntelligenceAI Coding AssistantsMCP Servers

    Alternatives

    CodeGraphGitNexusGortex
    Developer
    Alex SalsaliAlex Salsali builds Codeknow, an open-source CLI tool that t…

    Listed Sep 2026

    About Codeknow

    Codeknow is an open-source CLI tool by Alex Salsali that converts any codebase into a queryable knowledge graph using tree-sitter AST parsing across 25+ languages. It requires no API keys, no embeddings, and no vector stores for its core functionality, making it immediately usable after a single pip install. A live demo is available at codeknow.onrender.com where users can paste any GitHub repo URL and get architecture analysis instantly.

    What It Is

    Codeknow sits in the code intelligence category, specifically targeting architectural understanding and developer productivity. It builds a NetworkX DiGraph where nodes represent symbols (functions, classes, modules) and edges represent relationships (imports, calls, inheritance). Every analysis command — from debt scoring to security tracing — operates directly on this graph without requiring an LLM. The tool works standalone or as a force multiplier for AI coding assistants including Claude Code, Cursor, Gemini CLI, OpenAI Codex, and VS Code Copilot Chat.

    Core Analysis Commands

    Codeknow ships with a broad command surface covering the full software development lifecycle:

    • codeknow debt — Composite architectural health score (0–100, letter grade) covering god-node concentration, cross-community coupling, import cycles, community cohesion, and dead code
    • codeknow drift snapshot/compare — Save a named architecture baseline and detect what changed since
    • codeknow impact "<file>" — Blast radius analysis showing what breaks if a file changes
    • codeknow test-impact — Maps changed files to affected tests, pipeable directly to pytest
    • codeknow security — Attack surface analysis via source-to-sink path tracing
    • codeknow owners — Git-blame overlay for knowledge silos, bus factor, and CODEOWNERS generation
    • codeknow refactor-plan "<target>" — Dependency-aware refactoring order with risk assessment
    • codeknow onboard — Generates a guided codebase tour from graph topology
    • codeknow simulate — Simulate removing, merging, or extracting nodes before making changes

    All commands support --json for machine-readable output, enabling CI pipeline integration.

    Language and Integration Breadth

    The tool supports 25+ languages through dedicated tree-sitter extractors: Python, JavaScript, TypeScript, Go, Rust, Java, C, C++, C#, Ruby, Kotlin, Scala, PHP, Swift, Lua, Zig, PowerShell, Elixir, Objective-C, Julia, Verilog, Fortran, Bash, Groovy, Apex, Dart, Pascal, OCaml, Common Lisp, Terraform (HCL), Robot Framework, SQL, JSON/config, and Markdown. Language detection is automatic.

    For AI agent integration, Codeknow provides a one-command installer for each supported assistant (codeknow install claude, codeknow install cursor, etc.) and an optional MCP server (pip install "codeknow[mcp]") that exposes suggest_refactoring and impact_analysis tools to any MCP-compatible client.

    Zero-LLM Architecture

    The core pipeline — parse, build, analyze, simulate, discover, debt, drift, onboard, security, test-impact, owners, and refactor-plan — works entirely without any API key. LLM integration is optional and available via extras for OpenAI, Anthropic, and Ollama (local inference). This design means the tool is immediately useful in air-gapped or cost-sensitive environments. Optional extras also cover Neo4j and FalkorDB graph database export, PDF/Word/Excel/video document ingestion, PostgreSQL schema introspection, SVG export, and a file watcher for live rebuilds.

    Update: v1.1.2

    The latest release is v1.1.2, published on September 2, 2026. The repository was created on August 31, 2026, and last updated on September 7, 2026, indicating active early development. The project is MIT-licensed and hosted on GitHub under the asalsali/codeknow repository.

    Codeknow - 1

    Community Discussions

    Be the first to start a conversation about Codeknow

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. All features available at no cost.

    • Full knowledge graph construction from source code
    • 25+ language support via tree-sitter
    • All analysis commands (debt, drift, impact, security, owners, refactor-plan, onboard)
    • Simulation engine
    • Interactive HTML visualization and TUI

    Capabilities

    Key Features

    • AST-based knowledge graph from source code (tree-sitter, 25+ languages)
    • Architectural debt score (0-100, letter grade) with CI gating
    • Drift detection with named baseline snapshots
    • Impact analysis (blast radius) for file changes
    • Test-impact mapping to run only affected tests
    • Security attack surface analysis via source-to-sink path tracing
    • Ownership analysis with git-blame overlay and CODEOWNERS generation
    • Dependency-aware refactoring plan generation
    • Onboarding guide generation from graph topology
    • Simulation engine: remove, merge, or extract nodes before committing
    • Interactive HTML visualization and TUI terminal navigator
    • Live architecture dashboard at localhost:8787
    • Export to Neo4j, Obsidian, SVG, GraphML, HTML, wiki
    • MCP server for AI coding assistant integration
    • One-command installer for Claude Code, Cursor, Gemini CLI, Codex, VS Code
    • Zero-LLM default mode — no API keys required for core functionality
    • Optional LLM integration (OpenAI, Anthropic, Ollama)
    • Cross-repo global graph support
    • Natural language query support (requires LLM)
    • Incremental rebuild for changed files only
    • All commands support --json for machine-readable output

    Integrations

    Claude Code
    Cursor
    Gemini CLI
    OpenAI Codex
    VS Code Copilot Chat
    Kilo Code
    Google Antigravity
    Kiro IDE/CLI
    MCP (Model Context Protocol)
    Neo4j
    FalkorDB
    PostgreSQL
    OpenAI API
    Anthropic API
    Ollama
    GitHub Actions (CI)
    pytest
    Obsidian
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Alex Salsali

    Alex Salsali builds Codeknow, an open-source CLI tool that turns any codebase into a queryable knowledge graph using tree-sitter AST parsing. The project focuses on zero-configuration, zero-LLM-required code intelligence that works across 25+ programming languages. Codeknow integrates with major AI coding assistants and exposes an MCP server for agent-driven workflows.

    Read more about Alex Salsali
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    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.

    GitNexus icon

    GitNexus

    GitNexus indexes any codebase into a knowledge graph of every dependency, call chain, cluster, and execution flow, so AI agents never miss code.

    Gortex icon

    Gortex

    A high-performance code-intelligence engine that indexes repositories into an in-memory knowledge graph and serves it to AI coding agents via MCP, HTTP, and a web UI — supporting 257 languages with up to 50× fewer tokens per response.

    Browse all tools

    Related Topics

    Code Intelligence

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

    103 tools

    AI Coding Assistants

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

    832 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

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