Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@jackwener/llm-wiki

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jackwener/llm-wiki

Agent-native LLM Wiki — AI-maintained knowledge base with Obsidian compatibility

latest
Source
npmnpm
Version
0.5.1
Version published
Maintainers
1
Created
Source

LLM Wiki

Agent-native persistent knowledge management — compile knowledge once, query forever.

Based on Andrej Karpathy's LLM Wiki pattern.

What is this?

LLM Wiki is a CLI tool + AI Agent skill system that maintains an evolving, interconnected Markdown knowledge base. Instead of traditional RAG (re-deriving answers from raw documents each time), LLM Wiki compiles knowledge into structured wiki pages that AI agents maintain and grow over time.

Key principle: The tool itself doesn't call LLMs. It provides skill files that let any AI agent (Claude Code, Codex, etc.) operate the wiki. Obsidian is the human interface — no self-built GUI.

Quick Start

# Install globally
npm install -g @jackwener/llm-wiki

# Initialize a new wiki vault
mkdir my-wiki && cd my-wiki
llm-wiki init

# Now use your AI agent:
#   /ingest sources/some-article.md
#   /query "What do we know about X?"
#   /lint
#   /research "deep dive on Y"

llm-wiki init is the only setup command — it creates the vault files, the agent bootstrap files (CLAUDE.md, AGENTS.md), and installs the bundled skill into .claude/skills/ and .agents/skills/ in one step.

After upgrading the package, refresh the installed skill files with:

llm-wiki skill install

Vault Structure

my-wiki/
├── CLAUDE.md              # Agent bootstrap for Claude Code (auto-loaded)
├── AGENTS.md              # Agent bootstrap for Codex (auto-loaded)
├── wiki-purpose.md        # Wiki scope and audience
├── wiki-schema.md         # Page types, naming conventions, frontmatter rules
├── wiki-log.md            # Append-only operation log
├── wiki/                  # AI-maintained wiki pages (Obsidian-compatible)
├── sources/               # Raw, immutable source documents
│   └── YYYY-MM-DD/        # Date-based storage
├── .claude/
│   └── skills/
│       └── llm-wiki.md    # Skill file for Claude Code
├── .agents/
│   └── skills/
│       └── llm-wiki.md    # Skill file for Codex
└── .llm-wiki/
    ├── config.toml        # Vault configuration
    └── sync-state.json    # Incremental sync tracking

llm-wiki init generates every file above in one step.

Agent Bootstrap

LLM Wiki uses a two-file pattern so any AI agent can operate the vault out of the box, with no manual setup beyond llm-wiki init:

1. Entry files — CLAUDE.md and AGENTS.md (vault root)

Short bootstrap documents that are auto-loaded on every session start — Claude Code reads CLAUDE.md, Codex reads AGENTS.md. They tell the agent:

  • this workspace is an LLM Wiki vault
  • where to find wiki-purpose.md and wiki-schema.md
  • which /ingest, /query, /lint, /research commands are available
  • where the full skill file lives (.claude/skills/llm-wiki.md or .agents/skills/llm-wiki.md)
  • a short CLI cheat-sheet and the core operating rules

Because they are auto-loaded, they are intentionally small — a few dozen lines — to keep session-start context cheap.

2. Skill file — .claude/skills/llm-wiki.md and .agents/skills/llm-wiki.md

The full agent playbook, loaded on demand when the agent invokes a wiki command. It contains the detailed step-by-step procedure for each operation, page schemas, frontmatter rules, worked examples, and invariants (e.g. the sources/ immutability rule, the wiki-log.md + sync tail rule). The same skill is installed into both platform directories so a single vault works with Claude Code and Codex without reconfiguration.

Upgrading. llm-wiki init is the only setup command — it writes both entry files and installs the skill. After upgrading the npm package, run llm-wiki skill install to refresh the skill file. Your edits to CLAUDE.md / AGENTS.md are preserved across reinstalls.

Operations

The skill exposes four operations, each invoked as a slash command:

OperationUsageWhat it does
ingest/ingest <path>Read source → extract entities → create/update wiki pages with [[wikilinks]]
query/query <question>Search wiki → synthesize answer → write back valuable insights (knowledge compounding)
lint/lintHealth check: broken links, orphans, contradictions, stale content → auto-fix safe issues
research/research <topic>Go beyond wiki: search web → save sources → ingest → synthesize report

CLI Commands

CommandDescription
llm-wiki init [dir]Initialize a new wiki vault
llm-wiki search <query>BM25 keyword search (+ DB9 vector search if configured)
llm-wiki graph [--json]Analyze wikilink graph: communities, hubs, orphans, wanted pages
llm-wiki statusWiki statistics and health summary
llm-wiki sync [--dry-run]Track changes (mtime + SHA256), sync embeddings to DB9
llm-wiki skill installInstall all skills to your AI agent workspace
llm-wiki skill listList available skills
llm-wiki skill show <name>Print skill content to stdout

BM25 keyword search with CJK bigram tokenization (Chinese/Japanese/Korean support).

When DB9 is configured, search becomes hybrid: BM25 + vector similarity, merged via Reciprocal Rank Fusion (RRF, K=60).

llm-wiki search "distributed consensus"
llm-wiki search "分布式共识" -n 5
llm-wiki search "raft algorithm" --bm25-only

Graph Analysis

Analyzes the [[wikilink]] graph to find structure in your knowledge:

  • Communities — Topic clusters detected via label propagation
  • Hub pages — Most connected pages (high incoming + outgoing links)
  • Orphan pages — Pages with no incoming links
  • Wanted pages — Pages linked but not yet created
llm-wiki graph          # Human-readable output
llm-wiki graph --json   # Machine-readable for programmatic use

DB9 Integration (Optional)

DB9 adds vector search and cloud sync:

  • Server-side embeddings via embedding(text)::vector(1024) — no local model needed
  • HNSW vector index for semantic similarity search
  • Reverse source lookup: "which wiki pages reference this source?"

Enable by adding to .llm-wiki/config.toml:

[db9]
url = "your-db9-connection-string"

Then run llm-wiki sync to upload embeddings.

Obsidian Compatibility

The wiki/ directory is a standard Obsidian vault:

  • YAML frontmatter
  • [[wikilink]] cross-references
  • Open directly in Obsidian for browsing, graph view, and editing

Configuration

.llm-wiki/config.toml:

[vault]
name = "My Wiki"
language = "en"

# Optional: DB9 for vector search + cloud sync
# [db9]
# url = "your-db9-connection-string"

Tech Stack

License

Apache-2.0

Keywords

llm

FAQs

Package last updated on 20 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts