agentsclimarketplace

Draft handoff

Skill justinmchoi/ai-toolkit/skills/engineering/draft-handoff

Reusable agent skills and baselines for Claude Code, Codex, and Copilot, with deterministic install/verify tooling

Install
npx -y skills add justinmchoi/ai-toolkit --skill draft-handoff

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Hand a drafted artifact to the user through the clipboard, with post-copy verification and on-demand re-copy, so the user can review it and paste it into a destination the agent must not or cannot write to directly (a review-gated personal vault such as Obsidian, a web form, another application). Trigger phrases include "copy for me", "幫我複製", "pbcopy", "過目再貼". Do NOT use when the agent can write the content into the target repo directly, or for multi-file transfers.

SKILL.md

2.4 KB, as published. Nobody here has run it

Draft Handoff(草稿剪貼簿交接)

定位:剪貼簿是 review gate 的實作。使用者過目後親手貼上,agent 永不直寫目的地。檔案是 source of truth,剪貼簿只是通道。

Trigger

Use this skill when:

  • 起草的內容要進 agent 不該直寫的地方:過 human review gate 的個人 vault(Obsidian)、網頁表單、其他 app
  • 使用者說「copy for me」「幫我複製」「pbcopy」「過目再貼」
  • 使用者回報「貼出來不是那份」(剪貼簿被蓋,走重灌流程)

Do not use when:

  • 內容的目的地是 agent 可以直接寫入的 repo(直接寫檔)
  • 一次要搬多個檔案(用檔案交付,不用剪貼簿)

流程

  1. 落檔:草稿寫進 session scratchpad 的獨立檔案(不用 /tmp),檔名固定;之後所有重灌都用同一份,永不憑記憶重打。
  2. 對外檢查:目的地會被使用者以外的人看到時,先套用對外文稿規則再複製。
  3. 複製:macOS 用 pbcopy < <file>;Windows 用 clip < <file> 或 PowerShell Set-Clipboard
  4. 驗證(每次複製後立即做,並回報使用者):首行、末行、行數三項,macOS 用 pbpaste | head -1pbpaste | tail -1pbpaste | wc -l。任一項對不上:停下、重灌、重驗,不猜原因不硬貼。
  5. 防蓋提醒:告訴使用者現在就貼,中間不要選取或複製任何文字。多數環境選取即覆蓋剪貼簿。
  6. 重灌:使用者回報被蓋掉時,從同一個 scratchpad 檔案重新複製並重新驗證。

為什麼是這個形狀

  • 剪貼簿在複製與貼上之間會被靜默覆蓋(選取複製、其他 app 寫入)。驗證讓事故十秒可發現,重灌讓修復零成本。
  • 「過目再貼」把人的眼睛留在迴路裡。這是本 skill 存在的理由,不是它的限制:目的地有 review gate 時,繞過剪貼簿改為直寫就是繞過 gate。

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.