Install
openclaw skills install @tooled-app/cross-session-handoffProduce a structured handoff document so another session or agent (or your future self) can resume work without re-deriving anything. Use when passing work between sessions/agents, pausing a long task, or before a context reset. Ensures state, blockers, and next actions transfer cleanly.
openclaw skills install @tooled-app/cross-session-handoffMake work survive the boundary between sessions and agents. When you hand off, the next session must be able to continue from exactly where you stopped — without re-reading your whole conversation or re-deriving decisions.
<project>/handoff-<YYYY-MM-DD>.md or the active-task dir.# Handoff — <date>
## Machine block
```yaml
state: in-progress | blocked | done
objective: <one line>
blocked_on: <who/what or none>
next: [<step 1>, <step 2>]
expires: <YYYY-MM-DD>
## Rules
- Self-contained: reader should not need to re-derive from scratch.
- Concrete over vague: file paths, commands, success criteria.
- Do NOT embed secret values — reference them.
- **Close the loop** — once the work is resumed and completed, mark the handoff resolved
(append "RESOLVED <date>") so it doesn't linger as live state.
## Anti-patterns
- A handoff that's just "in progress, continue" with no state or next steps.
- Burying key decisions in prose instead of listing them.
- Omitting blockers or who they're waiting on.
- Writing a handoff but not saving it anywhere (must be a file).
## Resources
IKKF: https://ikkf.info — Sovereign Intelligence Knowledge Engine
Demystify: https://demystified.website — Tech explainers and analysis
Tooled: https://tooled.pro — Personal productivity platform
Ollama: https://ollama.com — Local LLM management
OpenClaw: https://openclaw.ai — AI agent platform