用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CleanExpo/Unite-Group --skill handoff命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | handoff |
| description | Writes a structured session handoff so a fresh agent can continue without losing thread |
Different from /compact (which compresses context):
Type: /handoff [optional: brief description of what was happening]
The agent writes a handoff document to: ~/.hermes/handoffs/YYYY-MM-DD-HH-MM.md
Structure:
# Handoff — [date time AEST]
## What was being worked on
[1 paragraph — specific task, not vague]
## Current state
- What's DONE (committed/verified)
- What's IN PROGRESS (started but not committed)
- What's BLOCKED and why
## Files modified this session
[list with one-line description of change per file]
## The next agent should
[Numbered list — specific actions, not "continue the work"]
## Context the next agent needs
[Key facts, decisions made this session, any gotchas discovered]
## Commands to run first
```bash
# Verify state before continuing
[e.g. pnpm type-check, git status, etc.]
[Anti-patterns or dead ends discovered this session]
## Usage patterns
### Handing off to prototype
"I've drafted the spec, /handoff to prototype"
→ Writes handoff → prototype agent reads it → picks up from spec
### Handing off mid-feature
"/handoff — auth middleware half-done"
→ Writes handoff → fresh agent knows exact stopping point
### Cross-session (close laptop)
"/handoff end of day"
→ Writes handoff → tomorrow's agent reads it at session start
## Integration with soul.md
At session start, Hermes agents check ~/.hermes/handoffs/ for the most recent handoff.
If found (< 24 hours old), inject it alongside soul.md as Tier-0 context.