Session Wrap-Up Premium
End sessions with confidence. This skill automates the entire wrap-up process: context preservation, git commit, and PARA second-brain updates.
Why Wrap Up?
Without a proper wrap-up:
- - Today's insights get lost in the chat stream
- Git history is sparse, missing mental-model context
- Open loops forgotten between sessions
- Rehashing old ground wastes tokens
With this skill:
- - Every session yields a structured daily log entry
- MEMORY.md gets updated with lasting learnings
- Git commits capture session summaries
- PARA notes stay current
- New session starts with full context
The Protocol
1. Flush to Daily Log
Append to memory/YYYY-MM-DD.md:
CODEBLOCK0
2. Update MEMORY.md
If significant, add to curated long-term memory:
CODEBLOCK1
3. Update PARA
PARA = Projects, Areas, Resources, Archives.
Updates (automatic):
- -
notes/areas/open-loops.md — mark completed items with ✅, add new unfinished - INLINECODE2 — update progress
- INLINECODE3 — add new reference material
4. Git Commit & Push
CODEBLOCK2
Automatic, no confirmation (by design — you already approved by running wrap_up).
5. Report Summary
Output concise report to user:
CODEBLOCK3
Usage
Command
CODEBLOCK4
Or via slash command in interactive mode: INLINECODE4
Configuration
Optional session-wrap-up-config.json:
CODEBLOCK5
Integration with Other Skills
- - memory-stack-core: Wrap-up can optionally archive WAL entries older than 30 days to INLINECODE6
- git-status-summary: Used to detect changes for commit
- agent-oversight: Wrap-up logs its outcome to learnings.md
Premium Features (vs Free Alternatives)
- - Auto-PARA updates — free versions just flush logs
- Git push automation — avoids manual steps
- Template engine — customizable sections
- CI integration — can run as GitHub Action on schedule (future)
Pricing
$29 one-time. Includes lifetime updates.
Based on ClawHub's session-wrap-up skill, enhanced with PARA and git automation.
会话总结高级版
自信地结束会话。此技能自动化整个总结流程:上下文保存、Git提交以及PARA第二大脑更新。
为什么要总结?
没有适当的总结:
- - 今日的见解会淹没在聊天流中
- Git历史记录稀疏,缺少心智模型上下文
- 未完成事项在会话间被遗忘
- 重复讨论旧问题浪费资源
有了此技能:
- - 每次会话都会生成结构化的每日日志条目
- MEMORY.md会更新持久性学习内容
- Git提交记录捕获会话摘要
- PARA笔记保持最新
- 新会话从完整上下文开始
协议
1. 写入每日日志
追加到memory/YYYY-MM-DD.md:
markdown
2026-04-01 会话摘要
关键主题:
- - 配置了qwen设置
- 构建了压缩持久化WAL
- 分析了Claude Code泄漏
决策:
- - 对所有新技能使用ToolRegistry模式
- 采用mcp-server-discovery构建工具生态系统
有效的代码/配置:
- - ~/.qwen/settings.json模板
- memory-stack-core WAL实现
已解决的问题:
- - Go在PRoot中构建段错误 → 决定外部构建
经验教训:
- - 分层内存对长期运行的代理至关重要
- 权限门控防止意外删除
未完成事项:
- - 在外部机器上构建ollama二进制文件
- 将ToolRegistry集成到核心代理中
2. 更新MEMORY.md
如果内容重要,添加到精选的长期记忆中:
markdown
2026-04-01
偏好: 行动胜于解释;简洁沟通;以收入为导向的决策
学到: 从claw-code泄漏中发现的ToolRegistry模式提供了清晰的工具清单系统
决定: 第二阶段采用:用基于注册表的执行替代临时技能调用
待办: 需要外部构建服务器来编译Rust/Go二进制文件
3. 更新PARA
PARA = 项目、领域、资源、档案。
自动更新:
- - notes/areas/open-loops.md — 用✅标记已完成项目,添加新的未完成项目
- notes/projects// — 更新进度
- notes/resources/ — 添加新的参考资料
4. Git提交与推送
bash
git add -A
git commit -m 总结:2026-04-01 会话摘要
git push
自动执行,无需确认(设计如此——你已通过运行wrap_up批准)。
5. 报告摘要
向用户输出简洁报告:
会话总结完成 ✅
已捕获到每日日志:(12条记录)
已更新: MEMORY.md(添加了3项)
PARA: notes/areas/open-loops.md(标记2项完成,添加1项新内容)
已提交: 总结:2026-04-01 会话摘要
已推送: origin main
准备开始新会话!⚡
使用方法
命令
bash
tool(session-wrap-up-premium, wrap_up, {
commit_message: 总结:自动生成,
push: true,
update_para: true
})
或在交互模式下通过斜杠命令:/wrap_up
配置
可选session-wrap-up-config.json:
json
{
git: {
auto_push: true,
branch: main
},
para: {
enabled: true,
openloopsfile: notes/areas/open-loops.md
},
template: {
sections: [topics, decisions, code, problems, lessons, loops]
}
}
与其他技能的集成
- - memory-stack-core:总结功能可选择将超过30天的WAL条目归档到memory/wal-archive.jsonl
- git-status-summary:用于检测提交的变更
- agent-oversight:总结功能将其结果记录到learnings.md
高级功能(对比免费替代方案)
- - 自动PARA更新 — 免费版本仅记录日志
- Git推送自动化 — 避免手动操作
- 模板引擎 — 可自定义章节
- CI集成 — 可定时作为GitHub Action运行(未来功能)
定价
一次性$29。包含终身更新。
基于ClawHub的session-wrap-up技能,增强了PARA和Git自动化功能。