Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

session-wrap会话换行

Agent Skill

session-wrap 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

14

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:session-wrap(会话换行)
来源仓库:https://github.com/bahayonghang/my-claude-code-settings
仓库路径:skills/session-wrap
安装命令:
npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill session-wrap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill session-wrap

简介

session-wrap 用于整理当前编码会话的进展、待办事项和后续行动,便于后续恢复工作。

  • 适用于需要记录已完成任务、识别未完成项、总结学习收获并规划下一步操作的场景。
  • 自动检测用户语言并优先处理当前会话范围,聚焦成果与决策,输出结构化回顾内容。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作,建议结合原始 README 验证用法。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

session-wrap

Close out the current coding session in a way that is easy to resume later. Focus on what was actually finished, what is still open, what was learned, and what should happen next.

Language Detection

Detect the user's language from their request:

  • Chinese or mixed Chinese input → output in Chinese (default)
  • English input → output in English
  • Keep identifiers, paths, branch names, and commit hashes in their original form

Core Rules

  • Scope is the current session unless the user explicitly asks for a broader range.
  • Prioritize outcomes, decisions, learnings, and follow-up actions over process chatter.
  • Do not output a chronological 流水账.
  • Do not claim work is completed unless there is evidence in the session, git status, or validation output.
  • If the user asks to write files, commit, or update docs, summarize first and then confirm the action.

Workflow

Step 1: Confirm scope

Default to the current session. If the user already gave a clear wrap-up request, do not ask extra questions.

Clarify only when needed:

  • Current session only or also include earlier sessions
  • Whether to include commit advice
  • Whether to produce a handoff note or just a chat summary

Large or multi-topic sessions:

  • If the session covered 3+ unrelated topics, group by topic rather than by time. Ask the user which topics matter most if grouping is ambiguous.
  • If the conversation context is very long (compacted multiple times), rely more on git evidence and less on conversation recall. State which portions are based on git vs memory.

Step 2: Inspect the working tree

Collect the minimum evidence needed for an accurate summary:

git status --short
git diff --stat
git log --oneline -n 10

If the repository state is not available, say so explicitly and continue with session context.

Step 3: Summarize completed work

Summarize by workstream instead of by timestamp.

Structure:

  • 本次完成 / Completed this session
  • 关键决策 / Key decisions
  • 涉及文件 / 模块 / Files and modules touched
  • 已做验证 / Verification performed

If there were no meaningful code changes, say that clearly instead of inventing results.

Step 4: Extract learnings and open items

Capture what matters for the next session. Focus on signals that would change how someone approaches the work if they resumed it cold.

Worth extracting:

  • A debugging path that was non-obvious (e.g., "the real cause was X, not the apparent Y")
  • A design decision and the reasoning behind it, especially if alternatives were considered
  • An API/library behavior that surprised you or contradicted docs
  • A workaround for a tool limitation or environment issue
  • An unfinished task with enough context to resume without re-investigation
  • A known risk that has no mitigation yet

Not worth extracting:

  • Routine operations that went as expected
  • Tool invocations or file reads that were just part of the process
  • Decisions that are already obvious from the code diff

Structure:

  • Learnings / 经验: 2-5 bullet points, each one sentence
  • Open items / 未完成: task + what's blocking or what's needed next
  • Risks / 风险: risk + current mitigation status (none / partial / mitigated)

Keep this section concise and operational.

Step 5: Offer next actions and commit guidance

When relevant, finish with:

  • Suggested next steps (prioritized)
  • Whether a commit is appropriate now
  • A possible commit message direction
  • Whether additional verification is still needed

Do not auto-commit. Recommend commit timing only when there is enough evidence.

Step 6: Generate handoff note (optional)

If the user asks for a handoff note, or if the session involves substantial unfinished work, generate a structured handoff using the template in $SKILL_DIR/references/handoff-format.md.

The handoff note captures context that would be lost between sessions — decisions made, approaches tried and rejected, environment state, and clear next steps.

Step 7: Save / Export (optional)

Save policy:

  1. If the user explicitly asks to save, write to a file.
  2. If session persistence tools are available (OMC notepad_write_working, Claude Code /export-summary), suggest using them.
  3. Default filename: YYYY-MM-DD-session-wrap.md
  4. If the user does not ask to save, return the summary in chat only.

Output Template

## 本次会话总结

### 已完成
- ...

### 关键决策
- ...

### 涉及文件 / 模块
- ...

### 验证情况
- 已验证:...
- 未验证:...

### 经验与风险
- ...

### 下一步建议
- ...

When Not to Use

  • User wants all of today's sessions summarized → use project-daily-summary
  • User wants a pure commit-based daily report → use commit-daily-summary
  • Current session has almost no real work content, just simple Q&A

Quality Checklist

Before responding, verify:

  • Summary is scoped to the current session unless user asked otherwise
  • Completed work is grouped by workstream, not by timeline
  • Validation is reported honestly
  • Risks and unfinished items are explicit
  • No fake completion, fake commit readiness, or fake verification claims
  • Output language matches the user's language

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.08%
按下载量换算23

Claude

30.76%
按下载量换算19

Cursor

17.37%
按下载量换算11

Gemini CLI

8.63%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills