Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

llm-wikiLLM Wiki

Agent Skill

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

总安装

28,344

周安装

1,181

GitHub Stars

公开资料未说明

下载量

9,448
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install llm-wiki

简介

用于查找、检索和筛选相关信息,适合快速定位知识内容。

  • 维护个人知识库,将原始资料编译为结构化 Markdown wiki。
  • 自动检查一致性并生成可浏览的网站界面。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 安装前建议确认权限范围、维护状态及是否触发联网操作。
  • llm-wiki 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
wiki
description
LLM-maintained personal knowledge base. Compile raw sources into a structured markdown wiki, auto-lint for consistency, serve as a browsable website. Inspired by Karpathy's 'LLM Knowledge Bases' workflow. Use when: user asks to create/manage a wiki, 'wiki this', 'add to wiki', 'compile raw/', 'lint the wiki', or wants a personal knowledge base. NOT for: general note-taking (use memory system), one-off Q&A, or tasks better suited to a database.

Wiki — LLM-Maintained Knowledge Base

You maintain a personal wiki for the user. The wiki is a collection of markdown articles organized by topic. You are the compiler, editor, and librarian.

Setup

If the wiki doesn't exist yet, run scripts/bootstrap.sh to create the structure, install dependencies, and configure git + static serving.

The wiki lives at ~/wiki/ with this structure:

~/wiki/
├── mkdocs.yml
├── docs/
│   ├── index.md              ← master index (you maintain)
│   ├── log.md                ← chronological ingest/lint/query log (append-only)
│   ├── raw/                  ← inbox for unprocessed sources
│   │   └── processed/        ← archived after compilation
│   └── topics/
│       ├── <topic>/
│       │   ├── _index.md     ← topic overview + article list
│       │   └── <article>.md  ← individual articles
│       └── ...
└── site/                     ← built static site (gitignored)

Core Operations

1. Filing Knowledge (most common)

When conversations produce durable knowledge, file it directly:

  1. Determine the right topic directory (create new one if needed)
  2. Write or update the article in docs/topics/<topic>/<article>.md
  3. Update related pages — scan existing articles for references to the same concepts, entities, or data. Add cross-links, update numbers, note where new info supersedes old claims. A single ingest should touch every relevant page, not just the target article.
  4. Update docs/topics/<topic>/_index.md with the new article link
  5. Update docs/index.md stats if a new topic/article was added
  6. Update mkdocs.yml nav section
  7. Append an entry to docs/log.md
  8. Rebuild: scripts/build.sh

Articles should be self-contained, factual, and cross-linked where relevant. Use See also: [Title](relative-path.md) for connections.

2. Compiling from raw/

When the user drops sources in docs/raw/ or gives you a URL:

  1. Read/fetch the source material
  2. Extract durable knowledge (skip ephemeral details, opinions without evidence)
  3. File into appropriate topic articles (new or existing)
  4. Update related pages — same as Filing: scan existing articles and update cross-links, numbers, or claims affected by the new source
  5. Move the raw source to docs/raw/processed/
  6. Append an entry to docs/log.md
  7. Rebuild: scripts/build.sh

3. Linting (daily via heartbeat)

Scan ~/wiki/docs/ for:

  • Contradictions — facts/numbers/claims in one article that conflict with another. Flag the specific pages and the conflicting statements.
  • Stale data — outdated references, old dates paired with "current"/"latest" language, version numbers that have been superseded
  • Missing links — references to topics without articles
  • Dead cross-links — broken See also links
  • Orphan pages — pages with no inbound links from other articles
  • Weak pages — articles that are too thin to be useful on their own (candidates for merging or expanding)

Fix within ~/wiki/docs/: broken links, typos, missing cross-links, orphan pages (add links from related articles). Flag to user: contradictions (with quotes from both sides), stale data, suggested new articles, weak pages. Append a lint entry to docs/log.md.

4. Filing Good Answers

When a conversation produces a solid synthesized answer (comparison, analysis, deep-dive), proactively offer to file it as a wiki page. Good candidates:

  • Comparisons or evaluations (model benchmarks, tool comparisons)
  • How-to knowledge derived from troubleshooting
  • Synthesized research across multiple sources
  • Decisions with rationale

These shouldn't disappear into chat history — they compound in the wiki.

5. Browsing

The wiki is served as a static MkDocs site. After any content change, run scripts/build.sh to regenerate.

Article Style Guide

  • Title: H1 at top, descriptive
  • Date/context: italicized line under title when relevant (e.g., *Tested: 2026-04-02 on Mac mini M4 16GB*)
  • Structure: use H2 sections, tables for comparisons, code blocks for commands
  • Cross-links: See also: [Article](relative-path.md) at bottom
  • Be factual: cite sources, include numbers, avoid vague claims
  • Keep it dense: this is a reference, not a blog post

Adding New Topics

  1. Create docs/topics/<topic>/ directory
  2. Create docs/topics/<topic>/_index.md with overview + article list
  3. Add to docs/index.md topic list
  4. Add to mkdocs.yml nav section

Dependencies & System Changes

This skill requires or will install the following:

DependencyPurposeInstalled by
Python 3MkDocs runtimeMust be pre-installed
mkdocs + mkdocs-materialStatic site generatorbootstrap.sh via pipx or pip3
gitVersion controlMust be pre-installed

What bootstrap.sh does

  • Creates ~/wiki/ directory structure
  • Installs mkdocs + mkdocs-material via pipx/pip3 if not already installed
  • Initializes a git repository
  • Creates a persistent static server as a LaunchAgent (macOS) or systemd user service (Linux) on port 8300
  • The static server serves ~/wiki/site/ on 127.0.0.1 only (not publicly accessible)

What build.sh does

  • Rebuilds the MkDocs static site
  • Commits all changes to git (local only by default)
  • Use --push to also push to a configured git remote (requires SSH keys or stored HTTP credentials)

Optional: heartbeat integration

You can integrate wiki linting into your agent's heartbeat cycle. This is opt-in and requires adding config to your HEARTBEAT.md. The heartbeat integration reads heartbeat-state.json (for timing) and optionally memory/ daily notes (to detect wiki gaps). See references/heartbeat-integration.md for setup.

Log (docs/log.md)

Append-only chronological record of wiki activity. Every ingest, lint, and filed answer gets an entry. Format:

## [YYYY-MM-DD] ingest | Article Title
- Source: <URL or filename>
- Pages touched: page1.md, page2.md, ...
- Summary: one-line description of what was added/changed

## [YYYY-MM-DD] lint
- Fixed: <list of silent fixes>
- Flagged: <list of issues reported to user>

## [YYYY-MM-DD] filed | Article Title
- Origin: conversation / Q&A synthesis
- Summary: one-line description

The log is parseable with grep: grep "^## \[" docs/log.md | tail -10 gives the last 10 entries.

Build & Deploy

Always run scripts/build.sh after content changes. This:

  1. Rebuilds MkDocs static site
  2. Commits all changes to git
  3. Pushes to remote

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.92%
按下载量换算7,362

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills