用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/timmo001/skills --skill handoff命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage stacked branches and pull requests with GitHub's `gh stack` extension. Use when work involves stacked PRs, dependent branches, stack creation, navigation, submission, synchronisation, rebasing, restructuring, linking, or merging.
Develop and migrate OpenCode V2 plugins, clients, SDK hosts, and HTTP API integrations. Use for the OpenCode plugin API, `@opencode-ai/client`, `@opencode-ai/sdk`, server API, Effect entrypoints, or V1-to-V2 API migration.
Control the user's existing Chromium-family browser through the Browser Control extension and local relay with deterministic Playwright. Use when asked to inspect, automate, test, or interact with a visible browser tab; continue an authenticated browser workflow; handle 2FA, passkeys, CAPTCHAs, or payment confirmation; record browser behaviour; or capture an authenticated network flow.
基于 SOC 职业分类
正在显示 SKILL.md
| name | handoff |
| description | Compact the current conversation into a handoff document for another agent to pick up. |
Write a handoff note summarising the current conversation so a fresh agent can continue the work. The note is stored in the repo notes vault alongside regular notes, using the note-writing tool (notes_note_write in OpenCode).
Configuration invariant: every primary agent should have access to the repo notes tools, especially the note-writing tool, so explicit handoff and note workflows are not blocked. Tool access does not imply autonomous note manipulation: use the note-read, note-write, and note-delete tools (notes_note_read, notes_note_write, notes_note_delete in OpenCode) only when a note command or skill instructs it, or when the user explicitly asks to create, update, read, or delete notes. Search-only or narrowly scoped subagents do not need notes access unless their workflow explicitly requires it.
Read Notes path from the <repository> section of the injected <repo-note-context>.
handoff- (e.g. handoff-auth-refactor, handoff-migrate-to-v4).notes_note_write in OpenCode) with:
path: {notes_path}/handoff-{slug}.mdcontent: the full note content (see format below)The note-writing tool adds the frontmatter date: for you.
Do not use the write, bash, or any other tool to write the file — only the note-writing tool.
Before writing a handoff, assess whether the work spans multiple logical phases that would each become a separate branch or PR (e.g. "phase 1: add schema, phase 2: migrate data, phase 3: update UI"). If so, do not create a single combined handoff. Instead:
When reading an existing handoff that describes multiple phases or a large multi-step plan spanning distinct concerns, suggest to the user that subsequent phases be handed off to separate branches. Offer the option to continue with the full plan as a last resort.
When creating handoffs that are part of a related group, use a shared feature prefix so they sort together when listed with notes handoffs:
handoff-{feature}-{phase-slug} — the shared prefix is the key grouping mechanism.
handoff-query-params-calendar-api, handoff-query-params-voice-assistants, handoff-query-params-energy-navigationhandoff-gallery-1-component-shell, handoff-gallery-2-routing, handoff-gallery-3-descriptions"{Feature} Phase {N}: {Phase Title}" for sequential work, or just a descriptive title for async/parallel work.When to number:
This ensures:
notes handoffs groups related handoffs together alphabetically by feature prefix.priority to low, medium, high, or critical based on how urgently the next session should pick the work up. Handoffs without a priority are treated as medium.---
repo: {owner}/{repo}
type: handoff
name: {Short human-readable title, 3–6 words, Title Case}
description: {One sentence describing the handoff purpose}
priority: {low | medium | high | critical, default medium}
tags: [handoff, {2–4 additional kebab-case tags from the conversation}]
---
# {name}
## Summary
{2–4 sentence TLDR of what was accomplished this session}
## Next Focus
{What the next agent should pick up — the primary task, context needed, and any constraints. Derived from user arguments if provided, otherwise inferred from conversation state.}
## Suggested Skills
{Bullet list of skills the next agent should invoke, with a brief reason for each}
## Artifact References
{Bullet list of paths, URLs, commits, PRs, issues, or other artifacts relevant to the handoff. No content duplication — just pointers.}
## Open Threads
{Bullet list of unresolved items, or "(none)" if empty}
## Completion Cleanup
After all work and validation described by this handoff are complete, ask the user to confirm deletion, then remove this handoff with `notes_note_delete`. Do not leave the completed handoff as stale coordination state.
Tell the user exactly:
Saved: repo-notes/{owner}/{repo}/handoff-{slug}.md