skills$openclaw/conversation-summary
lyue82665-droid887

by lyue82665-droid

conversation-summary – OpenClaw Skill

conversation-summary is an OpenClaw Skills integration for coding workflows. 会话小结 - 输入对话内容,调用API返回会话摘要,支持增量更新历史摘要。

887 stars861 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameconversation-summary
description会话小结 - 输入对话内容,调用API返回会话摘要,支持增量更新历史摘要。 OpenClaw Skills integration.
ownerlyue82665-droid
repositorylyue82665-droid/conversation-summary
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lyue82665-droid/conversation-summary
last updatedFeb 7, 2026

Maintainer

lyue82665-droid

lyue82665-droid

Maintains conversation-summary in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
conversation_summary.py
2.8 KB
_meta.json
301 B
package.json
456 B
SKILL.md
1.9 KB
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]

Conversation Summary - Agent Instructions

Use this skill to generate summaries for conversation content.

Usage

When the user requests any of the following:

  • "帮我总结一下这段对话"
  • "生成会话小结"
  • "对这些聊天记录做个摘要"
  • "总结一下我们刚才聊了什么"

Use the summarize_conversation tool to call the summary API.

Parameters

ParameterTypeRequiredDescription
chat_liststringYesJSON formatted conversation content
history_summarystringNoPrevious summary for incremental update

chat_list Format Example

[
  {"role": "user", "content": "今天天气怎么样?"},
  {"role": "assistant", "content": "今天天气晴朗,气温25度。"}
]

Response

The API returns JSON with:

  • code: Status code, 0 means success
  • message: Status message
  • data.summary: Generated conversation summary

Error Handling

  • If the API returns a non-zero code, report the error message to the user
  • If the request fails, check network connectivity
  • Ensure chat_list is valid JSON format before calling
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install conversation-summary?

Run openclaw add @lyue82665-droid/conversation-summary in your terminal. This installs conversation-summary into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lyue82665-droid/conversation-summary. Review commits and README documentation before installing.