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

karpathy-wiki卡帕蒂维基

Agent Skill

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

总安装

3,951

周安装

163

GitHub Stars

公开资料未说明

下载量

1,291
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install karpathy-wiki

简介

karpathy-wiki 用于构建和维护持久化的 Markdown 知识库,支持在 OpenClaw 中快速检索和筛选相关信息。

  • 适用于需要根据关键词、任务场景或来源线索定位候选结果的场景,如个人知识管理或团队协作。
  • 通过关键词查询、来源筛选和结果验证来组织信息,具体用法需结合原始 README 进一步确认。
  • 安装命令为 openclaw skills install karpathy-wiki,建议提前确认权限范围和维护状态。
  • 使用前需注意是否涉及联网、文件读写或命令执行,避免触发不必要的安全限制。

SKILL.md

name
karpathy-wiki
description
Build, maintain, query, and lint a persistent markdown knowledge wiki that sits between raw sources and final answers. Use when managing a personal or team wiki, ingesting notes, articles, transcripts, reports, or research into a structured knowledge base, updating index and log pages, creating or revising topic, entity, concept, source, or analysis pages, answering questions from an existing wiki, or checking a wiki for contradictions, stale claims, missing links, orphan pages, duplicate pages, and schema drift. Best for Obsidian-friendly, plain markdown, or git-backed wikis where the agent should incrementally compile knowledge instead of re-deriving it from raw documents on every query.

Karpathy Wiki

Maintain a persistent markdown wiki that compiles knowledge over time. Treat raw sources as immutable, treat the wiki as the maintained artifact, and keep structure and conventions consistent so future sessions can continue the work.

Core model

Operate with three layers:

  1. raw sources/ or equivalent input area, read-only source material
  2. wiki/ or equivalent markdown knowledge base, editable compiled knowledge
  3. schema document that defines folder layout, naming, citation style, and workflows

Prefer updating the wiki over answering from scratch. When useful work is produced during analysis or Q&A, file the result back into the wiki as a reusable page.

Default wiki structure

If the user does not already have a schema, propose a simple markdown-first layout like:

wiki/
  index.md
  log.md
  schema.md
  sources/
  pages/
    topics/
    concepts/
    entities/
    analyses/

Adapt to the user's existing layout instead of forcing this one.

Operating modes

1. Ingest

Use when a new source is added.

Workflow:

  1. Read the source
  2. Identify key topics, entities, concepts, dates, claims, and open questions
  3. Create or update a source summary page if the wiki uses source pages
  4. Update affected topic, entity, concept, or analysis pages
  5. Add or repair internal links
  6. Update index.md
  7. Append a concise entry to log.md
  8. Record uncertainties, contradictions, or follow-up questions explicitly

During ingest, prefer touching a small number of clearly relevant pages over creating a large number of weak pages.

Create a new page only when at least one of these is true:

  • the concept or entity is likely to recur
  • the page would receive meaningful links from multiple places
  • the content would otherwise make an existing page too broad or noisy

Otherwise, expand an existing page.

2. Query

Use when the user asks a question against the wiki.

Workflow:

  1. Read index.md first when available
  2. Identify the most relevant wiki pages
  3. Synthesize from the wiki before falling back to raw sources
  4. Cite the wiki pages and, when appropriate, the underlying sources
  5. If the answer creates durable value, save it as a new or updated analysis page
  6. Update index.md if a new page is created
  7. Append to log.md if the wiki treats queries as first-class events

Prefer answers that preserve distinctions between:

  • facts directly supported by sources
  • synthesis across multiple pages
  • speculation or open questions

3. Lint

Use when checking wiki health.

Look for:

  • orphan pages with few or no inbound references
  • duplicate pages with overlapping scope
  • stale claims superseded by newer sources
  • contradictions between pages
  • missing cross-links
  • important concepts mentioned repeatedly without their own page
  • schema drift, inconsistent titles, inconsistent frontmatter, broken naming
  • analysis pages that should have been linked from topic/entity pages but were not

When linting, prefer producing an actionable list of fixes grouped by severity:

  • critical consistency issues
  • likely quality improvements
  • optional structural improvements

Page conventions

Favor concise pages with clear structure. A useful default shape is:

# Page Title

## Summary
Short synthesis of what this page is about.

## Key points
- Bullet points of durable knowledge

## Details
Longer notes, evidence, chronology, or structured sections

## Related
- [[Other Page]]

## Sources
- [[Source Page A]]
- [[Source Page B]]

If the wiki uses frontmatter, keep it minimal and consistent. Good optional fields include:
- `type`
- `aliases`
- `status`
- `updated`
- `source_count`
- `tags`

Do not invent elaborate metadata unless the user actually benefits from it.

## Naming and linking rules

Use stable, human-readable file names.

Prefer:
- one canonical page per concept/entity/topic
- redirects or aliases only when the wiki supports them
- explicit wiki-links between related pages
- consistent singular vs plural naming

When unsure whether two pages should merge, keep both only if they have clearly different scope. Otherwise merge and leave one canonical page.

## Index and log rules

### `index.md`

Treat `index.md` as the navigational catalog.

Include:
- page link
- one-line summary
- optional grouping by category
- optional source counts or update dates if the wiki uses them

Keep it skimmable. It should help future sessions decide what to read next.

### `log.md`

Treat `log.md` as append-only chronology.

Use a parseable heading style such as:

[2026-04-12] ingest | Source title


Keep entries concise:
- what was ingested, queried, or linted
- which pages were created or updated
- any unresolved issues

## Quality bar

A good wiki update should:
- preserve source fidelity
- surface contradictions instead of hiding them
- strengthen cross-links
- reduce future work
- make later questions cheaper to answer

Do not overwrite uncertainty with confident prose. When the evidence is mixed, say so clearly.

## Working with existing wikis

If a wiki already exists:

1. Inspect its schema, folder layout, and naming style
2. Follow the existing conventions unless they are clearly harmful
3. Repair inconsistencies gradually instead of rewriting the whole wiki at once
4. Propose larger schema changes before making them

## Obsidian-friendly guidance

For Obsidian-style vaults:
- prefer markdown files and wiki-links like `[[Page Name]]`
- keep filenames readable
- avoid fragile generated syntax unless the user already uses it
- if frontmatter exists, preserve formatting and field order when practical
- make pages pleasant to browse by humans, not only optimized for machine parsing

## Deliverables by task

### For ingest requests
Deliver:
- source summary or source page update
- updated related pages
- `index.md` update
- `log.md` entry
- short note on contradictions or open questions

### For query requests
Deliver:
- answer with citations
- optional durable analysis page if worth keeping
- any relevant index or log updates

### For lint requests
Deliver:
- prioritized issue list
- concrete proposed edits
- optional patch plan for high-value fixes

## References

- Read `references/getting-started.md` when the user needs a minimal starter schema for a new wiki.
- Read `references/wiki-patterns.md` for core page templates and structural heuristics.
- Read `references/ingest-patterns.md` when ingesting a new source into the wiki.
- Read `references/query-patterns.md` when answering questions from the wiki or deciding whether to save a durable analysis page.
- Read `references/lint-checklist.md` when checking the wiki for contradictions, stale claims, weak links, duplicates, or structural drift.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.7%
按下载量换算1,132

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills