Skip to content

Release Status & Compatibility

This toolchain is in public preview. The supported first-run paths are source checkouts and the published package installs shown below. Use QuickStart for the shortest local checks. llmwiki-serve source checkouts remain supported for local development and release verification; use the package baseline below for package-manager installs. llmwiki-bridge-start@0.0.3 is the current first-run entrypoint for local discovery, source startup, optional bridge registration, and smoke checks. llmwiki-agent-bridge@0.4.0 is the current bridge package for source fan-out, runtime profile configuration, and normalized answer artifacts. Registry verification is current: PyPI reports llmwiki-serve==0.2.10, and npm reports llmwiki-bridge-start@0.0.3, llmwiki-agent-bridge@0.4.0, and llmwiki-chat@0.1.6. Compatibility-smoke and deterministic benchmark summaries are recorded in Evidence. Treat compatibility-smoke evidence as projection compatibility only. Windows and Ubuntu/DGX deterministic retrieval metrics are also summarized there with failing quality gates. They are not quality certification or vendor-runtime certification, and no public quality claim is made.

The project is independent community tooling for LLM Wiki-style Markdown knowledge folders and agent-readable context. It is not an official project from Andrej Karpathy or any upstream producer named in compatibility examples.

Availability

ChannelStatusUse it when
Source checkoutsSupported development pathYou want bundled fixtures, source-level development scripts, screenshot refreshes, or release verification.
GitHub Pages docsLive at https://knowledge-bridge-labs.github.io/llmwiki-docs/You want the rendered docs site for quickstart, architecture, protocol, and release-status references.
PyPI/npm packagesPublishedUse package-manager installs for llmwiki-serve==0.2.10, llmwiki-bridge-start@0.0.3, llmwiki-agent-bridge@0.4.0, and llmwiki-chat@0.1.6.

Package Roles

NeedStart withAdd later
Serve and query one existing knowledge graph.llmwiki-serveNothing else is required when your agent or script can synthesize answers directly.
Discover local wiki folders and get a guided handoff after source checks pass.llmwiki-bridge-startAdd the bridge when you want one endpoint across sources or runtime-backed answers.
Return one cited artifact through a companion endpoint.llmwiki-agent-bridge after the source worksAdd a runtime profile only after evidence-only bridge smoke passes.
Inspect source readiness, citations, graph context, and run traces in a browser.llmwiki-chat after the source worksAdd a bridge when the browser should test the real bridge path instead of the local development runtime.

Repository Status

RepositoryPackage metadataRegistry statusSupported path todayRuntime baselinePrimary gate
llmwiki-servePython package 0.2.10, Apache-2.0, CLI entrypointPyPI latest 0.2.10Package install or source checkout with uv sync --extra devPython 3.11+uv run python scripts/release_smoke.py
llmwiki-bridge-startnpm package 0.0.3, Apache-2.0, CLI entrypointnpm published 0.0.3Package install for first-run onboarding or source checkout with npm ciNode.js 22.12+npm exec --package llmwiki-bridge-start@0.0.3 -- llmwiki-bridge-start --help or repository npm run check
llmwiki-agent-bridgenpm package 0.4.0, Apache-2.0, CLI entrypointnpm published 0.4.0Package install or source checkout with npm ciNode.js 22.12+npm run check
llmwiki-chatnpm package 0.1.6, Apache-2.0, static Vite browser workbench artifact, no CLI binnpm published 0.1.6Package dist/ static hosting or source checkout for UI developmentNode.js 22.12+package install-smoke for dist/, or repository npm run check
llmwiki-docsVitePress docs portal, Apache-2.0GitHub Pages liveSource checkout with npm ciNode.js 22.12+npm run check

The primary gate column is a status-oriented smoke signal. Each repository also keeps its own README, changelog, package metadata, license files, and CI gates.

Since release 0.2.5, local ls/status discovery combines the per-user registry written by serve with local OS process command-line discovery for llmwiki-serve serve processes, then probes discovered local endpoints unless probing is disabled. It does not use default fixed-port heuristic probing. Use --no-processes for registry-only output, --processes to keep process discovery explicit, and --probe-port <port> only for a manual loopback diagnostic. JSON output can include discovery_source and root_source.

The llmwiki-serve==0.2.10, llmwiki-bridge-start@0.0.3, llmwiki-agent-bridge@0.4.0, and llmwiki-chat@0.1.6 packages are published and registry-verified for this public-preview baseline. Source checkouts remain supported for development and release verification.

Optional llmwiki-serve SQLite GraphStore

llmwiki-serve==0.2.10 includes optional SQLite GraphStore support:

  • The base llmwiki-serve install contains the SQLite GraphStore code; no [sqlite] or [graph] extra is needed.
  • GraphStore remains disabled by default. Ordinary package installs continue to use the in-memory derived graph projection unless explicitly configured.
  • Operators enable SQLite with --graph-store sqlite --graph-store-path <outside-root.sqlite> or the LLMWIKI_GRAPH_STORE=sqlite and LLMWIKI_GRAPH_STORE_PATH=<outside-root.sqlite> environment variables.
  • The SQLite file should live outside the served source root and generated public assets. It is a disposable derived cache, but it can contain sensitive graph nodes, edges, labels, paths, and metadata from the source.
  • Startup should fail for invalid GraphStore configuration, such as selecting sqlite without a usable path. Runtime cache failures use the configured failure policy: default fallback recomputes from the current source projection, while fail-fast reports a GraphStore failure.

Publication caveat

Version 0.0.1 of llmwiki-bridge-start was the manually published first release. The current package baseline is llmwiki-bridge-start@0.0.3; do not treat the 0.0.1 publication as Trusted Publisher/OIDC validation evidence.

Protocol Surfaces

SurfaceOwnerStatusCompatibility claimValidation gate
HTTP Knowledge Sourcellmwiki-servePublic-preview contractLocal HTTP endpoints for health discovery, manifest, context query, search, read, graph projection, and graph neighborhoods.llmwiki-serve release smoke and llmwiki-chat npm run test:e2e:live smoke.
MCP JSON-RPC compatibilityllmwiki-serveCompatibility surfaceLegacy JSON-RPC tool calls for local integration testing, including llmwiki_graph_neighbors.llmwiki-serve MCP smoke coverage.
MCP Streamable HTTPllmwiki-serveSDK-backed source surface where implementedOfficial MCP SDK-backed tool calls for source retrieval.llmwiki-serve MCP SDK smoke coverage.
A2A source compatibilityllmwiki-serveOpt-in compatibility surfaceAgent-card discovery and message:send for A2A-native source discovery.A2A source smoke coverage when enabled.
Bridge runtime endpointsllmwiki-agent-bridgePublic-preview contractA2A and MCP bridge endpoints that gather source evidence, expose read-only source exploration tools, return a grounded answer artifact when llmwiki_agent_run or message:send is used, and expose redacted source registry views through GET /sources.npm run check in llmwiki-agent-bridge.
Browser workbenchllmwiki-chatPublic-preview UISource selection, graph inspection, bridge selection, trace display, citations, and answer review.llmwiki-chat lint, typecheck, unit, E2E, build, and pack gates.

Runtime Adapter Status

Runtime pathStatusWhat worksWhat is not claimedValidation gate
Agent Bridge A2APublic-preview pathConnects chat or clients to a bridge agent card and message:send endpoint.Certified A2A conformance or hosted runtime operation.Bridge and chat A2A smoke tests.
Agent Bridge MCPPublic-preview pathConnects chat or MCP clients to llmwiki_agent_run for full bridge answers, or to read-only source tools for progressive exploration of registered or inline Knowledge Sources.Certified MCP conformance or hosted runtime operation.Bridge and chat MCP smoke tests.
Local Development RuntimeSupported for developmentDeterministic UI flow, tool-call trace, citation rendering, and graph continuity.Production answer quality.npm run test and npm run test:e2e in llmwiki-chat.
Hermes profileSupported bridge profileUses the bridge runtime profile for Hermes-compatible gateways.Product-certified Hermes integration.Bridge profile tests plus operator smoke against a real Hermes-compatible gateway.
DeepAgents profileSupported bridge profileUses the bridge runtime profile for DeepAgents-compatible gateways.Product-certified DeepAgents integration.Bridge profile tests plus operator smoke against a real DeepAgents runtime.
Generic OpenAI-compatible profileSupported bridge profileCalls /v1/chat/completions with source evidence and normalizes an answer artifact.Any provider-specific model quality or hosted runtime SLA.npm run check in llmwiki-agent-bridge.
Copilot or IDE agentsDirect-client candidateCan use direct HTTP, MCP-style, or skill/command integrations when the agent environment supports them.Built-in Copilot adapter or product validation.Integration-specific manual smoke.

Validation evidence should be read from the current repository checks rather than from a single historical commit. For a local preview, run the primary gate listed in the repository matrix and any live source, bridge, or chat smoke that matches the path you plan to use.

Agent-Guided Lexical Guidance

Status: public-preview implementation path for llmwiki-serve context responses and bridge forwarding. Engineering validation should cover Serve snake_case guidance from HTTP POST /query and MCP llmwiki_context, bridge camelCase mapping, exact llmwiki_agent_guided_lexical_v1 capability gating for retrieval.search.queryVariants forwarding, old-source fallback behavior, max-two query variants, and the no-model, no-download, no-write source boundary.

This is not release evidence for a dirty working-tree snapshot and not a public benchmark superiority claim. Benchmark and compatibility evidence remains separate on Evidence, where current deterministic retrieval rows do not claim a public quality pass.

Non-Claims

  • Not certified MCP conformance.
  • Not certified A2A conformance.
  • Not product-certified Hermes, DeepAgents, Copilot, or IDE integration.
  • Not a hosted production runtime.
  • Not a vector database, crawler, ingestion pipeline, or full-stack RAG app.
  • Not a promise that private wiki content is safe to expose without operator review, network controls, authentication, and logging policy.

Status Update Rule

Before publishing a package version, update this page with the actual registry state, package versions, supported runtime paths, protocol caveats, and validation commands used for that release.

Public-preview documentation for Knowledge Bridge Labs wiki Knowledge Source components.