AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Session Handoff

skill-pinexai-claude-code-skills-session-handoff · by pinexai

>

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-pinexai-claude-code-skills-session-handoff

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pinexai-claude-code-skills-session-handoff)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Session Handoff? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Session Handoff

When this fires

A long session accumulates decisions, dead ends, and verified facts that live only in the conversation. When that conversation gets compacted or a new session has to pick up the work, all of that is at risk of being silently lost — the next session either re-derives it (slow) or contradicts it (worse). This skill's job is to decide, before the flush happens, exactly what is worth keeping and write it down in a form a cold session can use without re-reading the whole history.

Protocol

  1. Detect the trigger. Confirm this is actually a long-session boundary:

context-limit warning, explicit compaction, or the user asking to pause and resume later. Do not run this for a task that is about to finish.

  1. Extract durable state only, pulling from the actual conversation —

never from inference or assumption:

  • Architecture / design decisions that were made, and why
  • Edge cases or bugs already found (so they aren't re-discovered)
  • The file map: which files matter and what each one is for
  • Open threads: what's unfinished, blocked, or explicitly deferred
  • What's verified (ran, tested, observed) vs. assumed (stated but

not checked)

  1. Write HANDOFF.md (or, if no file should be written, print the same

content as a block) using the fixed template in Output below.

  1. List what can be safely dropped from context now that it's captured

in the handoff — this is what makes the handoff worth writing.

Hard rules

  • Never invent a decision, rationale, or fact that wasn't actually

established in the session. If something is unclear, list it under Open Threads instead of guessing.

  • Every claim goes in either Verified or Assumed — never blur the two.
  • Keep the handoff under ~40 lines. If it's longer, cut detail, not

sections — a bloated handoff defeats the purpose.

  • Do not re-explain code that's readable from the files themselves; capture

only what isn't recoverable by reading the repo (decisions, rejected approaches, in-progress state).

Output

A HANDOFF.md in this exact structure:

# Handoff: 

## Decisions made
-  — 

## Edge cases already caught
-  — 

## File map
-  — 

## Verified vs assumed
- Verified: 
- Assumed: 

## Open threads
- 

## Safe to drop
- 

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.