Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

generate-handoff-document生成交接文档

Agent Skill

generate-handoff-document 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

528

周安装

22

GitHub Stars

公开资料未说明

下载量

176
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:generate-handoff-document(生成交接文档)
来源仓库:https://github.com/b-mendoza/agent-skills
仓库路径:skills/generate-handoff-document
安装命令:
npx skills add https://github.com/b-mendoza/agent-skills --skill generate-handoff-document
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/b-mendoza/agent-skills --skill generate-handoff-document

简介

generate-handoff-document 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,原始 SKILL.md 摘录未提供。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Generating Handoff Documents

Create a resumable handoff package for an in-progress analytical session. This orchestrator does three things: think (identify missing inputs and failed gates), decide (choose the next specialist or targeted rerun), and dispatch (send extraction, validation, and assembly work to co-located subagents). The working data lives on disk as structured artifacts; the orchestrator keeps only verdicts, paths, counts, and unresolved questions in context.

Inputs

InputRequiredExample
TARGET_FILEYesdocs/auth-review-handoff.md
SUBJECTNoAuthentication review
TRACKING_FILESNodocs/auth-review-notes.md,docs/plan.md
CONTEXT_SOURCENocurrent conversation or docs/transcript.md

If the user omits optional values, infer them from the session when that is safe. Read ./references/data-contracts.md when deriving sibling artifact paths or checking the structured artifact schemas.

Workflow Overview

  1. context-extractor writes the instruction/Q&A artifact.
  2. insight-documenter writes the insights artifact.
  3. claim-validator optionally writes the claims artifact when tracking files exist.
  4. document-assembler reads those artifacts and writes the final handoff document.
  5. The orchestrator validates the final document and reruns only the failing stage(s).

Subagent Registry

Read a subagent definition only when you are about to dispatch it.

SubagentPathPurpose
context-extractor./subagents/context-extractor.mdCapture the original mandate, instruction amendments, and chronological Q&A history
insight-documenter./subagents/insight-documenter.mdExtract evidence-backed findings, risks, and recommendations from the session
claim-validator./subagents/claim-validator.mdVerify factual claims from external tracking files against primary sources when available
document-assembler./subagents/document-assembler.mdAssemble the final handoff document from the structured artifacts

How This Skill Works

  • Read ./references/data-contracts.md when you need the sibling artifact naming rules, JSON schemas, or final-section requirements.
  • Pass only explicit handoffs between stages: source path, target artifact path, subject, and optional tracking files.
  • Keep only verdicts, file paths, counts, and actionable warnings from each subagent. The detailed payload stays in the artifact files.
  • Treat claims from tracking files as provisional even after validation. The final handoff must preserve that caution for the next agent.
  • Use targeted fix cycles. If source extraction is incomplete, rerun the relevant upstream subagent and the downstream stages that consume it. If the problem is only document coherence or formatting, rerun document-assembler only.
  • Stop and surface the blocker if dispatch is unavailable or if three fix cycles fail to produce a coherent handoff.

Output Contract

All files written by this skill are resumability artifacts. They preserve workflow state for later continuation; they are not product-code changes.

ArtifactProduced byPurpose
TARGET_FILEdocument-assemblerFinal cold-start handoff document
<stem>.context.jsoncontext-extractorOriginal instructions, amendments, and Q&A log
<stem>.insights.jsoninsight-documenterFindings with evidence, category, priority, and verification state
<stem>.claims.jsonclaim-validatorOptional claim-validation checklist and summary

On success, TARGET_FILE contains five sections:

  1. Original Instructions & Scope
  2. Q&A Log
  3. Observations & Insights
  4. Unverified Claims & Validation Checklist
  5. Open Questions & Recommended Next Steps

If no tracking files were provided, Section 4 must explicitly say so and tell the next agent to verify any factual claims independently.

Phase Guide

SituationReference filePurpose
Contract or artifact-path questions./references/data-contracts.mdDerive sibling artifact names and confirm the schemas/required sections

Execution Steps

  1. Confirm TARGET_FILE and derive the sibling artifact paths described in ./references/data-contracts.md.
  2. Dispatch context-extractor with CONTEXT_SOURCE and CONTEXT_FILE.
  3. Dispatch insight-documenter with CONTEXT_SOURCE and INSIGHTS_FILE.
  4. If TRACKING_FILES exist, dispatch claim-validator with TRACKING_FILES, INSIGHTS_FILE, and CLAIMS_FILE. Otherwise record the claims step as skipped.
  5. Dispatch document-assembler with TARGET_FILE, SUBJECT, CONTEXT_FILE, INSIGHTS_FILE, and optional CLAIMS_FILE.
  6. Validate the written handoff against this checklist:

- every required section exists - each insight has rationale plus evidence - the claims section includes either the validation directive or the explicit "no tracking files" note - open questions are listed or explicitly marked resolved - a fresh agent could continue without consulting prior chat history

  1. If a check fails, rerun only the failing stage(s); cap the fix loop at three passes.
  2. Return the final handoff path plus a concise summary of counts, warnings, and open questions.

Example

Derived working artifacts:

  • docs/auth-review-handoff.context.json
  • docs/auth-review-handoff.insights.json
  • docs/auth-review-handoff.claims.json
  1. Dispatch context-extractor
  2. Subagent returns: CONTEXT: PASS File: docs/auth-review-handoff.context.json Q&A exchanges: 4
  3. Dispatch insight-documenter
  4. Subagent returns: INSIGHTS: PASS File: docs/auth-review-handoff.insights.json Insights: 6
  5. Dispatch claim-validator
  6. Subagent returns: CLAIMS: WARN File: docs/auth-review-handoff.claims.json Claims checked: 9 Unverified: 2
  7. Dispatch document-assembler
  8. Subagent returns: HANDOFF: PASS File: docs/auth-review-handoff.md Open questions: 2
  9. Report: "Handoff document written to docs/auth-review-handoff.md. The session is resumable from disk; two open questions remain."

The orchestrator keeps only those summaries and file paths.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.1%
按下载量换算64

Claude

30.93%
按下载量换算54

Cursor

17.64%
按下载量换算31

Gemini CLI

9.47%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills