TopRank Skills

Home / Claw Skills / 其他 / conversation-summary
Official OpenClaw rules 15%

conversation-summary

Generate summaries for conversation content with incremental update support.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 conversation-summary 技能。 若已安装,则直接安装 conversation-summary 技能。

Overview

Skill Key
dadaliu0121/chat-conversation-summary
Author
lyue82665-droid
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/dadaliu0121/chat-conversation-summary
Latest Commit SHA
8733b25bbf69a611320660fa8076b844c1532ac3

Extracted Content

SKILL.md excerpt

# Conversation Summary - Agent Instructions

Use this skill to generate summaries for conversation content.

## Usage

When the user requests any of the following:
- "Summarize this conversation"
- "Generate a summary"
- "What did we talk about"

Use the `summarize_conversation` tool to call the summary API.

## How to Call

```bash
python3 scripts/conversation_summary.py '<chat_list_json>' '<history_summary>'
```

### Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| chat_list | string | Yes | JSON formatted conversation content |
| history_summary | string | No | Previous summary for incremental update |

### chat_list Format Example

```json
[
  {"role": "user", "content": "How is the weather today?"},
  {"role": "assistant", "content": "It is sunny, 25 degrees."}
]
```

## Response

The script returns JSON with:
- `status`: "completed" or "error"
- `summary`: Generated conversation summary
- `error`: Error message if failed

## 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

Related Claw Skills