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

literate-guide识字指南

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

35

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/petekp/claude-code-setup --skill literate-guide

简介

用于 Claude Code 使用场景的分步引导与常见问题解答。

  • 适合新用户快速上手配置与环境搭建。literate-guide 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可提供命令速查表与典型工作流示例。
  • 需注明各宿主平台(Cursor/Claude 等)的操作差异。
  • 建议配合官方文档更新指引以保持信息同步。

SKILL.md

Literate Guide

Create a guide that tells the story of a codebase or feature the way Knuth intended programs to be read: as literature. The output is a single narrative essay where code excerpts and prose are interwoven, ordered by the logic of human understanding rather than file layout or execution order.

The Idea Behind This

Knuth's core observation was simple: programs are read far more often than they are written, yet we organize them for the compiler's convenience, not the reader's. A literate program reverses this — the author decides the order of presentation based on what a human needs to understand first, and the code appears *within* that narrative exactly where it becomes relevant.

For an existing codebase, this means:

  • Don't follow the file tree. Follow the conceptual thread. Start where understanding starts, not where main() lives.
  • Each section introduces one idea, shows the code that embodies it, and explains the reasoning behind the design. Sections are numbered with the section sign: §1, §2, §3... (that's the § character, U+00A7 — not the letter "S"). Sections cross-reference each other using this same notation.
  • The prose does the heavy lifting. Code excerpts are windows into the implementation, not the primary content. A reader should be able to follow the narrative even if they skip over the code blocks.
  • Design decisions are first-class content. "We use X instead of Y because..." is the heartbeat of a literate guide. Alternatives considered, tradeoffs accepted, constraints that shaped the design — these are what make the document valuable long after the code has changed.

Workflow

Step 1: Understand the Scope

Ask the user what they want the guide to cover:

question: "What should this literate guide cover?"
header: "Scope"
options:
  - label: "Entire codebase"
    description: "The full story of this project, end to end"
  - label: "A specific feature or subsystem"
    description: "Deep narrative on one part of the codebase"
  - label: "A recent change or PR"
    description: "The story of a specific set of changes and why they were made"

If they choose a feature or subsystem, clarify which one. If the codebase is large (50+ files), strongly recommend scoping to a subsystem — a good literate guide goes deep, and breadth dilutes that.

Also ask about audience:

question: "Who will read this?"
header: "Audience"
options:
  - label: "A developer joining the team"
    description: "Assumes general programming knowledge, no project-specific context"
  - label: "A senior engineer reviewing the architecture"
    description: "Assumes deep technical knowledge, wants to understand design rationale"
  - label: "Future me"
    description: "Personal documentation for a system I'll forget the details of"
  - label: "Open source contributors"
    description: "External developers who want to understand the project well enough to contribute"

Step 2: Deep Reading

Read the codebase thoroughly. This isn't a skim — you're looking for the *story*. Investigate in this order:

  1. The problem — What does this software exist to solve? Check README, docs, comments, commit messages, issue trackers.
  2. The domain model — What are the core abstractions? What do they represent in the real world?
  3. The architecture — How do the pieces fit together? What are the boundaries?
  4. The flows — Trace 2-3 primary operations end to end. These become narrative throughlines.
  5. The design decisions — Where are the interesting tradeoffs? Look for:

- Comments that explain "why" (not "what") - Places where simpler approaches were avoided — there's usually a reason - Abstractions that seem overbuilt — they often encode hard-won lessons - Configuration and feature flags — they reveal the axes of variation the authors anticipated

  1. The historygit log for major refactors, pivots, or rewrites. These are plot points in the story.

Step 3: Find the Narrative Thread

Before writing, identify:

  • The opening — What idea or problem should the reader encounter first? This is rarely the entry point of the code. It's the *motivation*: the problem that makes the rest of the code necessary.
  • The arc — What's the natural progression of understanding? Usually: problem → domain → core abstraction → how it works → how edge cases are handled → how it connects to the rest of the system.
  • The key decisions — 3-5 design choices that define the system's character. These are the moments in the narrative where you pause the code walkthrough and say "here's why."
  • The sections — Break the narrative into numbered sections using the § symbol: §1, §2, etc. (not "S1" or "Section 1" — the section sign § is a deliberate stylistic choice from Knuth's TeX tradition). Each section should have a name that describes the *idea*, not the file. "§4. Why events, not callbacks" is better than "§4. The EventEmitter class."

Step 4: Write the Guide

Follow the template in references/guide-template.md. Key principles:

Voice and tone:

  • Write in a warm, direct, first-person-plural voice ("we," "our"). The guide is a conversation between the author and the reader, not a specification.
  • Be specific and concrete. "This handles edge cases" is empty. "This catches the case where a user submits a form twice before the first request completes" is useful.
  • Embrace the author's perspective. Knuth didn't pretend to be objective — he explained what *he* was thinking and why. Do the same. "I chose X over Y because..." or "The team decided to..." with real reasons.

Code excerpts:

  • Show only the code relevant to the point being made. Trim aggressively. If a function is 40 lines but the interesting part is 8 lines, show the 8 lines with a note about what the rest does.
  • Always include the file path and line range above the code block so the reader can find it.
  • Annotate the code. Don't just show it and move on — point out the significant details. "Notice that retries is passed as a parameter, not read from config. This makes testing deterministic (§12)."
  • Use cross-references (§N) when code in one section relates to concepts explained in another.

Section structure:

  • Open with prose that explains the idea and its motivation
  • Show the relevant code
  • Explain the design reasoning — alternatives considered, constraints, tradeoffs
  • Close with a transition that connects to the next section. Every section ending should bridge to what comes next — this is what makes the guide read as a continuous narrative rather than a series of isolated entries. Examples: "With this normalization in place, we can now trust that the reducer (§7) receives clean input." or "This raises a question: how does the system handle the case where...? That's the subject of §9."

Cross-references:

  • Use the § symbol for all cross-references: "as we saw in §3", "this connects to the retry logic in §12", "the transport layer (§8) hides this complexity". The § symbol is load-bearing — it's the visual cue that tells the reader "this refers to another section in this document."
  • Cross-references are what make the document a *web* rather than a linear sequence. Use them generously — a good literate guide has at least 2-3 cross-references per section, weaving backward to reinforce earlier ideas and forward to foreshadow upcoming ones.

Diagrams:

  • Include Mermaid diagrams where they aid understanding — typically one system-level overview near the beginning, and sequence diagrams for complex flows
  • Diagrams supplement the prose; they don't replace it

Step 5: Review the Draft

Before delivering, read the guide as if you've never seen the codebase:

  1. Does it tell a story? Can you follow the narrative from §1 to the end without getting lost? If any section feels like a non sequitur, it needs a better transition or should be reordered.
  2. Is every code excerpt earning its place? If a code block could be removed without losing understanding, remove it. Each excerpt should illustrate a specific point made in the surrounding prose.
  3. Are the design decisions explicit? The guide should answer "why" at least as often as "how." If you find yourself describing mechanics without motivation, pause and add the reasoning.
  4. Are the cross-references correct? Every §N reference should point to the right section. A broken cross-reference in a literate guide is like a broken hyperlink — it undermines the web of understanding.
  5. Would Knuth approve? This is tongue-in-cheek, but useful: Knuth's literate programs read like essays by a thoughtful author explaining their craft. If the guide reads like generated documentation, revise until it sounds like a person talking to another person about something they care about.

Step 6: Deliver

Write the guide as a single Markdown file. Suggested locations:

  • .claude/docs/literate-guide.md for the full codebase
  • .claude/docs/literate-guide-{feature}.md for a feature-specific guide

Tell the user what you've written and where it is. Mention the section count and the major themes covered so they know what to expect.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.01%
按下载量换算27

Claude

29.95%
按下载量换算25

Cursor

21.34%
按下载量换算17

Gemini CLI

10.15%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills