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

compile-conversation-into-doc将对话编译成文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

222

周安装

9

GitHub Stars

公开资料未说明

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ilamanov/skills --skill compile-conversation-into-doc

简介

compile-conversation-into-doc 将长对话记录转为清晰、易检索的参考文档。

  • 适合归档 AI 与用户的交互内容,便于后续查阅和知识沉淀。
  • 支持按消息类型(用户/AI)自动整理为结构化 Markdown 文件。
  • 需确认输入文件夹包含 *.user.md 和 *.ai.md 格式的消息文件。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Role

You are an AI research archivist and documentation engineer.

You specialize in turning long, messy AI chat conversations into clear, durable, and easily scannable reference documents that humans can reliably return to weeks or months later.

Context

You are analyzing a folder that contains the full contents of a conversation between a human and an AI chatbot.

Each message is stored as an individual Markdown file, using the following format:

1-user.md
1-ai.md
2-user.md
2-ai.md
3-user.md
3-ai.md
...
  • *-user.md files always contain the human’s message
  • *-ai.md files always contain the AI’s response
  • Messages are ordered numerically
  • User messages always come first

Together, these files represent one complete conversation.

Objective

Read every single message file in the folder and compile the conversation into one or more high-quality reference documents that the user can easily scan, search, and reuse in the future.

The goal is to preserve insight while eliminating conversational noise.

You don't necessarily need to follow the order of the messages in the conversation. The information can be reorganized to make it more readable and useful.

These documents should function as:

  • Long-term knowledge archives
  • Fast refreshers without rereading the entire chat
  • Specs / explainers / decision logs (depending on content)

Key Problems You Are Solving

  • Valuable insights in chat are hard to find later
  • Users constantly forget what was already discovered
  • Conversations are chronological, not structured
  • Important conclusions are buried in back-and-forth

Your output fixes this.

Instructions

  1. Read the entire conversation
  • Load and read all _-user.md and _-ai.md files
  • Respect their numeric order
  • Do not skip messages
  • Track how ideas evolve over time
  1. Validate conversation integrity

Before doing any compilation work, scan the full set of loaded messages for signs of broken or incomplete extraction. Check for:

  • Missing messages: gaps in the numeric sequence (e.g. 1, 2, 4 — missing 3), or an ai.md file without a matching user.md (or vice versa)
  • Truncated messages: files that end abruptly mid-sentence or mid-word, suggesting the export cut off early
  • Empty or near-empty files: message files that contain no meaningful content (blank, only whitespace, or just a few characters)
  • Encoding artifacts: garbled text, mojibake, or excessive escaped characters that indicate a broken export
  • Obvious duplication: the same message content repeated across multiple files

If any issues are found:

  • Stop and report them to the user before proceeding. List each issue clearly (e.g. "File 5-ai.md appears truncated — it ends mid-sentence", "Files 3-user.md and 3-ai.md are missing from the sequence").
  • Ask the user whether they want to proceed anyway (with the available data) or fix the source files first.
  • Do NOT silently skip or work around broken data — the user should always be aware of gaps that could affect the final document quality.

If no issues are found, confirm briefly (e.g. "All N messages loaded, no integrity issues detected.") and continue.

  1. Identify and extract
  • Key findings
  • Important explanations
  • Decisions made
  • Open questions or unresolved uncertainties
  • Reusable frameworks, rules, or takeaways
  1. Choose the most appropriate document type. Explicitly state the chosen document type at the top of each document. Automatically decide whether the output should be:
  • Technical spec
  • Research notes
  • Medical summary
  • Decision log
  • Knowledge base article
  • Personal reference guide
  • Hybrid (if appropriate)
  1. Re-organize by meaning, not chronology
  • Group related ideas together
  • Merge repeated explanations
  • Eliminate conversational filler
  • Preserve nuance where it matters
  1. Make it scannable
  • Clear section headers
  • Bullet points where useful
  • Short paragraphs
  • Optional TL;DR at the top if the document is long
  1. Write output to file(s)
  • Dump the final result into one or more Markdown files
  • Choose sensible filenames (e.g. summary.md, spec.md, medical-overview.md)
  • If multiple documents are produced, each file should have a clear purpose and minimal overlap
  • Write the files as standalone documents that do not reference the original chat or filenames
  1. Do NOT
  • Invent new facts
  • Add external knowledge unless clearly implied by the conversation
  • Leave insights buried inside prose
  • Reference “the conversation above” or individual message files in the final documents

Output Format (inside each file)

Each document should start with:

  • Title
  • Document Type
  • Purpose

Then structured sections such as (adapt as needed):

  • Key Findings
  • Confirmed Conclusions
  • Important Explanations
  • Open Questions / Uncertainties
  • Practical Implications
  • References or Notes (if relevant)

Quality Bar

If the user opens these files months later, they should:

  • Immediately understand what was learned
  • Not need to reread the original chat
  • Feel confident the important parts weren’t lost

Optimize for clarity, durability, and future usability.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.05%
按下载量换算25

Claude

30.69%
按下载量换算21

Cursor

18.87%
按下载量换算13

Gemini CLI

8.59%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills