save

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

save: File Conversations Into the Wiki

保存:将对话归档到Wiki中

Good answers and insights shouldn't disappear into chat history. This skill takes what was just discussed and files it as a permanent wiki page.
The wiki compounds. Save often.

优质的答案和见解不应埋没在聊天记录中。本技能会将刚刚讨论的内容归档为永久的wiki页面。
wiki的价值会不断积累,请经常保存。

Note Type Decision

笔记类型判定

Determine the best type from the conversation content:
TypeFolderUse when
synthesiswiki/questions/Multi-step analysis, comparison, or answer to a specific question
conceptwiki/concepts/Explaining or defining an idea, pattern, or framework
sourcewiki/sources/Summary of external material discussed in the session
decisionwiki/meta/Architectural, project, or strategic decision that was made
sessionwiki/meta/Full session summary: captures everything discussed
If the user specifies a type, use that. If not, pick the best fit based on the content. When in doubt, use
synthesis
.

根据对话内容确定最合适的笔记类型:
类型文件夹使用场景
synthesiswiki/questions/多步骤分析、对比,或针对特定问题的答案
conceptwiki/concepts/解释或定义某个想法、模式或框架
sourcewiki/sources/会话中讨论的外部资料摘要
decisionwiki/meta/已做出的架构、项目或战略决策
sessionwiki/meta/完整会话摘要:记录讨论的全部内容
如果用户指定了类型,则使用该类型;若未指定,则根据内容选择最匹配的类型。不确定时,默认使用
synthesis
类型。

Save Workflow

保存流程

  1. Scan the current conversation. Identify the most valuable content to preserve.
  2. Ask (if not already named): "What should I call this note?" Keep the name short and descriptive.
  3. Determine note type using the table above.
  4. Extract all relevant content from the conversation. Rewrite it in declarative present tense (not "the user asked" but the actual content itself).
  5. Create the note in the correct folder with full frontmatter.
  6. Collect links: identify any wiki pages mentioned in the conversation. Add them to
    related
    in frontmatter.
  7. Update
    wiki/index.md
    . Add the new entry at the top of the relevant section.
  8. Append to
    wiki/log.md
    . New entry at the TOP:
    ## [YYYY-MM-DD] save | Note Title
    - Type: [note type]
    - Location: wiki/[folder]/Note Title.md
    - From: conversation on [brief topic description]
  9. Update
    wiki/hot.md
    to reflect the new addition.
  10. Confirm: "Saved as [[Note Title]] in wiki/[folder]/."

  1. 扫描当前对话,识别出最有价值的待保存内容。
  2. 询问(若未命名):“这个笔记应该叫什么名字?”名称需简短且描述性强。
  3. 确定笔记类型(参照上述表格)。
  4. 提取对话中所有相关内容,改用陈述性现在时态重写(不要写“用户询问了X,Claude解释了……”,而是直接写内容本身)。
  5. 创建笔记:在对应文件夹中生成带有完整frontmatter的笔记。
  6. 收集链接:识别对话中提及的所有wiki页面,将其添加到frontmatter的
    related
    字段中。
  7. 更新
    wiki/index.md
    :在对应章节的顶部添加新条目。
  8. 追加
    wiki/log.md
    :在文件顶部添加新条目:
    ## [YYYY-MM-DD] save | 笔记标题
    - 类型: [笔记类型]
    - 位置: wiki/[文件夹]/笔记标题.md
    - 来源: 关于[简短主题描述]的对话
  9. 更新
    wiki/hot.md
    以反映新增内容。
  10. 确认:“已保存为[[笔记标题]],路径为wiki/[文件夹]/。”

Frontmatter Template

Frontmatter模板

yaml
---
type: <synthesis|concept|source|decision|session>
title: "Note Title"
created: YYYY-MM-DD
updated: YYYY-MM-DD
tags:
  - <relevant-tag>
status: developing
related:
  - "[[Any Wiki Page Mentioned]]"
sources:
  - "[[.raw/source-if-applicable.md]]"
---
For
question
type, add:
yaml
question: "The original query as asked."
answer_quality: solid
For
decision
type, add:
yaml
decision_date: YYYY-MM-DD
status: active

yaml
---
type: <synthesis|concept|source|decision|session>
title: "笔记标题"
created: YYYY-MM-DD
updated: YYYY-MM-DD
tags:
  - <相关标签>
status: developing
related:
  - "[[提及的Wiki页面]]"
sources:
  - "[[.raw/source-if-applicable.md]]"
---
对于
question
类型,添加:
yaml
question: "原始查询内容"
answer_quality: solid
对于
decision
类型,添加:
yaml
decision_date: YYYY-MM-DD
status: active

Writing Style

写作风格

  • Declarative, present tense. Write the knowledge, not the conversation.
  • Not: "The user asked about X and Claude explained..."
  • Yes: "X works by doing Y. The key insight is Z."
  • Include all relevant context. Future sessions should be able to read this page cold.
  • Link every mentioned concept, entity, or wiki page with wikilinks.
  • Cite sources where applicable:
    (Source: [[Page]])
    .

  • 使用陈述性现在时态,记录知识本身,而非对话过程。
  • 错误示例:“用户询问了X,Claude解释了……”
  • 正确示例:“X通过Y方式工作,核心见解是Z。”
  • 包含所有相关上下文,确保后续会话无需依赖聊天记录也能理解该页面内容。
  • 对所有提及的概念、实体或wiki页面使用wikilinks链接。
  • 适用时标注来源:
    (来源: [[页面名称]])

What to Save vs. Skip

保存与跳过的内容

Save:
  • Non-obvious insights or synthesis
  • Decisions with rationale
  • Analyses that took significant effort
  • Comparisons that are likely to be referenced again
  • Research findings
Skip:
  • Mechanical Q&A (lookup questions with obvious answers)
  • Setup steps already documented elsewhere
  • Temporary debugging sessions with no lasting insight
  • Anything already in the wiki
If it's already in the wiki, update the existing page instead of creating a duplicate.
需要保存:
  • 非显而易见的见解或综合分析
  • 带有理由的决策
  • 花费大量精力完成的分析
  • 可能被反复参考的对比内容
  • 研究发现
需要跳过:
  • 机械问答(答案显而易见的查询类问题)
  • 已在其他地方记录的设置步骤
  • 无持久价值的临时调试会话
  • 已存在于wiki中的内容
若内容已存在于wiki中,请更新现有页面而非创建重复内容。