Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

llmwikillmwiki 文档

Agent Skill

llmwiki 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,726

周安装

371

GitHub Stars

公开资料未说明

下载量

3,057
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:llmwiki(llmwiki 文档)
来源仓库:https://github.com/hosuke/llmwiki
安装命令:
openclaw skills install llmwiki
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install llmwiki

简介

用于构建以 LLM 驱动的个人知识库系统。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 将原始文档编译为结构化、相互链接的多语言 Wiki。
  • 支持新兴分类法和知识图谱的动态更新与维护。
  • 安装前建议确认权限范围、维护状态及是否涉及文件读写操作。
  • llmwiki 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
llmwiki
version
0.8.0
description
LLM-powered personal knowledge base. Raw documents in, an LLM compiles them into a structured interlinked wiki with trilingual articles, emergent taxonomy, and self-healing. One operations contract serves CLI, HTTP, and MCP.
author
Hosuke
homepage
https://github.com/Hosuke/llmbase
source
https://github.com/Hosuke/llmbase
license
MIT
keywords
install
pip install llmwiki
requires
credentials
description
API key for any OpenAI-compatible LLM endpoint (user-supplied)
required
true
description
LLM API base URL
required
false
description
Primary model name
required
false
description
Comma-separated fallback model chain (empty = no fallback)
required
false
permissions
notes
|

llmwiki

A personal knowledge base that an LLM _compiles_, not just stores. Raw documents go in, an LLM writes trilingual (EN / 中文 / 日本語) wiki articles with [[wiki-links]], backlinks, and an emergent taxonomy. The MCP server dispatches every tool through llmwiki/operations.py; the CLI exposes the same registry via llmbase ops call; individual HTTP/CLI wrappers are being migrated onto the registry over time.

  • PyPI: pip install llmwiki
  • CLI command: llmbase (the package name and the command differ)
  • GitHub: https://github.com/Hosuke/llmbase
  • Demo: https://huazangge-production.up.railway.app

Setup

pip install llmwiki

mkdir my-kb && cd my-kb

cat > .env << 'EOF'
LLMBASE_API_KEY=sk-your-key
LLMBASE_BASE_URL=https://your-endpoint/v1
LLMBASE_MODEL=your-model
# Optional: LLMBASE_FALLBACK_MODELS=backup-1,backup-2
EOF

cat > config.yaml << 'EOF'
llm:
  max_tokens: 16384
paths:
  raw: "./raw"
  wiki: "./wiki"
EOF

Commands

CommandDescription
llmbase ingest url <url>Ingest a web article
llmbase ingest pdf <file>Ingest a PDF (auto-chunks)
llmbase ingest file <file>Ingest any local file
llmbase ingest dir <dir>Ingest all files from a directory
llmbase ingest cbeta-learn --batch 10Corpus plugin: Buddhist canon
llmbase ingest ctext-book 论语 /analects/zhCorpus plugin: Chinese classics
llmbase compile newCompile new raw docs incrementally (3-layer dedup)
llmbase compile allFull rebuild
llmbase compile indexRebuild index + aliases
llmbase query "<q>"Ask a question (single-pass; add --deep for multi-step research)
llmbase query "<q>" --tone wenyan📜 classical Chinese voice
llmbase query "<q>" --tone scholar🎓 academic voice
llmbase query "<q>" --tone eli5👶 simple voice
llmbase query "<q>" --tone caveman🦴 primitive voice
llmbase query "<q>" --file-backFile answer back into the wiki
llmbase lint check8-category structural health check
llmbase lint healCheck → fix → re-check → report
llmbase lint deepLLM deep quality analysis
llmbase webWeb UI at :5555
llmbase serveAgent HTTP API at :5556
llmbase mcpStart MCP server (stdio)
llmbase statsKB statistics

MCP Integration (for AI clients)

{
  "mcpServers": {
    "llmwiki": {
      "command": "python",
      "args": ["-m", "llmwiki", "--base-dir", "/path/to/my-kb"]
    }
  }
}

Tools exposed by the MCP server:

ToolPurpose
kb_searchFull-text search over compiled concepts
kb_search_rawVerbatim full-text fallback over raw/ sources (v0.6.2+)
kb_askDeep-research Q&A with tone modes
kb_getGet article by slug or alias (, kong, emptiness all work)
kb_listList articles, filter by tag
kb_backlinksFind articles citing a given article
kb_taxonomyMultilingual category tree
kb_statsArticle count, word count
kb_xiciGuided reading (导读)
kb_ingestIngest a URL
kb_compileCompile raw → wiki
kb_lintHealth check / auto-fix
kb_export / kb_export_article / kb_export_tag / kb_export_graphStructured export for downstream projects

All tools are declared in llmwiki/operations.py — downstream projects register custom ops via operations.register(...) and they become available on CLI + MCP automatically.

Agents mounted on this server can answer from compiled concepts, fall back to raw sources with kb_search_raw when compile glossed a detail, ingest new material mid-session, and trigger healing.

Workflows

Build a KB from scratch

llmbase ingest url https://example.com/topic
llmbase ingest pdf ./paper.pdf
llmbase compile new
llmbase query "What are the key concepts?"
llmbase lint heal

Autonomous mode (deploy once, server keeps learning)

# config.yaml
worker:
  enabled: true
  learn_source: cbeta         # built-in: cbeta | wikisource | both; custom via register_learn_source()
  learn_interval_hours: 6
  compile_interval_hours: 1
  health_check_interval_hours: 24

health:
  auto_fix_broken_links: true
  max_stubs_per_run: 10

The worker starts under the production WSGI entrypoint (wsgi.pystart_worker_thread). Deploy with gunicorn wsgi:app; llmbase web alone does not self-start the worker.

Daily use as agent memory

  1. Agent receives a task → calls kb_search for relevant concepts
  2. If the compiled answer is too abstract → calls kb_search_raw for verbatim detail
  3. Learns something new → calls kb_ingest with the URL
  4. Optionally kb_compile to fold it into concepts for next session
  5. Periodically kb_lint heals the graph

Key Concepts

  • Synthesis, not archiving — LLM reads raw material and writes composed articles; storage is the cheap part
  • Two-layer recallkb_search (concepts) + kb_search_raw (verbatim raw sources)
  • Trilingual default — every article has EN / 中文 / 日本語 sections
  • 叠加进化 — new data merges into existing concepts, never overwrites
  • Domain-agnostic — taxonomy emerges per-domain, nothing hardcoded
  • Self-healing — 7-step auto-fix pipeline repairs drift
  • Alias resolution[[参禅]]can-chan.md across scripts and simplified/traditional
  • Registry-backed ops — MCP dispatches every tool through operations.py; CLI exposes the same registry via llmbase ops list / llmbase ops call; direct HTTP/CLI wrappers are being migrated onto the registry

Tips

  • --file-back saves Q&A answers into the wiki so future queries benefit
  • --tone wenyan for Chinese users (classical Chinese responses)
  • Run llmbase lint heal after large ingestion batches
  • Web UI /health has buttons for every repair op
  • Knowledge graph at /graph — density slider for large KBs
  • Timeline at /explore — requires entities: { enabled: true } in config

Security & Privacy

  • All data stays local — wiki files are plain markdown on your filesystem
  • LLM API key — user-supplied, loaded from .env
  • Network access — user-initiated (URL ingest, SSRF-protected) plus corpus plugins (cbeta-learn, wikisource-learn, ctext-book) and the autonomous worker when enabled
  • Web server — optional; binds 0.0.0.0 so LAN-accessible by default — front with a reverse proxy or bind override for public exposure
  • API secret — cloud deployments (with PORT env) gate most mutating endpoints behind LLMBASE_API_SECRET (auto-generated if unset). Note: /api/ask is open by default and writes Q&A back via file_back; only promotion to concepts requires the secret
  • Autonomous worker — opt-in via config, disabled by default
  • No telemetry — nothing is sent anywhere except the configured LLM API

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.73%
按下载量换算2,804

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills