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

obsidian-notes-karpathyObsidian notes karpathy 搜索

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

2

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:obsidian-notes-karpathy(Obsidian notes karpathy 搜索)
来源仓库:https://github.com/bahayonghang/obsidian-notes-karpathy
仓库路径:skills/obsidian-notes-karpathy
安装命令:
npx skills add https://github.com/bahayonghang/obsidian-notes-karpathy --skill obsidian-notes-karpathy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bahayonghang/obsidian-notes-karpathy --skill obsidian-notes-karpathy

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx 命令从指定 GitHub 仓库安装,支持 Karpathy 笔记管理。
  • 需确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • obsidian-notes-karpathy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Obsidian Notes Karpathy

Package-level entry point for the review-gated knowledge workflow.

Use this skill when the user talks about the workflow as a whole, not just one operation. Diagnose the lifecycle stage first, then route to the correct operational skill. If the operation is already obvious, skip the router and go straight to the matching kb-* skill.

Archive semantics are split deliberately:

  • raw retention archive: raw/** plus raw/_manifest.yaml
  • artifact archive: durable outputs under outputs/**

Neither archive surface bypasses the draft -> review -> live truth boundary.

Minimal loop

  • kb-ingest registers raw sources into raw/_manifest.yaml
  • kb-compile builds reviewable candidates from immutable captures
  • kb-review decides what deserves durable truth
  • kb-query reuses approved knowledge for search, grounded answers, creator-facing publish artifacts, archived Q&A reuse, and static web export
  • kb-render turns approved knowledge into deterministic derivative artifacts
  • kb-review also owns the maintenance lane when approved knowledge drifts or backlog accumulates

Karpathy alignment

This package implements the LLM Wiki pattern: "Obsidian is the IDE; the LLM is the programmer; the wiki is the codebase." The user curates sources, asks questions, and thinks about meaning. The LLM handles summarizing, cross-referencing, filing, and bookkeeping that makes knowledge compound over time.

The key extension beyond Karpathy's original idea is an explicit review gate: unreviewed drafts never silently harden into long-term truth. This adds a draft → review → live promotion step that Karpathy's pattern leaves implicit.

The creator-ready extension is that compile should behave like a knowledge compiler, not just a summarizer: collect -> ingest -> compile (浓缩 -> 质疑 -> 对标) -> review -> query/publish -> maintenance.

When this compounds the wiki

The package should behave like a persistent markdown wiki operator, not just a staged pipeline. Each step should either improve approved knowledge directly through the gate or leave behind clearer navigation, better reuse surfaces, and explicit next actions.

Read before routing

Read these shared references first:

  • ./scripts/skill-contract-registry.json
  • ./references/archive-model.md
  • ./references/file-model.md
  • ./references/lifecycle-matrix.md
  • ./references/search-upgrades.md
  • ./references/activity-log-template.md
  • ./references/provenance-and-alias-policy.md
  • ./references/questions-and-reflection-policy.md
  • ./references/memory-lifecycle.md
  • ./references/graph-contract.md
  • ./references/source-manifest-contract.md
  • ./references/profile-contract.md
  • ./references/automation-hooks.md

Treat skill-contract-registry.json as the canonical list of package roles, required shared references, baseline scripts, and output surfaces.

If the target vault already exists, inspect:

  • local AGENTS.md
  • local CLAUDE.md if present
  • the top of wiki/index.md
  • the most recent entries in wiki/log.md when available

If ./scripts/detect_lifecycle.py exists, run it first and treat its JSON output as the deterministic baseline.

If ./scripts/vault_status.py exists, use it as the user-facing status wrapper after lifecycle detection when the user mainly wants a concise "where am I and what next?" summary.

Lifecycle signals

Init signals

Route to kb-init when:

  • the support layer does not exist yet
  • AGENTS.md is missing
  • wiki/index.md or wiki/log.md is missing
  • wiki/drafts/, wiki/live/, wiki/briefings/, or outputs/reviews/ is missing
  • the vault is a needs-migration / legacy-layout case that must be migrated first
  • optional governance scaffolding such as QUESTIONS.md or ALIASES.md is explicitly requested

Compile signals

Route to kb-compile when:

  • new or changed raw captures exist under raw/human/**, raw/agents/{role}/**, or directly under raw/ in a bootstrap vault
  • the draft summary matching a raw capture is missing or outdated
  • alias candidates, duplicate candidates, or source-integrity drift need to be surfaced before review
  • a legacy-layout raw source still needs to be converted into the draft layer during migration

Ingest signals

Route to kb-ingest when:

  • raw/_manifest.yaml exists but is stale relative to raw/**
  • the user explicitly wants to refresh the source registry or inspect deferred raw sources
  • a paper PDF, image asset, or data asset should be registered before compile runs
  • a manifest drift signal appears before draft compilation work starts

Review signals

Route to kb-review when:

  • draft knowledge exists under wiki/drafts/** and still has review_state: pending
  • the user explicitly asks to run the quality gate, approve drafts, reject drafts, or rebuild briefings
  • briefings are stale relative to the live layer and the next immediate step is to rebuild them through the gate
  • a draft has unresolved contradiction, alias-alignment, or duplication-risk questions that require approval judgment

kb-review owns the immediate gate: pending draft decisions, promotion into wiki/live/, and briefing rebuilds that should happen as part of the current review pass.

Query signals

Route to kb-query when:

  • wiki/live/** is trustworthy and current
  • the user wants an answer, report, thread, slides, or other artifact grounded in the approved brain
  • the user wants to reuse prior approved coverage or archived outputs before drafting a new outward-facing artifact
  • the user wants to archive a substantive answer or reuse a prior archived answer/content artifact
  • the user wants question-resolution candidates or reflection outputs that should stay outside live until re-reviewed
  • the user explicitly uses older kb-search wording for local-first retrieval or candidate ranking

Render signals

Route to kb-render when:

  • the user explicitly wants slides, a report, chart brief, or canvas output
  • the task is deterministic format generation from approved knowledge rather than a normal grounded answer
  • the user already has the source pages or archived answer and now wants a derivative artifact

Health signals

Route to kb-review in maintenance mode when:

  • the live layer feels contradictory, weakly linked, or poorly provenanced
  • approved pages appear to have bypassed review
  • review backlog, stale briefings, or writeback pressure have become longer-horizon maintenance issues rather than the next immediate gate
  • archived answers have pending writeback work
  • archived outputs need hygiene work such as stale reuse, archive backlog cleanup, or private/shared scope leakage
  • collaboration memory and approved knowledge appear to be mixing
  • the user wants a maintenance baseline, drift audit, duplicate pass, alias audit, coverage-gap review, or report-first cleanup pass across approved surfaces
  • the user wants planning surfaces such as curated hubs or editorial-gap views refreshed without widening the truth boundary
  • the user wants to know which repeated outputs, question clusters, or weakly connected topics should become syntheses or hubs next

kb-review owns both the immediate gate and the longer-horizon maintenance lane: approved-layer drift, backlog pressure, archived-output hygiene, source-integrity drift, alias splits, graph weakness, hub backlog, and safe mechanical fixes after the immediate review gate has passed.

Contract rules

  • Treat raw/ as immutable evidence intake.
  • Treat raw/_manifest.yaml as the canonical source registry.
  • Treat wiki/drafts/ as reviewable knowledge, not query truth.
  • Treat wiki/live/ as the only approved long-term brain.
  • Treat wiki/live/topics/ as the default browse layer over approved knowledge.
  • Treat wiki/live/procedures/ as approved procedural memory, not just another concept bucket.
  • Treat wiki/briefings/ as per-role context generated from live only.
  • Treat outputs/episodes/ as episodic memory and outputs/audit/operations.jsonl as the machine-readable audit trail.
  • Treat archived outputs/qa/** and outputs/content/** as reusable artifact archive, not as approved truth.
  • Treat outputs/reviews/ as the durable decision ledger.
  • Keep wiki/index.md and wiki/log.md as complementary navigation surfaces.
  • Absorb stronger governance signals such as source integrity, alias alignment, stale-page checks, and question tracking without collapsing the review gate.

Output requirements

When the user asks what to do next, answer with:

  1. the lifecycle stage you detected
  2. the concrete signals that led you there
  3. the operational skill you are routing to
  4. the next concrete action in the vault
  5. any assumption you had to make
  6. any repair target, migration warning, or missing companion guidance

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.08%
按下载量换算34

Claude

31.49%
按下载量换算32

Cursor

18.11%
按下载量换算18

Gemini CLI

8.28%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills