CodeInsight MCP Server is a local-first first-read router for AI coding agents. It turns "scan the repository and guess what matters" into a bounded local route: index the project, choose the first context pack, offer the next focused tool, and preview impact before edits.
The product is intentionally narrow. It is built for the first-read problem: before an agent edits a repository, it needs to know which files matter, what entrypoints to inspect, what context fits the token budget, and what may be impacted by a change. CodeInsight keeps that loop local and exposes it through CLI and MCP tools.
The primary agent loop is one call:
agent_route -> selected context -> executable suggested_tool -> impact check
That route gives the agent:
- selected files and line ranges instead of a broad repository scan
reading_plan[].focusas the compact scan label for each selected filereading_plan[].questionas the local checklist for the current filereading_plan[].reasoninstructions that explain what to read first and whycontext_pack.read_lessmetrics that show first-read source-line reductionexecution_plan[]actions that keep focused follow-up tools behind the selected-context read- an executable
suggested_toolsuch asfile_outlinefor deeper local evidence when needed - an
impact_analysispreview before edits
CodeInsight is not trying to replace an IDE, LSP, compiler, or Sourcegraph. Its job is to help AI agents read less code, pick better context, and stop guessing which file to open next.
Use CodeInsight when the agent needs a local reading route. Keep using the IDE, LSP, compiler, test runner, and language-specific tools for precise diagnostics, type checks, and final verification.
Current public routing snapshot: pinned Express, FastAPI, Flask, Gin, Requests,
Streamlit, and Wouter route-quality expectations pass 92/92, selecting
41,664 of 7,142,226 task source lines for a 99.41% aggregate first-read line reduction,
with each route carrying a first suggested tool such as file_outline. See the
checked-in Markdown snapshot and
JSON summary. A heavyweight
manual Django probe covers URL resolver routing, request/response lifecycle,
and middleware behavior with 3/3 expected first-file checks and a 99.87%
aggregate first-read line reduction. Reproduce the default snapshots:
scripts/update-public-task-routing-matrix.sh --checkFor a deterministic no-network check of the same snapshot machinery:
scripts/update-public-task-routing-matrix-smoke.shBest-fit tasks:
- understand a new repository before opening many files
- plan an edit from a broad request such as "change the auth flow"
- collect the first files, reading questions, and follow-up tools for an agent
- preview likely impact before touching code
Do not treat CodeInsight output as compiler-grade proof. It is a local context router: it narrows the first read, explains why each file was selected, and hands the agent to precise local tools when the selected context is not enough.
-
Install the binary:
curl -fsSL https://raw.githubusercontent.com/sleticalboy/CodeInsight-mcp/main/scripts/install.sh | sh -
Add the local MCP server:
{ "mcpServers": { "codeinsight": { "command": "codeinsight", "args": ["serve", "--transport", "stdio"] } } }Codex, Claude Code, Cursor, and generic JSON examples are in MCP client configuration.
-
Tell the agent to start broad repository tasks with:
Call agent_route with root, task, and token_budget 6000 before reading files directly. If the task names an indexed file path such as src/auth.ts, pass it in task; CodeInsight can auto-seed that path without --file. If continuation_summary.status is blocked_no_seed, ask for a seed file or symbol instead of broad-reading. If it is blocked_invalid_seed or blocked_no_context, ask for an existing or matching seed and retry. Read selected files in reading_plan order and use selection_rank as the audit trail. Use reading_plan.focus as the compact scan label for the selected file. Treat reading_plan.question as the local checklist for the selected file. Use context_pack.read_less only as first-read reduction evidence. Use continuation_summary only after selected context is consumed. Follow agent_route.execution_plan[] in order. Use agent_route.routing_decision for a compact display of the first seed, first file, read-less metrics, continuation, and impact status. If another local graph backend already produced candidate files, pass its advisory evidence as agent_route.backend_evidence; use route_quality warnings to compare backend and local routes before editing.The first MCP
tools/callpayload is shown in First Agent Route Call. -
Pick the validation that matches your adoption stage:
Stage Command Use When First look scripts/two-minute-demo.shYou want a visible agent_route -> context_pack -> impact_analysiswalkthrough with an[Evidence summary].Framework entrypoints scripts/framework-entrypoint-demo.shYou want local proof that Next.js, Rails, Django, and C# web entrypoints can be detected and routed as first context for matching tasks. Task routing matrix scripts/task-routing-matrix.sh /path/to/repo --expect-file ./route-expectations.tsvYou want a multi-task first-read matrix showing first selected file, seed strategy, line reduction, token estimate, impact preview, optional explicit --file/--symbolseeds, and optional expected-file gates for one repository.Public route matrix scripts/public-task-routing-matrix.shYou want one aggregate route-quality summary across pinned checked-in Express, FastAPI, Flask, Gin, Requests, Streamlit, and Wouter expectation files. Add --case djangofor the heavier manual Django route-quality probe. See the checked-in public routing snapshot.MCP wiring CODEINSIGHT_BIN="$(command -v codeinsight)" scripts/mcp-first-call-smoke.shYou want a compact JSON proof that stdio MCP accepts agent_route, returns the first context file, followsreading_plan[], exposes route quality, read-less metrics, selection rank, and continuation evidence, runs the current step's suggested tool, includes impact suggested checks, and returns structured blocked routes with recovery actions for empty repositories, unusable explicit seeds, and unindexed task-path seeds.Installed adoption CODEINSIGHT_BIN="$(command -v codeinsight)" scripts/installed-quickstart-smoke.shYou want the installed binary to pass CLI agent-route, MCP stdio, and MCPagent_routeagainst a temporary project with read-less, selection-rank, and continuation evidence.Local evidence scripts/adoption-evidence.sh /path/to/repo --output-dir /tmp/codeinsight-adoption-evidence --print-snippet --issue-templateYou want one folder with local first-read evidence, raw route JSON, MCP first-call JSON, aggregate Markdown/JSON summaries, a copyable terminal snippet, and a ready-to-file issue template. External Beta trial scripts/external-beta-trial.sh /path/to/repo --output-dir /tmp/codeinsight-external-beta-trialYou want a non-maintainer trial pack with an issue body, redaction checklist, maintainer triage note, and the underlying adoption evidence artifacts. External Beta cohort scripts/external-beta-cohort-summary.sh /tmp/beta-1 /tmp/beta-2 /tmp/beta-3 --checkYou want to aggregate at least three External Beta reports, count outcomes, and pick the next fix priority. Adoption comparison scripts/adoption-comparison.sh /path/to/repo --output-dir /tmp/codeinsight-adoption-comparisonYou want a shareable blind-read vs routed-first-read comparison showing source lines avoided, read-less ratio, seed strategy, optional explicit --file/--symbolseeds, first reading focus/question, selection rank, and continuation next action.Backend evidence bridge scripts/codebase-memory-backend-evidence-smoke.shYou want proof that exported codebase-memory search_graph,search_code, andget_architectureJSON can becomeagent_route --backend-evidenceand appear in route quality.Backend agreement report scripts/codebase-memory-bridge-report.sh --backend-evidence /tmp/codeinsight-backend-evidence.json --agent-route-json /tmp/codeinsight-agent-route.json --output-dir /tmp/codeinsight-codebase-memory-bridgeYou want a shareable backend/local agreement summary after running agent_routewith advisory codebase-memory evidence.Backend cohort summary scripts/codebase-memory-bridge-cohort-summary.sh /tmp/bridge-task-1 /tmp/bridge-task-2 --checkYou want aggregate first-file agreement and conflict evidence across multiple backend/local bridge reports. Backend cohort report scripts/codebase-memory-bridge-cohort-report.sh --manifest /tmp/bridge.tsv --output-dir /tmp/bridge-cohort --min-reports 3 --checkYou have multiple backend_evidenceand rawagent-routeJSON pairs and want reports plus the cohort summary in one command.Handoff report scripts/adoption-report.sh /path/to/repo --output-dir /tmp/codeinsight-adoption-report --print-snippetYou want a tar.gz report containing the evidence summaries, issue template, raw JSON, and diagnostic logs for upload or handoff.
Run the user-facing two-minute demo against this repository:
scripts/two-minute-demo.shRun it against another repository:
CODEINSIGHT_DEMO_ROOT=/path/to/repo scripts/two-minute-demo.shSave the raw agent_route JSON for issue reports, recordings, benchmark
evidence, or client integration debugging:
CODEINSIGHT_DEMO_SAVE_JSON=/tmp/codeinsight-agent-route.json scripts/two-minute-demo.shGenerate a copyable Markdown evidence summary for your own repository:
scripts/adoption-evidence.sh /path/to/repo \
--output-dir /tmp/codeinsight-adoption-evidence \
--print-snippet \
--issue-templatePackage the same evidence into a handoff archive:
scripts/adoption-report.sh /path/to/repo \
--output-dir /tmp/codeinsight-adoption-report \
--print-snippetGenerate only the local first-read evidence files:
scripts/local-repo-evidence.sh /path/to/repo \
--output /tmp/codeinsight-local-evidence.md \
--json /tmp/codeinsight-agent-route.json \
--summary-json /tmp/codeinsight-local-evidence.jsonWhen comparing CodeInsight with a stronger local code graph, keep CodeInsight in the agent workflow layer. Convert exported codebase-memory responses into CodeInsight evidence:
scripts/codebase-memory-backend-evidence.sh \
--root /path/to/repo \
--search-graph-json /tmp/search-graph.json \
--search-code-json /tmp/search-code.json \
--architecture-json /tmp/architecture.json \
--output /tmp/codeinsight-backend-evidence.jsonThen pass that advisory evidence to the CLI:
codeinsight agent-route /path/to/repo \
--task "understand app entrypoint flow" \
--backend-evidence /tmp/codeinsight-backend-evidence.jsonFor a shareable agreement artifact, save the raw agent-route JSON and run:
scripts/codebase-memory-bridge-report.sh \
--backend-evidence /tmp/codeinsight-backend-evidence.json \
--agent-route-json /tmp/codeinsight-agent-route.json \
--output-dir /tmp/codeinsight-codebase-memory-bridgeAggregate multiple bridge reports into one cohort summary:
scripts/codebase-memory-bridge-cohort-summary.sh \
/tmp/codeinsight-codebase-memory-bridge/task-1 \
/tmp/codeinsight-codebase-memory-bridge/task-2 \
--min-reports 2 \
--checkOr generate all per-task reports and the aggregate summary from a TSV manifest:
scripts/codebase-memory-bridge-cohort-report.sh \
--manifest /tmp/codeinsight-codebase-memory-bridge.tsv \
--output-dir /tmp/codeinsight-codebase-memory-bridge-cohort \
--min-reports 3 \
--checkManifest rows use:
slug<TAB>task<TAB>backend_evidence_json<TAB>agent_route_json
See the checked-in codebase-memory bridge cohort example for a 3-task maintainer run where codebase-memory supplied candidate files and CodeInsight matched the backend top file in all reports while preserving advisory route-quality checks.
The same object can be passed as MCP backend_evidence. See
Backend adapter strategy for the evidence
shape and conflict-handling rule.
For a large repository or a known subsystem, scope the local index before collecting evidence:
# /path/to/repo/.codeinsight/config.toml
[index]
include = ["packages/api/**", "src/**"]
exclude = ["**/*.generated.ts", "fixtures/**"]Then confirm the scope and run evidence collection with explicit seeds:
codeinsight config-status /path/to/repo
scripts/local-repo-evidence.sh /path/to/repo \
--file packages/api/src/main.ts \
--symbol main \
--output /tmp/codeinsight-local-evidence.md \
--json /tmp/codeinsight-agent-route.json \
--summary-json /tmp/codeinsight-local-evidence.jsonThe evidence Markdown and summary JSON include index_scope_enabled,
index_scope_includes, index_scope_excludes, and index_scope_roots, so
reviewers can see the exact indexing scope behind the route-quality numbers.
Generate a blind-read vs routed-first-read comparison for adoption notes:
scripts/adoption-comparison.sh /path/to/repo \
--output-dir /tmp/codeinsight-adoption-comparisonIt writes adoption-comparison.md, summary.json, the local evidence summary,
and the raw agent_route JSON. Use it when you need to show how many source
lines CodeInsight avoided before the agent starts opening files.
The demo executes the same product path an MCP client should follow:
agent_route, which runs index_project -> project_overview -> context_pack -> impact_analysis in one first-read route. It prints index timing, entrypoint and
recommendation counts, selected context size, reading-plan steps,
reading-plan questions, reading-plan reasons, candidate selection rank,
selection evidence, line-reduction percentage, execution-plan actions, the first
executable suggested tool, continuation status, continuation next action,
omitted-candidate follow-up status, impact-analysis summary, and a short talk
track for recordings or project introductions. The important demo signal is not
just which file was selected, but what question it should answer, why the agent
should read it first, when a local tool is safe to offer, whether more context
is available after the selected pack, and what impact check should happen before
edits.
For a recording or project introduction, use the public demo one-pager, two-minute demo script, and the checked-in demo output snapshot.
The checked-in benchmark reports exercise real public repositories and measure
how much source text context_pack keeps under a 6000-token budget, plus the
entrypoint and recommended-tool routing decisions from project_overview:
- Smoke benchmark: p-limit, itsdangerous, Go example, and memchr.
- Large repository benchmark: express, Flask, Gin, and Tokio.
- Adoption cases: public repository blind-read vs routed-first-read comparison summary across JavaScript, Go, Rust, Python, and multi-language library repositories, including a heavyweight Django routing case.
- CodeInsight self adoption report: a complete report bundle snapshot with issue template, manifest, raw MCP first-call JSON, and diagnostic logs.
- Benchmark methodology: what the reports prove, refresh commands, profile knobs, and guardrails.
These are first-read routing reports, not controlled performance claims. They verify that CodeInsight can index real repositories and return bounded context packs without external services. Treat the reduction numbers as evidence of agent workflow focus and token discipline, not as runtime performance, parser accuracy, or proof that unselected code is irrelevant.
Current benchmark snapshot:
- The two-minute demo for this repository shows the agent route selecting 533 of 80,206 source lines, avoiding 79,673 source lines before broad reading for a 99.3% reduction and 150.5x read-less ratio, then surfacing candidate rank 1, reporting high route quality from 22 evidence signals, mirroring
current_reading_steptoreading_plan[0], carrying read-less instruction evidence inexecution_plan[0], gatingfile_outlinebehind the selected-context read, and reporting continuation status before the impact check. - Smoke repositories route
context_packfirst for 4/4 repositories and select 709 of 75,753 source lines, a 99.1% aggregate line reduction. - Large repositories route
context_packfirst for 4/4 repositories and select 1,781 of 241,724 source lines, a 99.3% aggregate line reduction. - The adoption case summary covers 7 public repositories and routes a first read to 2,916 of 682,538 source lines, avoiding 679,622 lines before broad file reading, a 99.6% aggregate reduction and 234.1x aggregate read-less ratio.
- The CodeInsight self adoption report packages a full tar.gz handoff and
routes the entrypoint task to 540 of 78,072 source lines, avoiding 77,532
source lines before broad reading for a 99.3% reduction and 144.6x read-less
ratio, with 7 type-relation edges surfaced through the
base_typegraph filter, reporting high route quality from 7 evidence signals, while the MCP first-call contract fields all pass, including thecurrent_reading_stepmirror and read-less instruction evidence. - The public route-quality snapshot pins Express, FastAPI, Flask, Gin, Requests, Streamlit, and Wouter and passes 92/92 expected first-file checks, selecting 41,664 of 7,142,226 task source lines, a 99.41% aggregate first-read line reduction, and records the first suggested tool for each route.
- An optional heavyweight Django route-quality case is available with
scripts/public-task-routing-matrix.sh --case django; the pinned manual probe covers URL resolver routing, request/response lifecycle, and middleware execution, passes 3/3 expected first-file checks, and shows a 99.87% aggregate first-read line reduction in the latest local verification. - Per-repository adoption metrics, commits, and refresh commands live in Adoption cases.
- Generated reports include a
Key Resultssection with routing, compression, token-budget, indexing, guardrail, and truncation evidence. - Per-repository details include a
Context reading plantable with candidate rank, the local reading question, first-read reason, and raw selection reason, so the benchmark shows why the context router chose each file instead of only reporting compression numbers. - The MCP stdio smoke executes
agent_route.execution_plan[].suggested_toolthroughtools/call, proving the follow-up is usable by clients instead of only display metadata. - The impact execution step mirrors
impact_analysis.suggested_checksand exposes animpact_analysissuggested tool so clients can render a pre-edit checklist without digging through nested fields. - The MCP first-call smoke also verifies the empty-repository path returns
blocked_no_seedwithprovide_seed_file_or_symbol, so clients can ask for a seed instead of falling back to blind reads.
Adoption evidence snippet for your own repository:
scripts/adoption-evidence.sh /path/to/repo \
--output-dir /tmp/codeinsight-adoption-evidence \
--print-snippet \
--issue-templateSuccessful output produces /tmp/codeinsight-adoption-evidence/adoption-evidence.md
and /tmp/codeinsight-adoption-evidence/issue-template.md, then prints this copyable shape:
# CodeInsight Adoption Evidence
- Status: `pass`
- Route: `index_project -> project_overview -> context_pack -> impact_analysis`
- Selected context: `<selected>/<total>` source lines, `<reduction>` reduction
- Seed strategy: `<seed_strategy>`
- Selected seeds: `<count>`
- First seed source: `<source>`
- Companion entrypoint: `<file-or-dash>`
- First selected file: `<file>`
- First reading focus: <focus>
- First reading question: <question>
- First selection rank: `<rank>`
- First selection reason: <reason>
- Continuation status: `<status>`
- Continuation next action: `<next_action>`
- First omitted candidate: `<file-or-none>`
- MCP server: `codeinsight`
- MCP route quality: `<level>` (`<score>/100`, `<evidence>` evidence signals), next=`<action>`
- MCP first-call contract: reading_order=`true`, current_reading_step=`true`, suggested_tool_handoff=`true`, continuation_after_selected_context=`true`
- First-read gating: suggested_tool_after_selected_context=`true`, continuation_after_selected_context=`true`, impact_review_before_edits=`true`
- MCP suggested tool executed: `true`
- MCP impact status: `complete`
Use issue-template.md when filing a reproducible adoption report with the
summary snippet, failure category placeholder, artifact paths, and environment
fields already filled in. Use summary.json from the same folder when CI,
README automation, or issue templates need the same result without parsing
Markdown; it includes first_read_gating for selected-context, continuation,
and impact-review ordering.
For non-maintainer feedback, use the external Beta wrapper:
scripts/external-beta-trial.sh /path/to/repo \
--task "understand the main application entrypoint" \
--output-dir /tmp/codeinsight-external-beta-trialIt writes issue-body.md, beta-summary.json, redaction-checklist.md, and
maintainer-triage.md beside the underlying adoption evidence. External users
can choose needs_triage when they are unsure whether the result is a
route_hit, route_miss, or workflow issue.
Aggregate three External Beta reports before a public handoff:
scripts/external-beta-cohort-summary.sh \
/tmp/codeinsight-external-beta-trial-1 \
/tmp/codeinsight-external-beta-trial-2 \
/tmp/codeinsight-external-beta-trial-3 \
--output /tmp/codeinsight-external-beta-cohort.md \
--json /tmp/codeinsight-external-beta-cohort.json \
--checkThe cohort summary reports status, outcome counts, needs_triage count, and
the next action priority: triage unresolved reports, fix workflow friction, fix
route misses, address over-trust wording, or publish the Beta summary.
Use scripts/adoption-report.sh when you need one uploadable archive. It writes
codeinsight-adoption-report.tar.gz with adoption-evidence.md,
issue-template.md, summary.json, raw route JSON, MCP first-call JSON, a
manifest, and diagnostic stdout/stderr logs.
Refresh the reports locally:
scripts/benchmark-smoke.sh
CODEINSIGHT_BENCH_PROFILE=large scripts/benchmark-smoke.shFor subset runs and guardrail details, see Benchmark methodology.
Run the same benchmark shape against your own repository:
CODEINSIGHT_BENCH_PROFILE=local \
CODEINSIGHT_BENCH_LOCAL_ROOT=/path/to/repo \
CODEINSIGHT_BENCH_LOCAL_CONTEXT_FILE=src/main.ts \
CODEINSIGHT_BENCH_LOCAL_TASK="understand the app entrypoint" \
CODEINSIGHT_BENCH_OUTPUT=/tmp/codeinsight-local-benchmark.md \
scripts/benchmark-smoke.shKey docs:
- Quickstart
- Adoption checklist
- Demo script
- Demo output snapshot
- Adoption cases
- Task routing matrix
- Public task routing matrix
- Public task routing matrix JSON
- codebase-memory-mcp comparison
- Backend adapter strategy
- CodeInsight self adoption report
- Django adoption case
- Express adoption case
- Gin adoption case
- ip2region adoption case
- Memchr adoption case
- Requests adoption case
- Agent prompt templates
- Client integration examples
- Current status
- Maintainer checklist
- Maintenance commands
- Install
- CLI usage
- MCP tools
- First-read workflow
- Client workflow
- Release commands
- Release readiness
- Known limitations
- Documentation index
- MVP public readiness
- Public Adoption Alpha
- External Beta trial
- Alpha feedback triage
- Alpha trial log
- Public adoption feedback template
CodeInsight is an early MVP for local-first AI-agent repository reading. It can
route a broad task through agent_route, select bounded context, return a
reading plan, hand off an executable suggested tool, and preview impact before
edits.
Latest verified release: v0.1.12.
Current public route-quality evidence passes 92/92 first-file checks and
selects 41,664 of 7,142,226 task source lines.
Next focus: use the external Beta trial wrapper and cohort summary to collect at least three non-maintainer reports, then fix the highest priority route miss or workflow friction. See Current status for the full implemented capability list.
Install the latest macOS or Linux release:
curl -fsSL https://raw.githubusercontent.com/sleticalboy/CodeInsight-mcp/main/scripts/install.sh | shFor version pinning, custom install directories, authenticated downloads, and installer smoke tests, see Install.
For the full install-to-agent path, see Quickstart.
After installing codeinsight, verify the user-side first-read route:
CODEINSIGHT_BIN="$(command -v codeinsight)" scripts/installed-quickstart-smoke.shThis smoke proves the installed binary can run version, index, overview,
context-pack, CLI agent-route, MCP stdio, and MCP agent_route against a
temporary project outside the source checkout. It also verifies the returned
agent-route execution plan, reading-plan question, reading-plan reason,
reading-plan focus, selection rank, selection reason, and continuation evidence
that agents use to read files in the right order.
For the complete adoption checklist, see Adoption checklist.
brew tap sleticalboy/tap
brew install codeinsightcargo install --path .docker pull ghcr.io/sleticalboy/codeinsight-mcp:latest
docker run --rm -v "$PWD:/workspace" ghcr.io/sleticalboy/codeinsight-mcp:latest overview /workspaceFor local image builds, platform details, and Docker smoke tests, see Install.
Run the default first-read route, or inspect each routing step manually:
codeinsight agent-route /path/to/repo --task "understand app entrypoint" --token-budget 6000
cargo run -- index /path/to/repo --force
cargo run -- overview /path/to/repo
cargo run -- context-pack /path/to/repo --task "understand app entrypoint" --token-budget 6000Start the MCP stdio server:
cargo run -- serve --transport stdioFor all commands and common workflows, see CLI usage.
Recommended MCP first-read flow:
- Call
agent_routewithroot,task, andtoken_budgetfor the default first-read path. If the task text names an indexed file path such assrc/auth.ts, CodeInsight treats it as an automatic file seed. - If
context_pack.continuation_summary.statusisblocked_no_seed, ask for a seed file or symbol and retryagent_routeinstead of broad-reading the repository. If it isblocked_invalid_seed, ask for an existing seed file under the project root or a symbol, then retry. If it isblocked_no_context, ask for a seed file or symbol that actually matches indexed source context. If it isblocked_unindexed_task_path, update the index scope or rerun indexing so the task path is indexed before retrying. - Use
agent_route.current_reading_stepas the first checklist row, then readcontext_pack.files[]inreading_plan[]order. Useagent_route.routing_decisionwhen the client needs one compact object for the first seed, first file, read-less metrics, continuation state, and impact status. - Use
reading_plan[].selection_rankandselection_reasonas the audit trail, and usecontinuation_summaryonly after selected context has been consumed. - Show
context_pack.read_lesswhen the client needs a direct source-line baseline, selected-line count, avoided-line count, reduction percentage, and read-less ratio. - Use
index_project,project_overview,context_pack, andimpact_analysisdirectly when the client needs custom routing or partial refresh control.
For the full tool list, tools/call examples, topic contracts, and accuracy
boundaries, see MCP tools. For client setup snippets, see
MCP client configuration.
scripts/local-ci-smoke.shFor focused smoke groups, benchmark checks, and optional external checks, see Maintenance commands.
The Release Build workflow supports manual artifact builds and tagged GitHub
releases. See Release runbook.
Maintainer release path:
scripts/release-dry-run.sh --repo sleticalboy/CodeInsight-mcp --evidence-file release-evidence/vX.Y.Z.md --evidence-json-file release-evidence/vX.Y.Z.json vX.Y.Z main
scripts/prepare-release.sh --dry-run vX.Y.Z
scripts/prepare-release.sh vX.Y.Z
git push origin main
scripts/release-pretag-check.sh main
scripts/archive-release-evidence.sh --repo sleticalboy/CodeInsight-mcp --json-output release-evidence/vX.Y.Z.json vX.Y.Z main
scripts/release-tag-preflight.sh --repo sleticalboy/CodeInsight-mcp vX.Y.Z main
git tag -a vX.Y.Z -m "vX.Y.Z"
git push origin vX.Y.Z
scripts/post-release-verify.sh --handoff vX.Y.ZCodeInsight MCP Server is licensed under the Apache License 2.0.
The first MVP intentionally avoids external services such as Qdrant, pgvector, Neo4j, or Apache AGE. The default path must remain local, single-binary, and low configuration.