session-handoff

Writes actionable session summaries to a central Obsidian vault and resumes work from the latest note.

Updated Jul 14, 2026
One-click install
npx skills add https://github.com/quanthubbr/tron-claude-config --skill session-handoff-quanthubbr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: session-handoff
Source: https://github.com/quanthubbr/tron-claude-config/tree/main/managed/skills/session-handoff
Command: npx skills add https://github.com/quanthubbr/tron-claude-config --skill session-handoff-quanthubbr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When an AI coding session ends or gets compacted, all context about decisions, pending tasks, and repository state is lost. This Skill preserves that context as a structured, actionable note in a central Obsidian vault so the next agent can resume work without re-reading the entire conversation. ## Core Features & Use Cases - Save mode: Collects real repository state via git and GitHub CLI commands (worktrees, branches, open PRs, uncommitted changes), then writes a structured session note with a "start here" action, literal user decisions, ordered pending checklists, and open risks. - Resume mode: Reads the latest session note for the current repository (or the global last-session pointer), revalidates state with fresh git/gh commands, and executes the pending action. - Secret hygiene: Scans notes for API keys, tokens, and passwords before saving, replacing them with redacted placeholders. - Use Case: Before running /compact on a long debugging session across two repos, ask for a handoff; the next agent opens the note, sees the exact command to run first, and continues without asking what happened. ## Quick Start Ask the AI to save a handoff of the current session to the Obsidian vault before compacting the conversation.

Frequently Asked Questions about session-handoff

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save an AI session handoff before compacting the conversation?▼

Ask for a handoff or session save before running /compact or /clear. The skill collects live git and GitHub CLI state, writes a structured note to your Obsidian sessions vault, and updates the last-session pointer file.

How do I resume work from a previous AI session?▼

Ask to resume the last session. The skill reads the most recent note for the current repository, revalidates branches and PRs with fresh git and gh commands, then executes the note's "start here" action after summarizing what changed.

Where are session handoff notes stored?▼

Notes live in a central Obsidian vault outside any code repository, configured via the sessionsVault field in config.json next to SKILL.md. Each repository gets its own subfolder named after the main checkout directory.

Does the session handoff note include API keys or secrets?▼

No. Before saving, the skill scans the note for API keys, tokens, passwords, and connection strings, replacing values with redacted placeholders and recording only where the secret lives, such as an environment variable name.

Do authorizations from a previous session carry over when resuming?▼

No. Authorizations granted in a prior session are recorded only as history. Actions like commits, pushes, pull requests, or production writes require fresh user confirmation in the new session.