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

wiki-system维基系统

Agent Skill

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

总安装

9,865

周安装

403

GitHub Stars

公开资料未说明

下载量

3,160
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install wiki-system

简介

wiki-system 为 OpenClaw 代理提供编译式检索知识库,支持源码输入与结构化输出。

  • 适用于构建交叉引用的知识复合系统而非分散存储。
  • 可将原始代码或文档转化为可检索、可导航的知识页面集合。
  • 需确认是否涉及敏感代码处理及本地存储合规性要求。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
karpathy-wiki
description
Compilation-over-retrieval knowledge wiki for OpenClaw agents. Drop sources in, get structured cross-referenced pages out. Knowledge compounds instead of disappearing. Based on Andrej Karpathy's LLM Wiki pattern.

Wiki System

"The tedious part of maintaining a knowledge base is not the reading or thinking — it's the bookkeeping." — Andrej Karpathy

Most AI memory systems retrieve and forget. You ask a question, the agent fetches context, answers, and the insight vanishes into chat history. Next session, same question, same fetch, same synthesis from scratch.

This skill implements Karpathy's compilation-over-retrieval pattern (original gist): instead of fetching raw sources every time, the agent builds and maintains a structured wiki — cross-referenced markdown pages that compound knowledge over time. The human curates what goes in; the agent handles the summarization, cross-referencing, and maintenance that humans typically abandon because the overhead grows unbearably.

Three Layers

  1. Raw Sources (immutable) — PDFs, articles, papers, URLs. You drop them in, the agent reads but never modifies them.
  2. The Wiki (LLM-maintained) — structured markdown pages in memory/wiki/ with frontmatter, claims, cross-references. The agent creates, updates, and maintains these automatically.
  3. The Schema (WIKI-SCHEMA.md) — rules for structure, naming, and workflows. Co-evolves with your knowledge base.

Three Operations

  • Ingest — source goes in, agent extracts claims, creates/updates wiki pages, adds [[cross-references]] across related pages. A single source can touch multiple existing pages.
  • Query — agent checks the wiki first, synthesizes answers with citations, and optionally files gaps back to the ingestion queue. Insights compound instead of evaporating.
  • Lint — weekly health check: stale pages, broken links, orphan pages, contradictions, missing metadata. The wiki stays clean as it grows.

Compatibility

Works out of the box with

  • OpenClaw >= 2026.1.29 (only hard requirement)
  • Builtin memory backend (default) — the setup script adds memory/wiki to memorySearch.extraPaths so wiki pages are searchable via memory_search. No manual config needed.
  • Dreaming (bundled, opt-in) — wiki and dreaming coexist cleanly. Dreaming consolidates daily conversation signals into MEMORY.md; the wiki compiles external knowledge into memory/wiki/. Different inputs, different outputs, never touching each other's files. Dreaming can even queue wiki candidates to the ingestion queue — the 4AM ingest cron picks them up 90 minutes after dreaming finishes at 2:30AM.

Enhanced with (optional)

  • QMD — local search sidecar with reranking and query expansion. Recommended for wikis over ~50 pages. QMD indexes memory/**/*.md recursively, so wiki pages are auto-indexed every 10 minutes with no extra config.
  • SuperMemory — cloud memory persistence. Adding memory/wiki/index.md to the sync script lets cross-session recall know what wiki topics exist, even on different devices.
  • Embedding provider (OpenAI, Gemini, Voyage, Mistral) — enables semantic/vector search alongside keyword matching. Especially useful when wiki pages use different terminology than your queries.
  • Honcho — cross-session semantic search with user modeling. Wiki pages indexed automatically.
  • Dual-memory plugin (memory-core + SuperMemory) — if you run both backends via a composite plugin, wiki search results merge with cloud memories automatically. Best of both worlds.
  • Obsidian — the [[wikilink]] cross-references are Obsidian-compatible. Point Obsidian at memory/wiki/ to browse, visualize the knowledge graph, and follow links.

What the wiki agent never modifies

  • DREAMS.md — owned by Dreaming diary
  • memory/YYYY-MM-DD.md — owned by daily compaction
  • memory/dreaming/ — owned by Dreaming reports
  • memory/projects/active/ — owned by project workflows
  • memory/decisions.log, memory/learnings.log — owned by tracking systems
  • Your existing memory files, projects, logs — all untouched

Note: The setup script appends a wiki reference section to MEMORY.md once during installation (so the agent knows the wiki exists). After setup, the wiki system never modifies MEMORY.md again — Dreaming retains full ownership.

How It Works

You drop sources into work/wiki-sources/
        |
        v
[Wiki Ingest - cron or manual]
  Reads sources, extracts claims, creates/updates pages
        |
        v
memory/wiki/*.md (structured pages with frontmatter + cross-references)
        |
        v
[OpenClaw Memory Index]
  memory_search finds wiki pages alongside your other memory files

Wiki pages live inside memory/ so every OpenClaw memory backend indexes them automatically. No extra configuration needed.

Installation

Basic setup (directories, templates, MEMORY.md reference):

bash skills/karpathy-wiki/scripts/wiki-setup.sh

Full setup with automated cron jobs and SuperMemory cloud sync:

bash skills/karpathy-wiki/scripts/wiki-setup.sh --all --tz America/New_York

Flags:

  • --tz TIMEZONE — timezone for cron jobs (default: UTC)
  • --with-cron — create ingest (daily 4AM) and lint (Sunday 3:30AM) cron jobs
  • --with-sync — add wiki index to SuperMemory sync script (enables cloud persistence)
  • --all — enable both --with-cron and --with-sync

The basic setup creates:

  1. memory/wiki/ with index.md and log.md
  2. work/wiki-sources/ with pdfs/, articles/, papers/ subdirs
  3. WIKI-SCHEMA.md at workspace root
  4. Ingestion queue at work/wiki-sources/ingestion-queue.md
  5. Wiki reference section appended to MEMORY.md (if present)

Cron jobs and SuperMemory sync are opt-in — you control what gets automated.

Uninstall

openclaw cron delete <ingest-job-id>    # Get IDs: openclaw cron list | grep Wiki
openclaw cron delete <lint-job-id>
rm -rf memory/wiki/ work/wiki-sources/ WIKI-SCHEMA.md

Usage

Adding knowledge

During a conversation:

  1. Save the source to work/wiki-sources/
  2. Add it to work/wiki-sources/ingestion-queue.md:
   ## Pending
   - [ ] articles/my-article.md | Added 2026-04-07
   - [ ] https://example.com/paper | Added 2026-04-07
  1. Say "wiki ingest" — the agent processes the queue immediately

Trigger ingest outside a conversation:

openclaw cron run <ingest-job-id>

Automated: Cron processes up to 3 sources daily at 4AM.

Querying the wiki

The agent checks memory/wiki/index.md for relevant pages, reads them, and synthesizes answers with citations. If a question reveals a knowledge gap, it adds an entry to the ingestion queue for future research.

Manual lint

Say "wiki lint" to run a health check anytime.

Page Format

Pages use domain-prefixed kebab-case names with YAML frontmatter:

---
title: "Senolytics Overview"
domain: longevity
created: 2026-04-07
updated: 2026-04-07
sources:
  - work/wiki-sources/papers/unity-trial.pdf
tags: [senescence, aging]
confidence: high
status: active
---

# Senolytics Overview

## Summary
2-3 sentence overview.

## Key Claims
1. Claim with source attribution

## Open Questions
- Unresolved questions

## Related
- [[longevity-cellular-reprogramming]]

Domains: bio, vita, longevity, tech, ops, finance, people (customizable in WIKI-SCHEMA.md)

See skills/karpathy-wiki/templates/page-template.md for a starter.

File Layout

WIKI-SCHEMA.md                         <- Rules and conventions
memory/wiki/index.md                   <- Page catalog (<4000 tokens)
memory/wiki/log.md                     <- Activity log (append-only)
memory/wiki/{domain}-{topic}.md        <- Wiki pages
work/wiki-sources/                     <- Raw source documents
work/wiki-sources/ingestion-queue.md   <- Processing queue
skills/karpathy-wiki/scripts/            <- Ingest and lint prompts
skills/karpathy-wiki/templates/          <- Scaffold templates
skills/karpathy-wiki/references/         <- Background on the pattern

Cron Schedule

JobScheduleRecommended ModelPurpose
Wiki Ingest4:00 AM dailyReasoning-capable (e.g., Claude Sonnet, GPT-4o, Gemini Pro)Process ingestion queue — needs synthesis and cross-referencing
Wiki LintSunday 3:30 AMFast/cheap (e.g., Claude Haiku, GPT-4o-mini, Gemini Flash)Health check — mechanical validation, no creative thinking needed

Timezone configurable via --tz during setup. Ingest runs 90 minutes after Dreaming (2:30AM) to avoid conflicts. Model is set during cron creation — change anytime with openclaw cron edit <id> --model <model>.

Troubleshooting

  • Pages not searchable: openclaw memory status to check index. Try openclaw memory index --force.
  • Cron not firing: openclaw cron list for status. Restart gateway if needed.
  • Index too large: At 80+ pages, schema supports domain sub-indices. See WIKI-SCHEMA.md.
  • Dreaming conflicts: Impossible by design. Wiki and Dreaming write to different files with a 90-minute scheduling buffer.

Credits

Inspired by Andrej Karpathy's LLM Wiki pattern. Implementation adapted for OpenClaw's memory architecture with compatibility across all memory backends (builtin, QMD, Honcho), optional Dreaming integration, and SuperMemory cloud persistence.

See skills/karpathy-wiki/references/karpathy-llm-wiki.md for the full concept breakdown.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.06%
按下载量换算2,751

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills