Skip to content

sleticalboy/CodeInsight-mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

908 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeInsight MCP Server

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[].focus as the compact scan label for each selected file
  • reading_plan[].question as the local checklist for the current file
  • reading_plan[].reason instructions that explain what to read first and why
  • context_pack.read_less metrics that show first-read source-line reduction
  • execution_plan[] actions that keep focused follow-up tools behind the selected-context read
  • an executable suggested_tool such as file_outline for deeper local evidence when needed
  • an impact_analysis preview 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 --check

For a deterministic no-network check of the same snapshot machinery:

scripts/update-public-task-routing-matrix-smoke.sh

Best-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.

Fast Path

  1. Install the binary:

    curl -fsSL https://raw.githubusercontent.com/sleticalboy/CodeInsight-mcp/main/scripts/install.sh | sh
  2. 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.

  3. 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/call payload is shown in First Agent Route Call.

  4. Pick the validation that matches your adoption stage:

    Stage Command Use When
    First look scripts/two-minute-demo.sh You want a visible agent_route -> context_pack -> impact_analysis walkthrough with an [Evidence summary].
    Framework entrypoints scripts/framework-entrypoint-demo.sh You 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.tsv You want a multi-task first-read matrix showing first selected file, seed strategy, line reduction, token estimate, impact preview, optional explicit --file / --symbol seeds, and optional expected-file gates for one repository.
    Public route matrix scripts/public-task-routing-matrix.sh You want one aggregate route-quality summary across pinned checked-in Express, FastAPI, Flask, Gin, Requests, Streamlit, and Wouter expectation files. Add --case django for 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.sh You want a compact JSON proof that stdio MCP accepts agent_route, returns the first context file, follows reading_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.sh You want the installed binary to pass CLI agent-route, MCP stdio, and MCP agent_route against 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-template You 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-trial You 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 --check You 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-comparison You want a shareable blind-read vs routed-first-read comparison showing source lines avoided, read-less ratio, seed strategy, optional explicit --file / --symbol seeds, first reading focus/question, selection rank, and continuation next action.
    Backend evidence bridge scripts/codebase-memory-backend-evidence-smoke.sh You want proof that exported codebase-memory search_graph, search_code, and get_architecture JSON can become agent_route --backend-evidence and 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-bridge You want a shareable backend/local agreement summary after running agent_route with advisory codebase-memory evidence.
    Backend cohort summary scripts/codebase-memory-bridge-cohort-summary.sh /tmp/bridge-task-1 /tmp/bridge-task-2 --check You 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 --check You have multiple backend_evidence and raw agent-route JSON 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-snippet You want a tar.gz report containing the evidence summaries, issue template, raw JSON, and diagnostic logs for upload or handoff.

Two-Minute Demo

Run the user-facing two-minute demo against this repository:

scripts/two-minute-demo.sh

Run it against another repository:

CODEINSIGHT_DEMO_ROOT=/path/to/repo scripts/two-minute-demo.sh

Save 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.sh

Generate 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-template

Package the same evidence into a handoff archive:

scripts/adoption-report.sh /path/to/repo \
  --output-dir /tmp/codeinsight-adoption-report \
  --print-snippet

Generate 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.json

When 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.json

Then pass that advisory evidence to the CLI:

codeinsight agent-route /path/to/repo \
  --task "understand app entrypoint flow" \
  --backend-evidence /tmp/codeinsight-backend-evidence.json

For 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-bridge

Aggregate 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 \
  --check

Or 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 \
  --check

Manifest 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.json

The 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-comparison

It 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.

Current Evidence

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_step to reading_plan[0], carrying read-less instruction evidence in execution_plan[0], gating file_outline behind the selected-context read, and reporting continuation status before the impact check.
  • Smoke repositories route context_pack first for 4/4 repositories and select 709 of 75,753 source lines, a 99.1% aggregate line reduction.
  • Large repositories route context_pack first 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_type graph filter, reporting high route quality from 7 evidence signals, while the MCP first-call contract fields all pass, including the current_reading_step mirror 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 Results section with routing, compression, token-budget, indexing, guardrail, and truncation evidence.
  • Per-repository details include a Context reading plan table 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_tool through tools/call, proving the follow-up is usable by clients instead of only display metadata.
  • The impact execution step mirrors impact_analysis.suggested_checks and exposes an impact_analysis suggested 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_seed with provide_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-template

Successful 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-trial

It 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 \
  --check

The 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.sh

For 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.sh

Key docs:

Current Status

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 From Release

Install the latest macOS or Linux release:

curl -fsSL https://raw.githubusercontent.com/sleticalboy/CodeInsight-mcp/main/scripts/install.sh | sh

For version pinning, custom install directories, authenticated downloads, and installer smoke tests, see Install.

For the full install-to-agent path, see Quickstart.

Verify Adoption

After installing codeinsight, verify the user-side first-read route:

CODEINSIGHT_BIN="$(command -v codeinsight)" scripts/installed-quickstart-smoke.sh

This 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.

Install With Homebrew

brew tap sleticalboy/tap
brew install codeinsight

Install From Source

cargo install --path .

Run With Docker

docker pull ghcr.io/sleticalboy/codeinsight-mcp:latest
docker run --rm -v "$PWD:/workspace" ghcr.io/sleticalboy/codeinsight-mcp:latest overview /workspace

For local image builds, platform details, and Docker smoke tests, see Install.

CLI Usage

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 6000

Start the MCP stdio server:

cargo run -- serve --transport stdio

For all commands and common workflows, see CLI usage.

MCP Tools

Recommended MCP first-read flow:

  1. Call agent_route with root, task, and token_budget for the default first-read path. If the task text names an indexed file path such as src/auth.ts, CodeInsight treats it as an automatic file seed.
  2. If context_pack.continuation_summary.status is blocked_no_seed, ask for a seed file or symbol and retry agent_route instead of broad-reading the repository. If it is blocked_invalid_seed, ask for an existing seed file under the project root or a symbol, then retry. If it is blocked_no_context, ask for a seed file or symbol that actually matches indexed source context. If it is blocked_unindexed_task_path, update the index scope or rerun indexing so the task path is indexed before retrying.
  3. Use agent_route.current_reading_step as the first checklist row, then read context_pack.files[] in reading_plan[] order. Use agent_route.routing_decision when the client needs one compact object for the first seed, first file, read-less metrics, continuation state, and impact status.
  4. Use reading_plan[].selection_rank and selection_reason as the audit trail, and use continuation_summary only after selected context has been consumed.
  5. Show context_pack.read_less when the client needs a direct source-line baseline, selected-line count, avoided-line count, reduction percentage, and read-less ratio.
  6. Use index_project, project_overview, context_pack, and impact_analysis directly 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.

Development

scripts/local-ci-smoke.sh

For focused smoke groups, benchmark checks, and optional external checks, see Maintenance commands.

Release Builds

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.Z

License

CodeInsight 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages