用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill conversation-summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | conversation-summary |
| description | 会话小结 - 输入对话内容,调用API返回会话摘要,支持增量更新历史摘要。 |
| emoji | 📝 |
| author | openclaw |
| version | 1.0.0 |
| license | MIT |
| requires | {"bins":["python3"],"pip":["requests"]} |
| tools | [{"name":"summarize_conversation","description":"对对话内容进行小结,生成会话摘要","parameters":{"type":"object","properties":{"chat_list":{"type":"string","description":"对话内容列表,JSON格式的对话记录,例如:[{\"role\":\"user\",\"content\":\"你好\"}]"},"history_summary":{"type":"string","description":"历史会话摘要(可选),用于增量更新摘要,默认为空"}},"required":["chat_list"]}}] |
Use this skill to generate summaries for conversation content.
When the user requests any of the following:
Use the summarize_conversation tool to call the summary API.
| Parameter | Type | Required | Description |
|---|---|---|---|
| chat_list | string | Yes | JSON formatted conversation content |
| history_summary | string | No | Previous summary for incremental update |
[
{"role": "user", "content": "今天天气怎么样?"},
{"role": "assistant", "content": "今天天气晴朗,气温25度。"}
]
The API returns JSON with:
code: Status code, 0 means successmessage: Status messagedata.summary: Generated conversation summary