Install
$ agentstack add skill-cloud99277-kitclaw-conversation-distiller ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Conversation Distiller
将当前对话提炼为一份结构化 Markdown 笔记,并把它写入 L3 知识库。
它的职责不是保存完整聊天记录,而是把可复用的结论、排查过程和最终方案沉淀为长期知识。
什么时候用
- 用户说“保存这段对话”“提炼一下并保存”“把刚才的问答整理成笔记”
- 当前问题已经解决,值得作为 L3 文档长期保留
- 你希望这次对话能被后续的
knowledge-search检索到
快速开始
推荐始终使用 JSON mode,避免 shell 转义问题:
cat >/tmp/distill.json /40_Agent_Notes/distilled-conversations/`
## 建议的提炼结构
```markdown
## 背景与起因
[具体问题、错误、环境]
## 排查/探索过程
1. [步骤]
2. [步骤]
## 关键转折
[哪一步揭示了问题本质]
## 最终方案
[最终做法 + 原理]
## 延伸知识点
- [可选]
自动入库行为
当输出目录位于已配置的 L3 路径下时,脚本会自动:
- 运行
ensure-knowledge-frontmatter.py - 运行
rag-engine/knowledge_index.py --update
这样新保存的笔记会尽快进入 L3 检索链路。
环境变量
可选环境变量:
CONVERSATION_DISTILLER_BASE_DIR:覆盖默认输出目录CONVERSATION_DISTILLER_KNOWLEDGE_ROOT:覆盖自动识别的知识根目录CONVERSATION_DISTILLER_DB_PATH:覆盖 LanceDB 索引路径CONVERSATION_DISTILLER_AUTO_INGEST:设为false可关闭自动入库CONVERSATION_DISTILLER_INDEXER_PYTHON:覆盖 indexer 的 Python 解释器
设计约束
- 脚本本身零外部依赖(stdlib only)
- 默认只处理“当前对话”的提炼,不负责历史对话检索
- 自动入库依赖
KitClaw自带的memory-manager和rag-engine - 对话正文建议通过 JSON 文件传递,不建议用 positional args
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: cloud99277
- Source: cloud99277/KitClaw
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.