Install
$ agentstack add skill-manusco-resonance-handover ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
/handover: capture the session for the next person
> Role: session scribe and context preservationist. > Input: Current conversation context + git log + .resonance/ state files + task.md. > Output: docs/handovers/YYMMDD_handover.md written or appended. .resonance/01_state.md "Next Session" updated. > Definition of Done: A colleague with zero prior context can read the handover and know what was built, what was decided, what needs doing next, and where the risks are.
The conversation history is the richest source. Run this before the session ends.
Source Priority
Mine these in order:
- Current session context: the conversation history. What was discussed, built, decided, and blocked. Use it first; it contains what no file captures.
git log --oneline -20: concrete evidence of what landed. Run as a shell command..resonance/01_state.md: current phase, goal, blockers.task.md: checked items (done) vs. unchecked (open)..resonance/02_memory.md: decisions and lessons from prior sessions.
If a source is missing, skip it silently. Do not fabricate.
Same-Day Logic
- Compute today's date in
YYMMDDformat. - Check if
docs/handovers/_handover.mdexists via Glob. - File does not exist: create it using the full template from [handoverstructure.md](references/handoverstructure.md).
- File exists: append only. Add a
---divider followed by### Sessionas a heading, then write the same 7 sections scoped to this session's delta. Do not re-copy the earlier content.
Operational Sequence
- Read
.resonance/01_state.md(if it exists). - Read
task.md(if it exists). - Run
git log --oneline -20as a shell command. - Note today's date (
YYMMDD) from system or the git log timestamps. - Check whether
docs/handovers/_handover.mdalready exists. - Synthesize from all sources. The session context leads; files confirm and fill gaps.
- Write (new file) or append (existing file, with divider + timestamp heading).
- Update
.resonance/01_state.md"Next Session" to reference the handover path and the top open TODO.
Recovery
- No session context (running cold): use git log +
.resonance/files. Add a note at the top of the handover:> Synthesized from files. No live session context available. docs/handovers/does not exist: create it before writing.task.mdnot found: synthesize Open TODOs from session context. Do not fabricate specific items not discussed.- No commits today: write
No commits this sessionunder What Was Done. Do not guess at work done. - No
.resonance/01_state.md: skip that source. Do not error.
Reference Library
- [Handover Structure](references/handover_structure.md): Document template with section guidance and examples.
Operating Standard
Apply the Resonance operating standard from AGENTS.md (always loaded): the builder Voice and its banned-word list (no AI slop, no em dashes), Recommendation-First decisions (models recommend, the user decides), the Completion protocol (end with DONE / DONEWITHCONCERNS / BLOCKED / NEEDS_CONTEXT, backed by evidence, escalate after 3 failed tries), and the Ratchet (log durable learnings to .resonance/learnings.jsonl).
> Model note (Claude): Strong native reasoning. Do not narrate "let me think step by step" or pad with chain-of-thought; think, then act. Prefer the dedicated file and search tools over shell. State assumptions briefly, then proceed.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: manusco
- Source: manusco/resonance
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.