Sandbox
@Pratiyush/llm-wiki

Session history wiki for Claude Code and other agents

llmwiki collects transcripts from supported agent and editor sessions, converts them into markdown, and builds a linked wiki plus a static site. It also produces search, graph, and export files so you can browse the knowledge base yourself or let another agent query it.

387 starsβ€’53 forksβ€’Pythonβ€’Updated 3mo ago
Who it's for

Builders who want to turn Claude Code, Codex CLI, Cursor, Gemini CLI, Copilot, or Obsidian sessions into a reusable knowledge base.

What it delivers

You can keep past agent work searchable and connected instead of digging through raw session logs.

What it does

Multi-source session ingest

Reads session logs from Claude Code, Codex CLI, Cursor, Gemini CLI, Copilot, and Obsidian.

Karpathy-style wiki build

Creates linked wiki sections like sources, entities, concepts, syntheses, comparisons, and questions.

Static site and exports

Builds a browsable site plus sibling `.txt` and `.json` pages, `llms.txt`, `llms-full.txt`, and `graph.jsonld`.

MCP server

Exposes query, search, lint, sync, export, and dashboard tools through MCP.

Obsidian integration

Can write into an Obsidian vault and ships templates and Dataview dashboard queries.

Automation hooks

Includes a SessionStart hook to auto-sync new Claude Code sessions in the background.

How to get it

  1. 1Run
    git clone https://github.com/Pratiyush/llm-wiki.git
    cd llm-wiki
    ./setup.sh
  2. 2Run
    git clone https://github.com/Pratiyush/llm-wiki.git
    cd llm-wiki
    setup.bat
  3. 3Run
    pip install -e .                # basic β€” everything you need
    pip install -e '.[graph]'       # + graphifyy AI-powered graph engine
    pip install -e '.[dev]'         # + pytest + ruff
    pip install -e '.[e2e]'         # + Playwright + pytest-bdd + pytest-html (E2E)
    pip install -e '.[all]'         # graph + everything

README

llmwiki

LLM-powered knowledge base from your Claude Code, Codex CLI, Cursor, Gemini CLI, and Obsidian sessions. Built on Andrej Karpathy's LLM Wiki pattern.

πŸ‘‰ Live demo: pratiyush.github.io/llm-wiki

Rebuilt on every master push from the synthetic sessions in examples/demo-sessions/. No personal data. Shows every feature of the real tool (activity heatmap, tool charts, token usage, model info cards, vs-comparisons, project topics) running against safe reference data.

License: MIT Python 3.9+ Version Tests CI Link check Wiki checks Docker Works with Claude Code Works with Codex CLI Works with Copilot Works with Cursor Works with Gemini CLI Works with Obsidian


Every Claude Code, Codex CLI, Copilot, Cursor, and Gemini CLI session writes a full transcript to disk. You already have hundreds of them and never look at them again.

llmwiki turns that dormant history into a beautiful, searchable, interlinked knowledge base β€” locally, in two commands. Plus, it produces AI-consumable exports (llms.txt, llms-full.txt, JSON-LD graph, per-page .txt + .json siblings) so other AI agents can query your wiki directly.

./setup.sh                         # one-time install
./build.sh && ./serve.sh           # build + serve at http://127.0.0.1:8765

Want LLM-enriched wiki pages from the CLI? After ./setup.sh, llmwiki sync only fills raw/. To populate wiki/sources/ (semantic summaries), set synthesis.backend in examples/sessions_config.json (ollama for local Ollama, or keep dummy for stubs), then run llmwiki synthesize or chain it with llmwiki all --with-synth. See docs/modes/api/ and llmwiki sync --status for the current backend hint.

llmwiki sync
llmwiki all --with-synth --graph-engine builtin   # synthesize β†’ build β†’ graph β†’ export β†’ lint

llmwiki β€” 70-second demo

Contributing in one line: read CONTRIBUTING.md, keep PRs focused (one concern each), use feat: / fix: / docs: / chore: / test: commit prefixes, never commit real session data (raw/ is gitignored), no new runtime deps. CI must be green to merge.

Screenshots

All screenshots below are from the public demo site which is built on every master push from the dummy example sessions. Your own wiki will look identical β€” just with your real work.

Home β€” projects overview with activity heatmap

llmwiki home page β€” LLM Wiki header, activity heatmap, and a grid of three demo projects (demo-blog-engine, demo-ml-pipeline, demo-todo-api)

All sessions β€” filterable table across every project

llmwiki sessions index β€” activity timeline above a table of eight demo sessions with project, model, date, message count, and tool-call columns

Session detail β€” full conversation + tool calls

llmwiki session detail β€” Rust blog engine scaffolding session showing summary, breadcrumbs, a TOML Cargo.toml block and a Rust main.rs block, both highlighted by highlight.js

Changelog β€” renders CHANGELOG.md as a first-class page

llmwiki changelog page β€” keep-a-changelog format with colored headings for Added / Fixed / Changed and auto-linked PR references

Projects index β€” freshness badges + per-project stats

llmwiki projects index β€” three demo project cards with green/yellow/red freshness badges showing how recently each project was touched

What you get

Human-readable

  • All your sessions, converted from .jsonl to clean, redacted markdown
  • A Karpathy-style wiki β€” sources/, entities/, concepts/, syntheses/, comparisons/, questions/ linked with [[wikilinks]]
  • A beautiful static site you can browse locally or deploy to GitHub Pages
    • Global search (Cmd+K command palette with fuzzy match over pre-built index)
    • highlight.js client-side syntax highlighting (light + dark themes)
    • Dark mode (system-aware + manual toggle with data-theme)
    • Keyboard shortcuts: / search Β· g h/p/s nav Β· j/k rows Β· ? help
    • Collapsible tool-result sections (auto-expand > 500 chars)
    • Copy-as-markdown + copy-code buttons
    • Breadcrumbs + reading progress bar
    • Filter bar on sessions table (project/model/date/text)
    • Reading time estimates (X min read)
    • Related pages panel at the bottom of every session
    • Activity heatmap on the home page
    • Model info cards with structured schema (provider, pricing, benchmarks)
    • Auto-generated vs-comparison pages between AI models
    • Append-only changelog timeline with pricing sparkline
    • Project topic chips (GitHub-style tags on project cards)
    • Agent labels (colored badges: Claude/Codex/Copilot/Cursor/Gemini)
    • Recently-updated card on the home page
    • Dataview-style structured queries in the command palette
    • Hover-to-preview wikilinks
    • Deep-link icons next to every heading
    • Mobile-responsive + print-friendly

AI-consumable (v0.4)

Every HTML page has sibling machine-readable files at the same URL:

  • <page>.html β€” human HTML with schema.org microdata
  • <page>.txt β€” plain text version (no HTML tags)
  • <page>.json β€” structured metadata + body

Site-level AI-agent entry points:

FileWhat
/llms.txtShort index per llmstxt.org spec
/llms-full.txtFlattened plain-text dump (~5 MB cap) β€” paste into any LLM's context
/graph.jsonldSchema.org JSON-LD entity/concept/source graph
/sitemap.xmlStandard sitemap with lastmod
/rss.xmlRSS 2.0 feed of newest sessions
/robots.txtAI-friendly robots with llms.txt reference
/ai-readme.mdAI-specific navigation instructions
/manifest.jsonBuild manifest with SHA-256 hashes + perf budget

Every page also includes an <!-- llmwiki:metadata --> HTML comment that AI agents can parse without fetching the separate .json sibling.

Recipe β€” query graph.jsonld from your terminal

The JSON-LD graph isn't just for crawlers β€” you can ask quick questions about your wiki without leaving the shell. Example: print every session as a tree, grouped by project:

python3 examples/scripts/tree_from_graph.py

Output:

πŸ“š 8 sessions across 3 projects
   (site/graph.jsonld v1.3.0)

llmwiki/
β”œβ”€β”€ demo-blog-engine/  (4 sessions)
β”‚   β”œβ”€β”€ 2026-03-12  scaffolding-the-rust-blog-engine
β”‚   β”œβ”€β”€ 2026-03-18  adding-syntax-highlighting
β”‚   β”œβ”€β”€ 2026-03-25  rss-feed-and-sitemap
β”‚   └── 2026-04-01  dark-mode-toggle
β”œβ”€β”€ demo-ml-pipeline/  (2 sessions)
β”‚   β”œβ”€β”€ 2026-01-20  training-data-pipeline
β”‚   └── 2026-02-02  model-training-loop
└── demo-todo-api/  (2 sessions)
    β”œβ”€β”€ 2026-02-08  fastapi-project-bootstrap
    └── 2026-02-15  adding-oauth-login

The full script is stdlib-only at examples/scripts/tree_from_graph.py. Same recipe pattern works for any aggregation question β€” count sessions per model, find the largest project by token usage, list every entity that appears in 3+ sessions, etc. The graph is yours to slice.

Quality & governance (v1.0)

  • 4-factor confidence scoring β€” source count, source quality, recency, cross-references; with Ebbinghaus-inspired decay per content-type
  • 5-state lifecycle machine β€” draft β†’ reviewed β†’ verified β†’ stale β†’ archived with 90-day auto-stale
  • 16 lint rules β€” 8 structural (frontmatter, link integrity, orphans, freshness, duplicates, index sync…) + 3 LLM-powered (contradictions, claim verification, summary accuracy) + stale_candidates (#51) + tags_topics_convention (#302) + stale_reference_detection (#303) + frontmatter_count_consistency (#378) + tools_consistency (#378)
  • Auto Dream β€” MEMORY.md consolidation after 24h + 5 sessions: resolve relative dates, prune outdated, 200-line cap
  • 9 navigation files β€” CLAUDE.md, AGENTS.md, MEMORY.md, SOUL.md, CRITICAL_FACTS.md, hints.md, hot.md + per-project hot caches

Obsidian-native experience (v1.0)

  • link-obsidian CLI β€” symlinks the whole project into an Obsidian vault; graph view + backlinks + full-text search just work
  • Dataview dashboard β€” 10 ready-to-use queries (recently updated, by confidence, by lifecycle, by project, by entity type, open questions, stale pages)
  • Templater templates β€” 4 templates for source/entity/concept/synthesis pages, seeded with confidence + lifecycle + today's date
  • Category pages β€” tag-based index pages in both Dataview (Obsidian) and static markdown (HTML) modes
  • Integration guide β€” docs/obsidian-integration.md covers 6 recommended plugins with per-plugin configs

Automation

  • SessionStart hook β€” auto-syncs new sessions in the background on every Claude Code launch
  • Auto-build on sync β€” /wiki-sync triggers /wiki-build (configurable; default on)
  • One-shot pipeline β€” llmwiki all runs build β†’ graph β†’ export β†’ lint in a single command (--strict for CI)
  • MCP server β€” 12 production tools (query, search, list, read, lint, sync, export, + confidence, lifecycle, dashboard, entity search, category browse) queryable from any MCP client (Claude Desktop, Cline, Cursor, ChatGPT desktop)
  • Pending ingest queue β€” SessionStart hook converts + queues; /wiki-sync processes queue
  • No servers, no database, no npm β€” Python stdlib + markdown. Syntax highlighting loads from a highlight.js CDN at view time.

Tutorial β€” every command in 90 seconds

A guided tour. Run these in order and you'll have a fully working wiki at http://127.0.0.1:8765/ by the end. Each command is idempotent and prints what it did.

A scripted recording of the same flow ships at docs/videos/cli-tutorial.gif (31 seconds against an 8-session sandbox). The reproducible source is docs/videos/cli-tutorial.tape β€” re-render anytime with vhs docs/videos/cli-tutorial.tape.

# 1. One-time scaffold (β‰ˆ1 sec). Creates raw/, wiki/, site/, seed nav files.
llmwiki init

# 2. Pull in your sessions (β‰ˆ1 sec / 100 sessions). Walks every adapter
#    that's "available" on this machine (Claude Code, Codex CLI, Cursor,
#    Gemini, Obsidian, Copilot Chat / CLI), converts new .jsonl files to
#    raw/sessions/*.md, then runs build + lint by default.
llmwiki sync

# 3. Compile the static HTML site (β‰ˆ3 sec on a 500-session corpus).
#    Already runs as part of `sync`; call directly when you're iterating
#    on a wiki/ page and don't need a fresh sync.
llmwiki build

# 4. Browse it locally. Cmd+K opens the search palette; / focuses the
#    filter bar on /sessions/. Press Ctrl+C to stop.
llmwiki serve

# 5. (Optional) Generate the knowledge graph + AI-consumable exports.
#    `all` runs build β†’ graph β†’ export β†’ lint in one shot.
llmwiki graph
llmwiki export all
llmwiki all     # one-shot equivalent of build + graph + export + lint

That's the entire happy path. Two more commands you'll reach for occasionally:

# Inspect what's installed + configured. Prints a per-adapter table:
# (available: yes/no, configured: yes/no, session-store path).
llmwiki adapters

# Lint the wiki. 16 rules β€” broken wikilinks, orphaned pages, stale
# summaries, duplicate detection, freshness, missing entities, etc.
# Runs as part of `sync` by default; call directly for a one-shot check.
llmwiki lint

Three optional flags you'll discover later:

  • --adapter <name> β€” limit sync to one adapter (e.g. --adapter claude_code)
  • --vault PATH β€” write into an Obsidian / Logseq vault overlay instead of wiki/ (#54)
  • --synthesize β€” call out to a local Claude / Ollama backend during build for an LLM-generated overview page

Each subcommand has its own --help with the rest. The CLI reference table below is the full list.

How it works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  ~/.claude/projects/*/*.jsonl       β”‚  ← Claude Code sessions
β”‚  ~/.codex/sessions/**/*.jsonl       β”‚  ← Codex CLI sessions
β”‚  ~/Library/.../Cursor/workspaceS…   β”‚  ← Cursor
β”‚  ~/Documents/Obsidian Vault/        β”‚  ← Obsidian
β”‚  ~/.gemini/                         β”‚  ← Gemini CLI
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
               β”‚
               β–Ό   python3 -m llmwiki sync
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  raw/sessions/<project>/            β”‚  ← immutable markdown (Karpathy layer 1)
β”‚     2026-04-08-<slug>.md            β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
               β”‚
               β–Ό   /wiki-ingest  (your coding agent)
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  wiki/sources/<slug>.md             β”‚  ← LLM-generated wiki (Karpathy layer 2)
β”‚  wiki/entities/<Name>.md            β”‚
β”‚  wiki/concepts/<Name>.md            β”‚
β”‚  wiki/syntheses/<Name>.md           β”‚
β”‚  wiki/comparisons/<Name>.md         β”‚
β”‚  wiki/questions/<Name>.md           β”‚
β”‚  wiki/index.md, overview.md, log.md β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
               β”‚
               β–Ό   python3 -m llmwiki build
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  site/                              β”‚  ← static HTML + AI exports
β”‚  β”œβ”€β”€ index.html, style.css, ...     β”‚
β”‚  β”œβ”€β”€ sessions/<project>/<slug>.html β”‚
β”‚  β”œβ”€β”€ sessions/<project>/<slug>.txt  β”‚  (AI sibling)
β”‚  β”œβ”€β”€ sessions/<project>/<slug>.json β”‚  (AI sibling)
β”‚  β”œβ”€β”€ llms.txt, llms-full.txt        β”‚
β”‚  β”œβ”€β”€ graph.jsonld                   β”‚
β”‚  β”œβ”€β”€ sitemap.xml, rss.xml           β”‚
β”‚  β”œβ”€β”€ robots.txt, ai-readme.md       β”‚
β”‚  β”œβ”€β”€ manifest.json                  β”‚
β”‚  └── search-index.json              β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

See docs/architecture.md for the full 3-layer Karpathy + 8-layer build breakdown.

Documentation

Full production documentation lives under docs/. The editorial hub is docs/index.md β€” tutorials, per-agent guides, reference, and deployment, all in one place.

Start here:

GoalRead
Install and build your first site in 10 minutesTutorial 01 β†’ 02
Use llmwiki with Claude CodeTutorial 03
Use llmwiki with Codex CLITutorial 04
Query / lint / review your wiki dailyTutorial 05
Point llmwiki at an existing Obsidian / Logseq vaultTutorial 06
See four real end-to-end workflowsTutorial 07

Contributing to docs? See the style guide.

Install

macOS / Linux

git clone https://github.com/Pratiyush/llm-wiki.git
cd llm-wiki
./setup.sh

Windows

git clone https://github.com/Pratiyush/llm-wiki.git
cd llm-wiki
setup.bat

With pip (v0.3+)

pip install -e .                # basic β€” everything you need
pip install -e '.[graph]'       # + graphifyy AI-powered graph engine
pip install -e '.[dev]'         # + pytest + ruff
pip install -e '.[e2e]'         # + Playwright + pytest-bdd + pytest-html (E2E)
pip install -e '.[all]'         # graph + everything

Syntax highlighting is now powered by highlight.js, loaded from a CDN at view time β€” no optional deps required.

What setup does

  1. Creates raw/, wiki/, site/ data directories
  2. Installs the llmwiki Python package in-place
  3. Detects your coding agents and enables matching adapters
  4. Optionally offers to install the SessionStart hook into ~/.claude/settings.json for auto-sync
  5. Runs a first sync so you see output immediately

For maintainers

Running the project? The governance scaffold lives under docs/maintainers/ and is loaded by a dedicated skill:

FileWhat it's for
CONTRIBUTING.mdShort rules for contributors β€” read this first
CODE_OF_CONDUCT.mdContributor Covenant 2.1
SECURITY.mdDisclosure process for redaction bugs, XSS, data leaks
docs/maintainers/ARCHITECTURE.mdOne-page system diagram + layer boundaries + what NOT to add
docs/maintainers/REVIEW_CHECKLIST.mdCanonical code-review criteria
docs/maintainers/RELEASE_PROCESS.mdVersion bump β†’ CHANGELOG β†’ tag β†’ build β†’ publish
docs/maintainers/TRIAGE.mdLabel taxonomy + stale-issue policy
docs/maintainers/ROADMAP.mdNear-term plan + release themes
docs/maintainers/DECLINED.mdGraveyard of declined ideas with reasons

Four Claude Code slash commands automate the common ops:

  • /review-pr <N> β€” apply the REVIEW_CHECKLIST to a PR and post findings
  • /triage-issue <N> β€” label + milestone + priority a new issue
  • /release <version> β€” walk the release process step by step
  • /maintainer β€” meta-skill that loads every governance doc as context

Running E2E tests

The unit suite (pytest tests/ β€” 2,651 tests) runs in seconds and covers every module. The end-to-end suite under tests/e2e/ is separate: it builds a minimal demo site, serves it on a random port, drives a real browser via Playwright, and runs scenarios written in Gherkin via pytest-bdd.

Why both? Unit tests lock the contract at the module boundary; E2E locks the contract at the user's browser. A diff that passes unit tests but breaks the Cmd+K palette will fail E2E.

Install the extras (one-time, several hundred MB for the Chromium binary):

pip install -e '.[e2e]'
python -m playwright install chromium

Run the suite:

pytest tests/e2e/ --browser=chromium

Run a single feature:

pytest tests/e2e/test_command_palette.py --browser=chromium -v

The E2E suite is excluded from the default pytest tests/ run (see the --ignore=tests/e2e addopt in pyproject.toml) so you can iterate on the unit suite without waiting for browser installs. CI runs the E2E job as a separate workflow (.github/workflows/e2e.yml) that only fires on PRs touching build.py, the viz modules, or tests/e2e/**.

Feature files live under tests/e2e/features/ β€” one per UI area (homepage, session page, command palette, keyboard nav, mobile nav, theme toggle, copy-as-markdown, responsive breakpoints, edge cases, accessibility, visual regression). Step definitions are all in tests/e2e/steps/ui_steps.py. Adding a new scenario is usually a 2-line change to a .feature file plus maybe one new step.

Run locally with an HTML report:

pytest tests/e2e/ --browser=chromium \
  --html=e2e-report/index.html --self-contained-html
open e2e-report/index.html     # macOS β€” opens the browseable report

Where to see test reports:

WhatWhere
Unit test resultsGitHub Actions β†’ ci.yml β†’ latest run β†’ lint-and-test job logs
E2E HTML reportGitHub Actions β†’ e2e.yml β†’ latest run β†’ Artifacts β†’ e2e-html-report (14-day retention)
Visual regression screenshotsSame run β†’ Artifacts β†’ e2e-screenshots
Playwright traces (failed runs only)Same run β†’ Artifacts β†’ playwright-traces (open with playwright show-trace <zip>)
Demo site deploy statusGitHub Actions β†’ pages.yml β†’ latest run

Locally, the HTML report is one file (e2e-report/index.html) that you can open in any browser β€” pass/fail per scenario, duration, stdout/stderr, screenshot on failure.

Scheduled sync

For a daily / weekly cron-style sync, schedule llmwiki sync directly via your OS's native job runner (launchd on macOS, systemd on Linux, Task Scheduler on Windows). Paths and adapter selection come from examples/sessions_config.json.

CLI reference

llmwiki init                    # scaffold raw/ wiki/ site/ + seed nav files
llmwiki sync                    # convert .jsonl β†’ markdown (auto-build + auto-lint if configured)
llmwiki build                   # compile static HTML + AI exports
llmwiki serve                   # local HTTP server on 127.0.0.1:8765
llmwiki adapters                # list available adapters + configured state (v1.0)
llmwiki graph                   # build knowledge graph (v0.2)
llmwiki lint                    # 16-rule wiki lint (v1.2)
llmwiki export <format>         # AI-consumable exports (v0.4)
llmwiki synthesize              # auto-ingest synthesis pipeline (v0.5)
llmwiki all                     # build β†’ graph β†’ export β†’ lint in one shot (v1.2)
llmwiki version

Each subcommand has its own --help. All commands are also wrapped in one-click shell/batch scripts: sync.sh/.bat, build.sh/.bat, serve.sh/.bat, upgrade.sh/.bat.

Works with

AgentAdapterStatusAdded in
Claude Codellmwiki.adapters.claude_codeβœ… Productionv0.1
Obsidian (input)llmwiki.adapters.obsidianβœ… Productionv0.1
Obsidian (output)llmwiki.obsidian_outputβœ… Productionv0.2
Codex CLIllmwiki.adapters.codex_cliβœ… Productionv0.3
Cursorllmwiki.adapters.cursorπŸ§ͺ Beta β€” needs verification against current Cursor session formatv0.5
Gemini CLIllmwiki.adapters.gemini_cliπŸ§ͺ Beta β€” layout TBCv0.5
Copilot Chatllmwiki.adapters.copilot_chatπŸ§ͺ Betav0.9
Copilot CLIllmwiki.adapters.copilot_cliπŸ§ͺ Betav0.9
OpenCode / OpenClaw—⏸ Deferredβ€”

Adding a new agent is one small file β€” subclass BaseAdapter, declare SUPPORTED_SCHEMA_VERSIONS, ship a fixture + snapshot test.

MCP server

llmwiki ships its own MCP server (stdio transport, no SDK dependency) so any MCP client can query your wi

Files in the repo

Repository payloadβ€’45 top-level entries
  • .claude
  • .claude-plugin
  • .github
  • .kiro
  • docs
  • examples
  • homebrew
  • integrations
  • llmwiki
  • scripts
  • specs
  • tests
  • wiki
  • .editorconfig
  • .gitignore
  • .gitlab-ci.yml.example
  • .llmwiki-synth-state.json
  • action.yml
  • AGENTS.md
  • build.bat
  • build.sh
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • docker-compose.yml
  • Dockerfile
  • flake.nix
  • LICENSE
  • lychee.toml
  • package-lock.json
  • package.json
  • playwright.config.ts
  • pyproject.toml
  • README.md
  • RELEASE-NOTES-v1.2.0.md
  • SECURITY.md
  • serve.bat
  • serve.sh
  • setup.bat
  • setup.sh
  • sync.bat
  • sync.sh
  • upgrade.bat
  • upgrade.sh

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More tools

JuliusBrussee/
caveman

πŸͺ¨ why use many token when few token do trick β€” Claude Code skill that cuts 65% of tokens by talking like caveman

105k
1 add
MemPalace/
mempalace

The best-benchmarked open-source AI memory system. And it's free.

59k
stablyai/
orca

Orca is the ADE for working with a fleet of parallel agents. Run any coding agent with your own subscription. Available on desktop, mobile and remote runtime.

66k

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

132k

Never stop coding. Free MIT AI gateway: one endpoint, 352 providers (150+ free), 1200+ models Kimi, Claude, GPT, Gemini, GLM, DeepSeek, MiniMax. Works with Claude Code, Codex, Cursor, OpenCode, Cline & Copilot. Quota-aware auto-fallback, RTK+Caveman compression saves 15-95% tokens, MCP/A2A, Desktop/PWA. Built by 550+ contributors

64k
headroomlabs-ai/
headroom

Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.

71k