handoff — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited handoff (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Prevent context loss between agent or developer sessions. The handoff doc captures what happened, what was tried, what's unresolved, and what to do next — so the next session starts informed, not from scratch.
This is not a PR summary. It captures debugging context, failed attempts, and open questions that a diff cannot show.
Run in parallel:
git log --oneline -10 — recent commitsgit diff HEAD — any uncommitted changesgit status — working tree stateIdentify:
Write to two paths simultaneously:
| Path | Purpose |
|---|---|
.cursor/session-handoff.md | Machine-readable — auto-injected at next session start |
HANDOFF.md (repo root) | Human-readable — shareable, committable |
Both files get identical content. .cursor/session-handoff.md is picked up by the sessionStart hook so the next Cursor session starts warm without the developer having to do anything.
# Handoff — <date>
## Goal
<One sentence: what this session set out to accomplish.>
## Status
<Completed / In Progress / Blocked>
## What was done
- <bullet: file/feature changed and why>
- <cite files as `path/to/file.ts:line` where relevant>
## What was attempted but did not work
| Approach | Why it failed |
|----------|--------------|
| <attempt> | <root cause or blocker> |
## Open issues
- [ ] <unresolved item — be specific>
- [ ] <open question that needs an answer>
## Recommended next steps
1. <concrete action with context>
2. <second action>
## Relevant files
- `<path>` — <one-line description of relevance>
## Skills that may help
- <skill-name> — <why relevant>Tell the user: both files written, key open issues, and recommended first next step. Remind them that .cursor/session-handoff.md will be auto-loaded at the next session start.
.cursor/session-handoff.md — auto-injected next session (do not commit this file; add to .gitignore)HANDOFF.md — shareable summary for the team or future self~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.