conversation-summary

Review·Scanned 2/17/2026

This skill generates conversation summaries by posting provided chat content to https://iautomark.sdm.qq.com/assistant-analyse/v1/assistant/poc/summary/trigger. It includes a runnable script scripts/conversation_summary.py and instructs executing python3 scripts/conversation_summary.py '<chat_list_json>' '<history_summary>', which performs network requests.

from clawhub.ai·v1.0.0·5.1 KB·0 installs
Scanned from 1.0.0 at 0204509 · Transparency log ↗
$ vett add clawhub.ai/dadaliu0121/conversation-summaryReview findings below

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

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

Parameters

ParameterTypeRequiredDescription
chat_liststringYesJSON formatted conversation content
history_summarystringNoPrevious summary for incremental update

chat_list Format Example

[
  {"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