handoff
Save provenance, decisions, phases, context policy, and next steps as kernel.handoff/v1. Triggers: handoff, save, pause, context, continue later.
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
<skill id="handoff">
<purpose>
Compile the current task into an authoritative, resumable JSON manifest.
The JSON file is CANONICAL. A markdown rendering may be generated for humans but is
never a second source of truth.
Why manifest-first + bounded (EXP-L21): what a decision needs is flat (~50-70k tokens)
regardless of session length; the accumulating transcript is almost pure decoration by
late session. A handoff that says "read the conversation" recreates the waste. A handoff
that pins exact selectors + phases lets the next session reconstruct ONLY the load-bearing
state.
Reference: skills/context-mgmt/SKILL.md
</purpose>
<on_start>
agentdb read-start
</on_start>
<phase id="1_extract" name="EXTRACT STATE">
Capture (these become manifest sections, not prose):
- objective: goal, success_conditions (observable), non_goals
- contract: governing _meta/contracts/ file if one exists, invariants, assumptions,
decisions_accepted (+rationale), alternatives_rejected (+reason, REQUIRED by the schema even
when empty) — every idea the user or you ruled out this session, so the next session never
re-proposes it
- workflow.phases: name each phase of the work; status inherited (done, with evidence)
| required (still to do). Add invalidation_rules: what live-state change would flip an
inherited phase back to required. Rules use typed when.event plus optional
when.path_glob; never prose trigger strings.
- open_threads, warnings (failed approaches — never re-explore silently)
- tier (1/2/3) in identity
</phase>
<phase id="2_gather" name="GATHER EVIDENCE">
git branch --show-current && git rev-parse HEAD && git status --short
git log --oneline -10
agentdb query "SELECT * FROM context WHERE type IN ('contract','checkpoint') ORDER BY ts DESC LIMIT 5"
Pin artifacts: for each file the next session must trust unchanged,
shasum -a 256 <path> → provenance.artifacts[{path, sha256, purpose}].
</phase>
<ask_user>
Use AskUserQuestion when: state extraction complete, before writing the manifest
Ask: "Anything to add to the handoff? Blockers, decisions, or context I might have missed?"
Options: looks complete, add context, skip handoff
</ask_user>
<phase id="3_hygiene" name="GIT HYGIENE">
uncommitted: commit with "wip: checkpoint before handoff" or stash (document it)
push: push current branch to remote — a local-only handoff is stranded work
</phase>
<phase id="4_compile" name="COMPILE THE MANIFEST">
Write _meta/handoffs/{name}-{date}.json conforming to schemas/kernel.handoff.v1.schema.json.
Context section — the attention budget is the design center:
- policy.mode: advisory (default) | bounded (extra loads must be justified + ledgered)
| sealed (forbidden globs hook-blocked; for controlled experiments)
- required: SELECTORS, not whole files, wherever a section suffices:
{path, heading: "## X"} · {path, lines: "A-B"} · {path, grep: "pat", context: N}
· {git_diff: "revA..revB"} — each with a reason
- forbidden: globs the resume must NOT touch (sealed mode enforces via guard-context hook)
- budget: target_tokens (aim: boot + manifest + 2-12k selected history, per EXP-L21),
max_tokens (hard stop)
Execution section: entry_phase, entrypoint (the literal first operation), stop_conditions,
checkpoints (when to emit kernel.checkpoint/v1 during the resumed work).
Resume section: one-line continuation prompt:
/kernel:ingest resume from _meta/handoffs/{file}.json
JSON strings are always quoted, so sha/commit fields cannot type-drift (the old YAML
fails validation).
</phase>
<phase id="5_validate" name="VALIDATE — MANDATORY">
"${CLAUDE_PLUGIN_ROOT:-.}/orchestration/manifest/kernel-manifest" validate _meta/handoffs/{file}.json
A handoff that does not validate DOES NOT EXIST. Fix and re-validate before reporting done.
Optional human rendering: a .md next to it, first line
# RENDERED FROM {file}.json — NOT AUTHORITATIVE.
</phase>
<delivery>
kernel-manifest validatepasses (above)- Commit: "docs: handoff manifest for {name}"
- Push to remote
</delivery>
<on_complete>
agentdb write-end '{"skill":"handoff","saved_to":"_meta/handoffs/{file}.json","branch":"X","tier":N}'
# If non-local profile: post handoff summary to GitHub Discussions (Agent Logs category)
# Suggest /kernel:retrospective if learnings accumulated across sessions
</on_complete>
</skill>
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/ariaxhan/kernel-claude/skills/handoff/SKILL.md同一个仓库里的其他技能
同名技能的其他版本
有 2 个不同仓库或目录里都有叫 handoff 的技能。它们内容并不相同,别混用:
- hashgraph-online/awesome-codex-plugins — Create a self-contained temporary handoff document when the user asks to transfer the sess