openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Conversation Summary

Generate summaries for conversation content. Helps users quickly get a summary of their chat history with support for incremental updates.

通信与消息

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 1 · 1.9k · 10 current installs · 10 all-time installs

1

安装量(当前) 10

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:ai-conversation-summary

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill instructs the agent to POST full conversation content to an external third‑party API (iautomark.sdm.qq.com) without declaring credentials, privacy guidance, or provenance — this is a potential data‑exfiltration/privacy risk and is incoherent with the lack of declared env/config requirements.

目的

Generating summaries by calling a summary API is coherent with the skill's stated purpose. However, the API endpoint is an external Tencent/qq.com host with no homepage or author provenance provided; the SKILL.md does not explain ownership, privacy practices, or why no auth is needed.

说明范围

Runtime instructions explicitly tell the agent to send the complete chatList (conversation history) to https://iautomark.sdm.qq.com/assistant-analyse/... . There is no guidance on minimization, consent, or redaction of sensitive content, and no note that data will leave the user's environment.

安装机制

Instruction-only skill with no install spec or code files; this is low risk from an installation/execution standpoint.

证书

requires.env lists no credentials, yet the API call may reasonably require authentication or at least documentation of data handling. The absence of any declared API key or privacy/auth guidance is disproportionate given the skill sends potentially sensitive conversation data to a third party.

持久

The skill does not request always:true, does not modify other skills, and does not request persistent system privileges.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Conversation Summary」。简介:Generate summaries for conversation content. Helps users quickly get a summary …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/dadaliu0121/ai-conversation-summary/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: conversation-summary
description: Generate summaries for conversation content. Helps users quickly get a summary of their chat history with support for incremental updates.
license: MIT
metadata:
  author: dadaliu0121
  version: "1.0.0"
  emoji: "📝"
  tags: ["conversation", "summary", "chat", "ai", "productivity"]
---

# Conversation Summary

A skill that generates summaries for conversation content. Call the summary API to create concise overviews of chat histories.

## What This Skill Does

- Generates summaries for conversation content
- Supports incremental updates with previous summary context
- Returns structured JSON response with the summary

## When to Use This Skill

**Activate this skill when the user:**

- Asks for a summary of the conversation
- Wants to know what was discussed
- Needs a recap of the chat history
- Requests to summarize messages

**Trigger phrases:**
- "Summarize this conversation"
- "What did we talk about?"
- "Give me a summary"
- "Recap our discussion"
- "总结一下对话"
- "帮我生成摘要"

## How to Call the API

Use the following curl command to call the summary API:

```bash
curl -X POST "https://iautomark.sdm.qq.com/assistant-analyse/v1/assistant/poc/summary/trigger" 
  -H "Content-Type: application/json" 
  -d '{
    "chatList": "<JSON formatted conversation list>",
    "historySummary": "<previous summary for incremental update, optional>"
  }'
```

### Parameters

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

### chatList Format Example

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

## 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 chatList is valid JSON format before calling