nanobot: 2026-09-10 12:48:27

This commit is contained in:
lachtan
2026-09-10 12:48:27 +02:00
parent 30bfaf610a
commit ac81fd70fb
2 changed files with 18 additions and 11 deletions

View File

@@ -28,8 +28,9 @@ Pick a location by scope:
(`.claude/commands/handoff.md` is the older format and still works, but (`.claude/commands/handoff.md` is the older format and still works, but
skills are preferred for new work.) skills are preferred for new work.)
Invoke with `/handoff`. Optionally pass the target filename as an argument Invoke with `/handoff`. The brief is rendered in the chat as a markdown
(e.g. `/handoff HANDOFF.md`); default is `HANDOFF.md` in the repo root. block, ready to copy-paste. If you ask for a file, it saves to `HANDOFF.md`
in the repo root (or a path you give).
## SKILL.md content ## SKILL.md content
@@ -39,8 +40,9 @@ name: handoff
description: > description: >
Write a handoff brief that lets a fresh session (or a different agent) Write a handoff brief that lets a fresh session (or a different agent)
continue this work without this session's conversation history. Run continue this work without this session's conversation history. Run
manually when wrapping up a task or before /clear. Side-effect: writes manually when wrapping up a task or before /clear. Output is a markdown
a file. Not for use mid-task. block in the chat, ready to copy-paste; writes a file only if the user
asks. Not for use mid-task.
disable-model-invocation: true disable-model-invocation: true
--- ---
@@ -98,19 +100,23 @@ Verifiable completion condition(s).
## Procedure ## Procedure
1. Ask the user for the output path if not given; default HANDOFF.md in 1. Draft the brief per the structure above and render it as a single
the repo root. fenced markdown block in the chat, ready to copy-paste.
2. Draft the brief per the structure above. 2. Explicitly point out anything you were unsure about (rule 5) so review
3. Show the draft to the user for review. Explicitly point out anything is fast.
you were unsure about (rule 5) so the review is fast. 3. Only if the user asks, save the brief to a file — default HANDOFF.md
4. On approval, write the file and confirm the path. Suggest a fresh in the repo root (or the path they give) — and confirm the path.
session prompt: "Read <path>. Task: <goal>. Done when: <done-when>." 4. Suggest a fresh session prompt: "Read <path or pasted brief>. Task:
<goal>. Done when: <done-when>."
``` ```
## Notes / tradeoffs ## Notes / tradeoffs
- `disable-model-invocation: true` keeps it manual — a brief is a session - `disable-model-invocation: true` keeps it manual — a brief is a session
boundary action, and auto-triggering mid-task would produce noise. boundary action, and auto-triggering mid-task would produce noise.
- Default output is chat, not a file: the brief is disposable, and a file
that nobody reads later is clutter. File only on explicit request —
the user decides whether the receiving side reads it via path or paste.
- The 30-second user review stays in the loop on purpose: the model writes - The 30-second user review stays in the loop on purpose: the model writes
the brief at its weakest point (full context), so the human is the the brief at its weakest point (full context), so the human is the
fact-checker, not the writer. fact-checker, not the writer.

View File

@@ -43,3 +43,4 @@ Draft uložen: projects/ai/artifacts/session-lifecycle-draft.md. Otevřená otá
- 2026-09-10: Nápad uživatele: /handoff skill pro Claude Code, který sepíše handoff brief pro dalšího agenta. Zhodnoceno jako dobrý (odstraňuje hlavní argument proti „přenos artefakty" — práci navíc na hranici session) a připraven jako artefakt: projects/ai/artifacts/handoff-skill.md (anglicky, instalační cesty personal/project, SKILL.md obsah v markdown fence). - 2026-09-10: Nápad uživatele: /handoff skill pro Claude Code, který sepíše handoff brief pro dalšího agenta. Zhodnoceno jako dobrý (odstraňuje hlavní argument proti „přenos artefakty" — práci navíc na hranici session) a připraven jako artefakt: projects/ai/artifacts/handoff-skill.md (anglicky, instalační cesty personal/project, SKILL.md obsah v markdown fence).
Klíčová designová rozhodnutí: (1) brief je psaný pro čtenáře-agenta se ZERO historií — ne retrospektiva pro člověka: žádná chronologie ani narativ, jen stav+rozhodnutí+vyloučené cesty; neduplikovat repo (reader si přečte kód/diff); nejcennější sekce „Ruled out" — brání dalšímu agentovi chodit do mrtvých endů. (2) disable-model-invocation: true — session boundary akce, ne auto-trigger. (3) user zůstává v loopě jako fact-checker (model píše brief z plného, tedy degradovaného kontextu — rule 5: „if not sure it was decided, mark as open"). (4) Brief je jednorázový; trvalé části odtékají do CLAUDE.md/AGENTS.md/decision logu. Skills = Agent Skills open standard (agentskills.io), takže stejné SKILL.md funguje i v Codexu. Klíčová designová rozhodnutí: (1) brief je psaný pro čtenáře-agenta se ZERO historií — ne retrospektiva pro člověka: žádná chronologie ani narativ, jen stav+rozhodnutí+vyloučené cesty; neduplikovat repo (reader si přečte kód/diff); nejcennější sekce „Ruled out" — brání dalšímu agentovi chodit do mrtvých endů. (2) disable-model-invocation: true — session boundary akce, ne auto-trigger. (3) user zůstává v loopě jako fact-checker (model píše brief z plného, tedy degradovaného kontextu — rule 5: „if not sure it was decided, mark as open"). (4) Brief je jednorázový; trvalé části odtékají do CLAUDE.md/AGENTS.md/decision logu. Skills = Agent Skills open standard (agentskills.io), takže stejné SKILL.md funguje i v Codexu.
- 2026-09-10: Úprava /handoff skillu po review uživatele: default output je markdown blok v chatu ke zkopírování, NE soubor. Soubor jen na explicitní požádání (default HANDOFF.md v repo root). Důvod: brief je jednorázový, soubor bez čtenáře je clutter; navíc paste funguje i tam, kde target agent nemá přístup k souboru (jiný stroj, jiný nástroj). Upravena description (bez "side-effect: writes a file"), Procedure (render do chatu → unsurity callout → file jen on request → navrh fresh prompt) a Notes/tradeoffs.