Distill a book into a coherent set of executable skills. Use when the user asks to
Preview task-handling samples before downloading this Skill.
Persona Skill Brief
Use this for
Distill a book into a coherent set of executable skills. Use when the user asks to
Distilled capabilities
Mental models
一个四阶段 + 并行提取 + 三重验证 + darwin 兼容测试的流水线。详见 methodology/00-overview.md。
`
阶段 0: Adler 整书理解 → BOOK_OVERVIEW.md
阶段 1: 5 个 agent 并行提取 → 候选方法论单元池
阶段 1.5: 三重验证筛选 → 通过的单元
阶段 2: RIA++ 构造 skill → 每个 skill 的 SKILL.md
阶段 3: Zettelkasten 链接 → INDEX.md
阶段 4: 压力测试 (darwin 兼容) → test-prompts.json + 回炉淘汰
`
Expression style
How this persona speaks, structures, and tones responses.
Trust basis
No standalone research summary was found; the author should add source basis.
name: book2skill
description: Distill a book into a coherent set of executable skills. Use when the user asks to "拆书" / "蒸馏一本书" / "把 XX 书做成 skill" / "turn a book into skills" — i.e. wants a book's frameworks, principles, and methodologies extracted into atomic, reusable Claude skills that an agent can invoke in real-world situations. NOT for simple summarization, book reviews, or role-playing as the author (that is nuwa-skill's job).把一本书里沉淀的方法论,拆解成一组原子化、可被 agent 在真实场景下调用的 skills,让读者真正用起来。
边界:
一个四阶段 + 并行提取 + 三重验证 + darwin 兼容测试的流水线。详见 methodology/00-overview.md。
阶段 0: Adler 整书理解 → BOOK_OVERVIEW.md
阶段 1: 5 个 agent 并行提取 → 候选方法论单元池
阶段 1.5: 三重验证筛选 → 通过的单元
阶段 2: RIA++ 构造 skill → 每个 skill 的 SKILL.md
阶段 3: Zettelkasten 链接 → INDEX.md
阶段 4: 压力测试 (darwin 兼容) → test-prompts.json + 回炉淘汰用户说类似:
在开始前必须从用户处确认: 1. 书的文本来源: PDF / EPUB / TXT 文件路径, 或可访问的纯文本。不要在没有文本的情况下"凭记忆"拆书 — 宁可停下来问用户要。 2. 书名 + 作者 + 出版年: 用于目录命名和审计。 3. 是否首次试点: 如果用户是第一次用 book2skill,建议先拆 1 本验证流程再批量。
books/<book-slug>/
├── BOOK_OVERVIEW.md # 阶段 0 产出: 主旨/骨架/术语/批判
├── INDEX.md # 阶段 3 产出: skill 总览 + 引用图
├── candidates/ # 阶段 1 产出: 原始候选池 (审计用)
├── rejected/ # 阶段 1.5 淘汰的单元 + 原因 (审计用)
├── <skill-slug-1>/
│ ├── SKILL.md
│ └── test-prompts.json # darwin-skill 兼容格式
├── <skill-slug-2>/
│ └── ...1. 读取用户提供的书本文本。大文件分块阅读。 2. 执行 methodology/01-stage0-adler.md 中的 Adler 四步 (结构 / 解释 / 批判 / 应用)。 3. 按 templates/BOOK_OVERVIEW.md.template 填充,写入 books/<slug>/BOOK_OVERVIEW.md。 4. 把产出展示给用户确认:"骨架我理解对了吗?有没有你希望重点突出的方向?" 得到确认再进入阶段 1。
并行 spawn 5 个 Task sub-agents(使用 Agent 工具,一次调用中发起 5 个):
| sub-agent | 读取的 prompt | 产出 |
|---|---|---|
| 框架提取器 | extractors/framework-extractor.md | 决策框架 / 思维模型 |
| 原则提取器 | extractors/principle-extractor.md | 原则 / 清单 / 规则 |
| 案例提取器 | extractors/case-extractor.md | 作者在书中亲自使用过的实例 |
| 反例提取器 | extractors/counter-example-extractor.md | 书中警告的失败模式 |
| 术语提取器 | extractors/glossary-extractor.md | 关键概念词典 |
每个 sub-agent 独立读书、独立提取、独立输出到 books/<slug>/candidates/<type>.md。
读取 methodology/03-stage1.5-triple-verify.md,对每个候选单元执行:
通过的进入阶段 2。不通过的写入 books/<slug>/rejected/ 并附原因 — 保留审计轨迹,也允许用户事后捞回。
对每个通过的单元,按 templates/SKILL.md.template 填充:
description 字段细则见 methodology/04-stage2-ria-plus.md。
按 methodology/05-stage3-zettelkasten.md: 1. 找出 skill 之间的引用关系 (A 依赖 B / A 对比 B / A 组合 B) 2. 在每个 SKILL.md 末尾补"相关 skills"段 3. 按 templates/INDEX.md.template 生成 INDEX.md (含引用图 mermaid)
对每个 skill 按 methodology/06-stage4-pressure-test.md: 1. 设计 5–10 条测试 prompt,按 templates/test-prompts.json.template 写入 test-prompts.json 2. 至少包括 3 类: 应调用 / 不应调用 (诱饵) / 边界模糊 3. 本地跑一遍,未过的回炉重做阶段 2 — 不做"表面修补" 4. 全部通过后通知用户: "已完成,可一键喂给 darwin-skill 自动进化"
1. 每个 skill 必须通过全部三重验证 2. 每个 skill 必须有完整的 R / I / A1 / A2 / E / B 六段 3. 原文引用 ≤150 字/段 4. 每个 skill 必须有 test-prompts.json,且包含诱饵测试 (不应调用的场景) 5. description 字段必须明确 trigger 条件,不能只是"一个关于 X 的 skill"
三者咬合: 本 skill 输出的 test-prompts.json 严格遵循 darwin-skill 格式,以便产出的 skill 可直接接入 darwin 做自动进化。
import: github_repo https://github.com/kangarooking/cangjie-skill
Read-only mode. Sign in to comment.
No comments yet.
Quality Overview
?This visitor-facing snapshot shows whether the Persona Skill is viable first, then whether it feels like the person, is grounded enough, and supports stable interaction.
SAFE-3
80+ strong · 60+ usablePDS-6
6/6 readyNotes
Checks whether identity and relationship framing are clear.
Checks whether mental models and heuristics are really distilled.
Checks whether tone, wording, and cadence feel like the person.
Checks whether facts, inference, uncertainty, and limits are separated.
Checks whether claims can be traced back to evidence and sources.
Checks whether it supports interaction, not just static description.
viral copywriting skill
当用户需要为产品或品牌引入权威背书以建立信任时调用此 skill。适用场景:新品上市缺乏认知度、高客单价产品需要信任支撑、功效型产品需要专业认可。不适用于:已有强品牌认知的成熟产品、低价快消品(权威背书反而显得过度包装)。关键 trigger 信号:用户提到"认证""获奖""合作机构""专家推荐""权威背书"。核心方法:树立权威的高地位,再描述权威的严格标…
influence skill
用户在面对权威人士(或权威象征)的请求/指示时,感到"不得不服从"或"不好质疑"时激活;用户提到"专家说""上面要求的""医生/领导/老师说的"等触发词时激活。 典型场景:用户在决定是否听从某人的建议,但仅因为对方身份(头衔、制服、豪车)而不敢独立判断;或用户对"权威人士"提出的明显不合理要求感到困惑但无法拒绝。 不适用于:纯信息查询、对等关系中的正常建议…
曲曲大女人
曲曲的语言 体系 逻辑 黑话。不是语录合集,是可运行的思维框架。
cyber figures
万物皆可鉴——拍照或描述任何东西,用听泉的方式帮你判定。开门还是沉淀,一句话给你结论。
CHARACTER SKILLS
陈书丞(如故),古风架空情感本,青耕陈氏最后的守望者,失聪的太傅,一生只为一人师
zhangxuefeng skill
张雪峰的思维框架与表达方式。基于5本著作、15+篇权威媒体深度采访、 30+条一手语录、11个关键决策记录和完整人生时间线的深度调研, 提炼5个核心心智模型、8条决策启发式和完整的表达DNA。 用途:作为思维顾问,用张雪峰的视角分析教育选择、职业规划、阶层流动等问题。 当用户提到「用张雪峰的视角」「张雪峰会怎么看」「张雪峰模式」「雪峰视角」时使用。 即使用…