handoff-continue

仓库创建 2026年7月1日最近提交 21 天前SkillHot 收录 21 天前
▸ 精选理由

适合需要在无持续记忆环境中保存并恢复工作进度的场景。

▸ 风险提示

会读取本地或仓库中的 handoff 文件,注意其中可能包含敏感信息。

这个 Skill 做什么

从先前生成的 handoff 文件加载上下文并在新会话中继续未完成工作。

在全新会话里把之前用 handoff-prepare 保存的交接文件载入并从“下一步”继续推进,载入的 handoff 文件是你唯一的上下文记忆。可以按文件路径或名字片段匹配,没指定则载入最新文件。只负责读取和恢复工作状态,不会生成新的 handoff。

▸ 展开 SKILL.md 英文原文

Use in a fresh session to resume work captured by handoff-prepare. Reads a handoff file and continues from its "Next steps". Takes an optional argument — a file path, or a name to substring-match against handoff filenames; with no argument, loads the newest handoff. Triggers on "handoff-continue", "resume handoff", "continue the handoff".

Skill 开发管理会话交接继续任务文件加载通用
1
Stars
1
Forks
2
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/orzilca/agent-handoff-skills/main/dist/claude/handoff-continue/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/orzilca/agent-handoff-skills/main/dist/claude/handoff-continue/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Handoff Continue

Resume prior work captured by /handoff-prepare. You have **zero** memory of that session — the handoff file is your only context.

This skill only **loads and resumes**. It does not write handoffs (that is /handoff-prepare).

## Resolve which handoff to load

The skill may be invoked with an optional argument ($ARGUMENTS).

1. **Argument that looks like a path** (contains `/`, or exists as a file) → use it directly as the handoff path.
2. **Argument that is a bare name** → substring-match it (case-insensitive) against filenames in `.claude/tmp/handoff/`. If multiple match, pick the **newest** by modification time. If none match, tell the user, list what *is* in the dir, a
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有