一键导入
handing-off-session
Generate structured session handoff notes for cross-session continuity. Use at end of session or when switching context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate structured session handoff notes for cross-session continuity. Use at end of session or when switching context.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Verify an external or AI-generated security report against the actual codebase before acting on it. Use when handed a scanner PDF, automated teardown, audit report, or bug-bounty submission — classifies every finding CONFIRMED / OVERSTATED / FALSE-POSITIVE / FABRICATED and salvages the real work items.
Creates GitHub Actions for the Marketplace. Use when scaffolding a new action, implementing composite steps, writing BATS tests, or preparing a Marketplace release.
Audit documentation against its declared hierarchy — broken links, duplicates, misplaced content, stale references, single-source-of-truth enforcement. Use for doc health reviews.
Audit README.md files against best practices for repos, accounts, or orgs. Detects missing sections, stale links, inconsistent formatting, and convention violations. Use when reviewing README quality across one or many repos.
Generate or update README.md files across three scopes — repo (with project-type detection), account (GitHub user profile), and org (organization profile). Use when creating, updating, or aligning a README to org conventions.
Audits website accessibility for WCAG 2.2 AA compliance, generating findings and code fixes. Use when reviewing accessibility, keyboard navigation, screen reader compatibility, or inclusive design.
| name | handing-off-session |
| description | Generate structured session handoff notes for cross-session continuity. Use at end of session or when switching context. |
| compatibility | Designed for Claude Code |
| metadata | {"allowed-tools":"Read, Write, Glob, Grep","argument-hint":["output-path"],"context":"inline","stability":"development"} |
Target: $ARGUMENTS
Captures session state as a structured markdown note for the next session to pick up. Stateless — markdown files only, no database, no daemon.
| Position | Name | Required | Default | Description |
|---|---|---|---|---|
| 1 | output-path | no | auto | Where to write the handoff note. |
Default output path: .claude/handoffs/YYYY-MM-DD-<short-description>.md
The <short-description> is a 2-4 word slug derived from the session's primary
focus (e.g. 2026-04-06-session-handoff-skill.md).
Scan conversation — Identify completed actions, decisions, and pending work from the current session context.
Check git state — Run git diff --stat and git log --oneline -10 to
capture recent changes and commits.
Extract signals — Collect decisions made, alternatives rejected, blockers encountered, and open questions.
Ensure output dir — Create .claude/handoffs/ if it doesn't exist.
Write handoff note — Use the template below. Be concise — enough to resume, no more.
# Session Handoff — <date>
## What Was Done
[Completed work, key commits, PRs created/merged]
## What's Pending
[Open tasks, unfinished work, next steps]
## Key Decisions
[Architectural choices, trade-offs made, rejected alternatives]
## Modified Files
[List of files changed with brief reason]
## Blockers
[External dependencies, open questions, things that need user input]
Next session can read the latest handoff:
# Find latest handoff
ls -t .claude/handoffs/*.md | head -1
Or read all recent handoffs to rebuild context across multiple sessions.