handoff

Resumes the most recent agent session for the current working directory with open questions first.

3|Updated Oct 25, 2025
One-click install
npx skills add https://github.com/Prismaibrowser/prismspace-web --skill handoff-prismaibrowser
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: handoff
Source: https://github.com/Prismaibrowser/prismspace-web/tree/main/.agents/skills/handoff
Command: npx skills add https://github.com/Prismaibrowser/prismspace-web --skill handoff-prismaibrowser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you return to a project after a break, it is hard to remember exactly where the previous agent session left off, especially which questions were still unanswered. This Skill reconstructs that context by finding the most recent session for your current working directory and summarizing its state. ## Core Features & Use Cases - Session Matching by Directory Boundary: Locates the most recent session whose cwd matches the project using a strict directory-boundary check, so sibling repos like repo-a-staging are never confused with repo-a. - Open Question Surfacing: Leads the resume summary with any unanswered user-facing question found in the session summary or conversation observations. - Context Recall: Pulls supporting details via memory_recall on the session's top concepts, including key files, decisions, and errors, ending with one concrete next step. - Use Case: You open your terminal in /Users/dev/app and ask "where were we?" The Skill finds the last session for that path, reports that refresh token rotation was completed, and reminds you that the revoke-scope decision for logout is still pending. ## Quick Start Ask the assistant "where were we" or "resume" in your project directory and it will summarize the most recent session with its open question and next step.

Frequently Asked Questions about handoff

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

FAQPage Schema
How do I resume a previous agent session in my project?▼

Say "where were we", "resume", or "handoff" in your project directory. The Skill calls memory_sessions, matches the most recent session by working directory, and summarizes its status, open questions, and next steps.

How does session matching avoid picking the wrong repository?▼

Session matching uses a directory-boundary check instead of a raw string prefix. A session in /repo-a-staging will not match a project at /repo-a, because the path must be equal or start with the project path plus a path separator.

Can I resume a session for a different directory than my cwd?▼

Yes, you can pass an optional cwd override as an argument. The path is normalized to an absolute path with path.resolve before matching against recorded session directories.

What happens if the most recent session has no recorded observations?▼

The Skill reports plainly that the session has no recorded observations and nothing to hand off, then offers to start fresh from the current state. It never invents observations for an empty session.

What if memory_sessions or memory_recall is not available?▼

The Skill depends on the memory_sessions and memory_recall tools being available. If they are missing, consult the shared troubleshooting guide referenced in the Skill documentation.