Jump to related tools in the same category or review the original source on GitHub.

AI & LLMs @dadaliu0121 Updated 2/26/2026

Dada Conversation Summary OpenClaw Skill - ClawHub

Do you want your AI agent to automate Dada Conversation Summary workflows? This free skill from ClawHub helps with ai & llms tasks without building custom tools from scratch.

What this skill does

Generate summaries for conversation content with incremental update support.

Install

npx clawhub@latest install dada-conversation-summary

Full SKILL.md

Open original
nameversiondescriptionlicense
conversation-summary1.0.0Generate summaries for conversation content with incremental update support.MIT

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

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

[
  {"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
Original URL: https://github.com/openclaw/skills/blob/main/skills/dadaliu0121/dada-conversation-summary

Related skills

If this matches your use case, these are close alternatives in the same category.