← Back to Skills Marketplace
211
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install 05
Description
智能内容总结和项目复盘工具
README (SKILL.md)
AI总结复盘技能
智能内容总结和项目复盘工具,支持多种内容类型。
技能描述
提供日报、会议、项目、文章等多种内容的自动总结和复盘功能。提取关键要点、计算目标达成率、识别成功经验和问题。
使用场景
- 用户:"总结今天的日报" → 提取关键任务和完成情况
- 用户:"复盘这个项目" → 分析目标达成率和经验教训
- 用户:"总结这篇文章" → 提取主要观点和论据
- 用户:"整理会议记录" → 提取决策和行动项
工具和依赖
工具列表
scripts/summary_review.py:核心总结复盘模块
API密钥
无(基础版本)
外部依赖
- Python 3.7+(仅使用标准库)
配置说明
支持的内容类型
| 类型 | 说明 | 特殊字段 |
|---|---|---|
| daily | 日报/工作日志 | completed_tasks, issues |
| meeting | 会议记录 | agenda, decisions, action_items |
| project | 项目总结 | goals, achievements, lessons |
| article | 文章总结 | main_idea, key_arguments |
| general | 通用内容 | key_points, summary |
数据存储位置
数据库:~/.ai_summary.db
使用示例
基本用法
from summary_review import AISummaryReview
system = AISummaryReview()
# 内容总结
summary = system.summarize_content(daily_content, 'daily', '工作日报')
# 项目复盘
review = system.review_project(project_data)
场景1:日报总结
用户:"总结我今天的工作" 内容:
今天完成了用户模块的开发,修复了3个bug。
遇到了数据库连接问题,已经解决。
明天计划开始订单模块的开发。
AI:
summary = system.summarize_content(content, 'daily', '工作日报')
# 返回:关键任务、问题、计划
场景2:项目复盘
用户:"复盘AI助手项目"
AI:
project_data = {
'name': 'AI助手项目',
'goals': ['实现对话功能', '添加知识库', '支持多语言'],
'results': ['对话功能已实现', '知识库完成80%', '中文支持已完成'],
'metrics': {'用户满意度': 85, '响应时间': 1.2}
}
review = system.review_project(project_data)
# 返回:目标达成率、成功经验、问题识别、改进建议
场景3:文章总结
用户:"总结这篇技术文章"
AI:
summary = system.summarize_content(article_content, 'article', '文章标题')
# 返回:主要观点、关键论据、结论
场景4:导出Markdown
用户:"导出总结为Markdown文件"
AI:
output_path = system.export_to_markdown(summary_id, "output.md")
# 生成格式化的Markdown文件
复盘维度
项目复盘包含以下维度:
- 目标达成率:自动计算目标完成百分比
- 成功经验:提取已达成目标的亮点
- 问题识别:发现未达成目标和指标异常
- 改进建议:基于分析生成具体建议
- 下一步计划:自动生成后续行动计划
故障排除
问题1:总结不够精准
现象:提取的关键点不够准确
解决:
- 基础版本使用规则提取,可考虑升级到AI增强版(技能06)
- 或使用更清晰的输入格式,分段明确
问题2:数据库文件过大
现象:历史记录太多,数据库文件大
解决:
- 定期清理旧记录
- 或导出重要总结为Markdown后删除数据库记录
问题3:导出格式不符合要求
现象:Markdown格式需要调整
解决:
- 可以编辑导出的Markdown文件
- 或使用自定义模板功能
注意事项
- 总结方式:基于关键词和句子结构,可能不够精准
- 复盘建议:是通用模板,需要根据实际情况调整
- 人工判断:建议结合人工判断,不完全依赖自动化
- 定期清理:定期清理历史记录,避免数据库过大
- AI增强:如需更强大的总结能力,可使用技能06(AI总结增强版)
Usage Guidance
This skill appears to be a local summarizer that stores results in ~/.ai_summary.db and runs with Python 3.7+. Before installing: (1) review the included Python file to confirm no unwanted modifications (it currently only does text parsing and SQLite writes), (2) be aware that your summaries will be saved to a local DB in your home directory—if content is sensitive consider encrypting or storing elsewhere, (3) note the documentation mismatch (SKILL.md refers to scripts/summary_review.py and an AISummaryReview class that don't match the repo); correct or validate the usage examples to avoid runtime confusion, and (4) run install.sh only if you trust the repository owner since files will be executed locally. Overall the skill is coherent with its stated purpose and contains no obvious exfiltration or over-broad privileges.
Capability Analysis
Type: OpenClaw Skill
Name: 05
Version: 1.0.0
The skill bundle provides a local tool for summarizing text and reviewing project goals using basic Python logic and SQLite storage. Analysis of 'summary_review.py' and 'install.sh' reveals no network activity, no external dependencies, and no unauthorized file access beyond the stated local database (~/.ai_summary.db). The instructions in 'SKILL.md' are consistent with the tool's functionality and do not contain prompt-injection attacks or malicious commands.
Capability Assessment
Purpose & Capability
Name/description (content summarization and project review) match the provided code and files: a summarizer, project reviewer, and local storage implementation. No unrelated binaries, credentials, or cloud services are requested.
Instruction Scope
SKILL.md instructs use of a summarizer and references 'scripts/summary_review.py' and an 'AISummaryReview' class in examples, but the repository contains summary_review.py at the top level and defines ContentSummarizer/ProjectReviewer/SummaryStorage classes instead. Functionality described (summarize, review, export to Markdown) maps to code behavior, but the documentation/code mismatch is confusing and should be corrected before use.
Install Mechanism
There is no remote downloader or package installation. install.sh only checks for python3 and creates a small run.sh wrapper; no external network requests or archive extraction occur. requirements.txt lists optional packages but they are commented out.
Credentials
The skill requests no environment variables or external credentials. It stores data locally in ~/.ai_summary.db (declared in SKILL.md and implemented in code), which is proportionate to its purpose. No unrelated secrets or config paths are requested.
Persistence & Privilege
The skill does not request always:true and contains no mechanisms to modify other skills or system-wide agent settings. It writes its own local SQLite DB (~/.ai_summary.db) which is expected for persistent storage.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install 05 - After installation, invoke the skill by name or use
/05 - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
content-summary v1.0.0 – 初始发布
- 提供智能内容总结和项目复盘工具,支持日报、会议、项目、文章等多种类型内容的自动总结
- 支持提取关键要点、计算目标达成率、识别成功经验和问题
- 支持导出总结为Markdown文件
- 基于Python标准库,无需API密钥和外部依赖
- 数据存储于本地sqlite数据库
- 包含详细使用示例和常见问题排查建议
Metadata
Frequently Asked Questions
What is 05 内容总结?
智能内容总结和项目复盘工具. It is an AI Agent Skill for Claude Code / OpenClaw, with 211 downloads so far.
How do I install 05 内容总结?
Run "/install 05" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 05 内容总结 free?
Yes, 05 内容总结 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 05 内容总结 support?
05 内容总结 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 05 内容总结?
It is built and maintained by nidhov01 (@nidhov01); the current version is v1.0.0.
More Skills