handoff-receiver
Receive a prior session handoff and continue execution safely by validating repo state, resuming from next steps, and refreshing the handoff artifact.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Receive a prior session handoff and continue execution safely by validating repo state, resuming from next steps, and refreshing the handoff artifact.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guideline for directly editing 3D-printing project files (.3mf), verified against BambuStudio specifically: cutting or otherwise modifying mesh geometry, wiring objects into the 3MF XML correctly, arranging multiple print plates in BambuStudio's shared multi-plate coordinate system, and setting print/project parameters. Use whenever a user asks to edit, cut, split, merge, reposition, rearrange, or reconfigure a BambuStudio .3mf project file by hand instead of through the slicer GUI. Other slicers (OrcaSlicer, PrusaSlicer, etc.) use similar-looking .3mf files but are NOT verified to follow the same plate-offset math or config schema — treat this skill's multi-plate guidance as BambuStudio-specific.
Upgrade Dokploy on a VPS running Docker Swarm. Covers version check, breaking-change review, pre-flight health checks, the official install.sh update path, host-mode port conflict handling, and post-upgrade verification. Use when the user asks to upgrade/update Dokploy on any fleet host.
Final pre-launch audit for a multilingual marketing landing page — SEO, AEO/AIO (structured data for AI search), GEO, and EU compliance (GDPR/ePrivacy). Catches the common failures that ship to production when a landing page is built on top of a shared app layer.
Triage and route anything that comes up during a session — bugs, ideas, improvements, small fixes — to the right place. Use when the user or you notice something that may not belong to the current task.
End-of-session workflow for shipping changes, consolidating memory, applying self-improvements, and preparing publishable outputs with safety gates.
Rewrite English AI-generated or AI-polished drafts into natural, credible, human text. Use when the user asks to de-AI, remove AI tells, humanize English writing, make a draft sound human / less like ChatGPT, kill the AI smell, or fix tweets, replies, threads, LinkedIn posts, landing-page copy, cold emails, newsletters, blog posts, essays, bios, or marketing copy that reads machine-written. Improves authenticity and editorial quality. Do NOT use for pure translation, pure summarization, or factual research alone. Never promise to bypass AI detectors, fabricate facts/sources/experiences, or optimize for detector scores.
| name | handoff-receiver |
| description | Receive a prior session handoff and continue execution safely by validating repo state, resuming from next steps, and refreshing the handoff artifact. |
| license | MIT |
| allowed-tools | Bash, Read, Write, Glob, Grep |
| metadata | {"version":"1.3.2","category":"session-memory","triggers":["take over this handoff","continue from handoff","resume from handoff","pick this up from previous session","handoff receiver"],"license":"MIT","tags":["session-memory","handoff","continuation","workflow"],"hermes":{"tags":["session-memory","handoff","continuation","workflow"]}} |
Use this skill when you are the new skill/agent receiving work from a previous session handoff file.
Goal: continue delivery with minimal drift, no scope expansion, and clear state recovery.
.trellis/handoffs/CURRENT when present.docs/handoffs/CURRENT when present.CURRENT in project root.INDEX.md in the same handoff directory.if [ -f ".trellis/handoffs/CURRENT" ]; then
cat .trellis/handoffs/CURRENT
echo ".trellis/handoffs/INDEX.md"
elif [ -f "docs/handoffs/CURRENT" ]; then
cat docs/handoffs/CURRENT
echo "docs/handoffs/INDEX.md"
elif [ -f "CURRENT" ]; then
cat CURRENT
echo "INDEX.md"
else
[ -f handoff.md ] && echo "handoff.md"
fi
If no handoff is found, stop and ask one minimal question requesting the handoff path.
Read INDEX.md and classify streams from the table only.
status: in_progress or status: open and matches CURRENT → active. Proceed.status: in_progress and does not match CURRENT → conflict. Ask the user
which stream is authoritative.status: paused → parallel stream. Surface it in takeover output, but do
not execute it.status: done or status: superseded → archive. Skip.status: orphan → open only that file's Goal and
Next Steps, then ask the user whether to mark it paused, merge it,
supersede it, or leave it as-is.CURRENT points to a handoff missing from INDEX.md, treat that as an
index drift bug and ask one focused question before continuing.Do not scan the handoff directory in the normal path. Directory scans are reserved for index repair only.
After locating the active handoff, mark it before execution:
status: in_progresstaken_over_at: <now>taken_over_by: handoff-receiverupdated_at: <now>Read these sections in this order:
GoalCurrent StateNext StepsDecisions MadeContext for the Next SessionCapture:
Run objective checks before touching code:
git rev-parse --abbrev-ref HEAD
git status --short
git diff --stat HEAD
git log --oneline -10
Then compare with Files Changed and Commands Run in the handoff.
If mismatch is small and explainable, continue. If mismatch is major (different branch, unrelated deltas, missing files), ask one minimal clarification question before edits.
Next Steps item #1.At pause/completion:
Current State, Next Steps, and Errors Encountered.status: done and clear the matching CURRENT pointer.INDEX.md row to status: done.status: paused, move CURRENT to the new file, and update both rows in INDEX.md.status: superseded, write superseded_by: <new path>, move CURRENT to the new file, and update both rows in INDEX.md.Do not create extra summary files unless explicitly requested.
When reporting takeover status, respond with:
Using handoff: <path>
## Goal
<one sentence>
## Current Step
<the exact Next Steps item being executed>
## Parallel Streams
<none OR one line per paused/orphan handoff>
## Blockers
<none OR one-line blocker>
Decisions Made and re-opening settled trade-offs.Next Steps item #1.CURRENT and INDEX.md already
provide the active stream and compact metadata.Index state:
CURRENT → .trellis/handoffs/2026-05-22-12-40-open-core.mdINDEX.md row for onboarding says status: orphanINDEX.md row for billing says status: pausedExpected takeover flow:
CURRENT and detect the active path.INDEX.md and surface the paused billing stream.Goal and Next Steps.