بنقرة واحدة
dada-conv-summary
Generate summaries for conversation content with incremental update support.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate summaries for conversation content with incremental update support.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
TrustSkill v3.1 - Advanced security scanner for OpenClaw skills with 99% false positive reduction. Detects malicious code, hardcoded secrets, vulnerable dependencies, tainted data flows, backdoors, credential theft, privacy file access, command injection, file system risks, network exfiltration, and sensitive data leaks. Features entropy-based secret detection, OSV vulnerability database integration, taint analysis, smart data flow detection, context-aware documentation scanning, and flexible YAML configuration.
Proactive task state management. Use on EVERY task start, progress update, completion, or failure. Tracks what was requested, what's running (background processes, SSH sessions), what's done, and what's next. Survives session resets. Triggers automatically — not user-invoked.
Generate summaries for conversation content. Helps users quickly get a summary of their chat history with support for incremental updates.
This skill enables IP address masking and accessing hidden services on the Anyone Network. Route requests through the Anyone Protocol VPN network using a local SOCKS5 proxy.
Deploy production LangGraph agents on AWS Bedrock AgentCore. Use for (1) multi-agent systems with orchestrator and specialist agent patterns, (2) building stateful agents with persistent cross-session memory, (3) connecting external tools via AgentCore Gateway (MCP, Lambda, APIs), (4) managing shared context across distributed agents, or (5) deploying complex agent ecosystems via CLI with production observability and scaling.
Git-backed issue tracker for AI agents. Use when managing tasks, dependencies, or multi-step work. Triggers on task tracking, issue management, dependency graphs, ready work queues, or mentions of "beads" / "bd" CLI.
| name | dada-conv-summary |
| description | Generate summaries for conversation content with incremental update support. |
| emoji | 📝 |
| author | dadaliu0121 |
| version | 1.0.0 |
| license | MIT |
| requires | {"bins":["curl"]} |
| tools | [{"name":"summarize_conversation","description":"Generate a summary for the current conversation content.","parameters":{"type":"object","properties":{"chat_list":{"type":"string","description":"JSON formatted conversation list, e.g., [{\"role\":\"user\",\"content\":\"hello\"},{\"role\":\"assistant\",\"content\":\"hi\"}]"},"history_summary":{"type":"string","description":"Previous summary for incremental update (optional, default empty)"}},"required":["chat_list"]}}] |
Use this skill to generate summaries for conversation content.
Activate this skill when the user:
When the user wants a conversation summary, execute this command:
curl -s -X POST "https://iautomark.sdm.qq.com/assistant-analyse/v1/assistant/poc/summary/trigger" \
-H "Content-Type: application/json" \
-d '{"chatList": "${chat_list}", "historySummary": "${history_summary}"}'
chat_list (required):
[{"role":"user","content":"message"},{"role":"assistant","content":"response"}]history_summary (optional):
curl -s -X POST "https://iautomark.sdm.qq.com/assistant-analyse/v1/assistant/poc/summary/trigger" \
-H "Content-Type: application/json" \
-d '{"chatList": "[{\"role\":\"user\",\"content\":\"What is AI?\"},{\"role\":\"assistant\",\"content\":\"AI is artificial intelligence.\"}]", "historySummary": ""}'
The API returns JSON:
{
"code": 0,
"message": "success",
"data": {
"summary": "The generated summary text..."
}
}
code is 0: Extract and display data.summary to the usercode is not 0: Report the error in message to the user