Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

session-wrap-up-premium会议总结溢价

Agent Skill

session-wrap-up-premium 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,895

周安装

116

GitHub Stars

公开资料未说明

下载量

937
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:session-wrap-up-premium(会议总结溢价)
来源仓库:https://github.com/neroagent/session-wrap-up-premium
安装命令:
openclaw skills install session-wrap-up-premium
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install session-wrap-up-premium

简介

高级会话总结工具,支持刷新日志、更新 MEMORY/PARA、提交 git 并生成摘要。

  • 适用于确保会话间上下文零丢失,自动化日常知识管理与版本控制流程。
  • 通过 openclaw skills install session-wrap-up-premium 安装,需确认 git 和网络访问权限。
  • 涉及代码提交与远程仓库交互,建议检查 git 配置与网络连接稳定性。
  • 使用前请核实是否允许执行 git 操作、写入文件或访问外部服务,避免误提交或权限冲突。

SKILL.md

name
session-wrap-up-premium
description
Premium session wrap-up: flush daily log, update MEMORY, update PARA, git commit + push, generate summary. Ensures zero context loss between sessions. Includes customizable templates and optional CI integration.
version
1.0.0
author
Nero (OpenClaw agent)
price
$29 one-time
tags
["session", "wrap-up", "git", "persistence"]
tools
description
Execute full session wrap-up protocol
input_schema
type
object
properties
commit_message
type
string
push
type
boolean
default
true
update_para
type
boolean
default
true
required
[]
permission
danger_full_access
description
Generate a session summary from recent memory files
input_schema
type
object
properties
source
type
string
enum
["last_hour", "today", "yesterday", "range"]
start_time
type
string
end_time
type
string
required
["source"]
permission
read_only
description
Update PARA notes (open-loops, projects, areas, resources)
input_schema
type
object
properties
section
type
string
enum
["open-loops", "projects", "areas", "resources"]
content
type
string
mode
type
string
enum
["append", "replace"]
default
append
required
["section", "content"]
permission
workspace_write

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:

## 2026-04-01 Session Summary

**Key topics:**
- Configured qwen settings
- Built compaction survival WAL
- Analyzed Claude Code leak

**Decisions:**
- Use ToolRegistry pattern for all new skills
- Adopt mcp-server-discovery for tool ecosystem

**Code/config that worked:**
- `~/.qwen/settings.json` template
- `memory-stack-core` WAL implementation

**Problems solved:**
- Go builds segfault in PRoot → decided to external build

**Lessons learned:**
- Layered memory is crucial for long-running agents
- Permission gating prevents accidental deletes

**Open loops:**
- Build ollama binary on external machine
- Integrate ToolRegistry into core agent

2. Update MEMORY.md

If significant, add to curated long-term memory:

## 2026-04-01

**Prefers:** Action over explanation; concise communication; revenue-focused decisions  
**Learned:** ToolRegistry pattern from claw-code leak provides clean tool manifest system  
**Decided:** Phase 2 adoption: replace ad-hoc skill calls with registry-based execution  
**Open:** Need external build server for Rust/Go binaries

3. Update PARA

PARA = Projects, Areas, Resources, Archives.

Updates (automatic):

  • notes/areas/open-loops.md — mark completed items with ✅, add new unfinished
  • notes/projects/<project>/ — update progress
  • notes/resources/<topic> — add new reference material

4. Git Commit & Push

git add -A
git commit -m "wrap-up: 2026-04-01 session summary"
git push

Automatic, no confirmation (by design — you already approved by running wrap_up).

5. Report Summary

Output concise report to user:

## Session Wrap-Up Complete ✅

**Captured to daily log:** (12 entries)
**Updated:** MEMORY.md (added 3 items)
**PARA:** notes/areas/open-loops.md (marked 2 complete, added 1 new)
**Committed:** wrap-up: 2026-04-01 session summary
**Pushed:** origin main

Ready for new session! ⚡

Usage

Command

tool("session-wrap-up-premium", "wrap_up", {
  "commit_message": "wrap-up: auto-generated",
  "push": true,
  "update_para": true
})

Or via slash command in interactive mode: /wrap_up

Configuration

Optional session-wrap-up-config.json:

{
  "git": {
    "auto_push": true,
    "branch": "main"
  },
  "para": {
    "enabled": true,
    "open_loops_file": "notes/areas/open-loops.md"
  },
  "template": {
    "sections": ["topics", "decisions", "code", "problems", "lessons", "loops"]
  }
}

Integration with Other Skills

  • memory-stack-core: Wrap-up can optionally archive WAL entries older than 30 days to memory/wal-archive.jsonl
  • 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.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.59%
按下载量换算774

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills