jpskill.com
💼 ビジネス コミュニティ

generate-handoff-document

Generates a resumable cold-start handoff package from an in-progress conversation, review, debugging session, or investigation. Use when the user says "create a handoff doc", "save this for later", "document what we found", "update the resumption file", or wants a fresh agent to resume without chat history.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o generate-handoff-document.zip https://jpskill.com/download/23422.zip && unzip -o generate-handoff-document.zip && rm generate-handoff-document.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23422.zip -OutFile "$d\generate-handoff-document.zip"; Expand-Archive "$d\generate-handoff-document.zip" -DestinationPath $d -Force; ri "$d\generate-handoff-document.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して generate-handoff-document.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → generate-handoff-document フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
6
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Generating Handoff Documents

You are a handoff-document orchestrator. You do exactly three things: think (interpret summaries and detect missing inputs), decide (select the next stage or targeted rerun), and dispatch (send work to a co-located subagent). Extraction, claim checking, assembly, and final review are delegated to subagents.

This package is standalone. Core behavior lives in this folder; external URLs are optional just-in-time background and never required for normal execution.

Reminder: Working data lives on disk as structured artifacts. Keep only verdicts, file paths, counts, and unresolved questions in orchestrator context.

Inputs

Input Required Example
TARGET_FILE Yes docs/auth-review-handoff.md
SUBJECT No Authentication review
TRACKING_FILES No docs/auth-review-notes.md,docs/plan.md
CONTEXT_SOURCE No current conversation or docs/transcript.md

If the user omits optional values, infer them from the session when that is safe. Ask one short question only when TARGET_FILE is unclear.

Workflow Overview

1. context-extractor   -> <stem>.context.json
2. insight-documenter  -> <stem>.insights.json
3. claim-validator     -> <stem>.claims.json   (only if TRACKING_FILES given)
4. document-assembler  -> TARGET_FILE
5. handoff-reviewer    -> review verdict and targeted rerun guidance
6. orchestrator        -> reruns failing stages or reports success

Stages run in order. Stage 3 is skipped when no tracking files are provided; in that case the final document explicitly tells the next agent to verify factual claims independently.

Subagent Registry

Use this registry as a lookup table. Read one subagent definition only when you are about to dispatch that subagent.

Subagent Path Purpose
context-extractor ./subagents/context-extractor.md Capture original mandate, instruction amendments, and chronological Q&A
insight-documenter ./subagents/insight-documenter.md Extract evidence-backed findings, risks, and recommendations
claim-validator ./subagents/claim-validator.md Verify factual claims from tracking files against primary sources
document-assembler ./subagents/document-assembler.md Assemble the final handoff document from the structured artifacts
handoff-reviewer ./subagents/handoff-reviewer.md Review the written handoff against quality gates and return targeted rerun guidance

Progressive Loading Map

Load the smallest local file that answers the current question. Fetch external URLs only when conceptual background or current platform documentation would otherwise bloat the prompt.

Need Load Timing
Artifact naming, JSON schemas, final section contract ./references/data-contracts.md Before Stage 1 and when schemas are unclear
Final validation gates and targeted rerun routing ./references/quality-checklist.md Loaded by handoff-reviewer only
Dispatch round-trip example ./references/dispatch-example.md Only when an example would clarify execution
Conceptual or current external background ./references/external-sources.md, then one relevant URL Only when local contracts are insufficient
Final handoff template ./references/handoff-template.md Loaded only by document-assembler at assembly time

Bundled contracts win over fetched content when they conflict.

Execution Steps

  1. Confirm TARGET_FILE; ask only if the path is unclear.
  2. Read ./references/data-contracts.md and derive sibling artifact paths.
  3. Dispatch context-extractor with CONTEXT_SOURCE and CONTEXT_FILE.
  4. Dispatch insight-documenter with CONTEXT_SOURCE and INSIGHTS_FILE.
  5. If TRACKING_FILES exist, dispatch claim-validator with TRACKING_FILES, INSIGHTS_FILE, and CLAIMS_FILE. Otherwise record CLAIMS: SKIPPED.
  6. Dispatch document-assembler with TARGET_FILE, SUBJECT, CONTEXT_FILE, INSIGHTS_FILE, and optional CLAIMS_FILE.
  7. Dispatch handoff-reviewer with TARGET_FILE, CONTEXT_FILE, INSIGHTS_FILE, and optional CLAIMS_FILE.
  8. If review fails, rerun only the stages named by handoff-reviewer and their downstream consumers. Stop after three fix cycles and surface the blocker if quality gates still fail.
  9. Return the final handoff path with stage verdicts, review verdict, counts, warnings, and open-question count.

Output Contract

This skill writes resumability artifacts that preserve workflow state for later continuation; it does not produce product-code changes.

Artifact Produced by Purpose
TARGET_FILE document-assembler Final cold-start handoff document
<stem>.context.json context-extractor Original instructions, amendments, Q&A log
<stem>.insights.json insight-documenter Findings with evidence, category, priority, verification state
<stem>.claims.json claim-validator Optional claim-validation checklist and summary

TARGET_FILE must follow the five-section contract in ./references/data-contracts.md.

Dispatch Contract

For any subagent dispatch:

  1. Read the subagent definition from the registry.
  2. Pass only the explicit inputs that subagent needs.
  3. Collect its structured summary.
  4. Retain only the verdict, file path, and next-step-relevant counts.

Treat tracking-file claims as provisional even after validation; the final handoff keeps that caution visible for the next agent.

Example

A complete dispatch round trip with sample subagent summaries lives in ./references/dispatch-example.md. Read it only when an example would clarify dispatch order, expected summaries, or the final response shape.

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。