meisijiya-handoff
Installation
SKILL.md
meisijiya-handoff
Overview
写一个 .omo/handoff/<slug>-<from-phase>-<to-phase>-<date>.md 把当前 session 的状态编码成新 session 可消费的 checkpoint。不是对话压缩(那是 OMO compaction-context-injector hook 的事),不是 plan 决策(那是 wayfinder 的事),不是 commit 续接——是 project-local、user-triggered 的 cross-session 协议。plan 存在时走 plan-scoped 路径,plan 不存在时自动 fallback 到 ad-hoc 模式(slug="ad-hoc"、from_phase/to_phase=null),不询问 user(用户既已显式 /handoff,再问一次"要不要 fallback"是冗余 friction)。
disable-model-invocation: true 强制 checkpoint 由用户显式决定边界;agent 不自动切碎 session。
When to Use
Use when:
- 当前 session 即将结束(用户说"今天先到这" / compaction 即将 / 上下文已用 80%+)
- 明确要切到新 session 继续(明天 / 下周 / 跨人交接)
- 需要把当前 session 的 in-flight 工作(state / decisions / open issues / next-step)编码进一个文件,新 session 可
consumed后接续 - 有 plan-scoped 工作(
.omo/plans/<slug>.md存在)需要跨 session 接续 → 走 plan-scoped 路径(有 phase 锚点) - 无 plan 工作(纯 ad-hoc / 调研 / debug / 临时任务)需要跨 session 接续 → 自动走 ad-hoc fallback(
slug="ad-hoc",无 phase 字段,不询问) - 用户显式
/handoff或disable-model-invocation-compatible 触发词