Reconstruct compact session context from canonical handoff artifacts.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add Eliyce/paqad-ai --skill session-resume --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Session Resume?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/eliyce-session-resume)More formats (shields.io, HTML) on the badges page.
---
name: session-resume
description: Reconstruct compact session context from canonical handoff artifacts.
model_tier: fast
triggers:
- process_depth:
- fast lane
- graduated lane
- full lane
cacheable: true
cache_key_inputs:
- .paqad/onboarding-manifest.json
- .paqad/project-profile.yaml
- .paqad/session/handoff.md
output_format: markdown
input_schema:
handoff_path:
type: path
required: true
description: Session handoff document written before compaction.
onboarding_manifest_path:
type: path
required: true
description: Canonical onboarding manifest for the active project.
project_profile_path:
type: path
required: true
description: Canonical project profile for the active project.
---
## What It Does
Rebuilds the minimum viable working context after compaction by reading the preserved handoff and the canonical project identity artifacts instead of rescanning `.paqad/` manually.
## Use This When
Use this immediately after a context compaction or when a resumed session needs the current lane, stack, warnings, and key references without spending tokens rediscovering them.
## Inputs
- Read the preserved handoff at `handoff_path`.
- Read the canonical project metadata at `onboarding_manifest_path` and `project_profile_path`.
- Read `references/resume-template.md` before composing the reconstructed state.
## Procedure
1. Run `scripts/load-resume-bundle.sh` — it reads handoff.md, project-profile.yaml, and onboarding-manifest.json into one stream, exit 1 when any is missing.
2. Reconcile any conflict between handoff and project metadata; preserve uncertainty explicitly rather than picking arbitrarily.
3. Surface only facts needed to safely continue work: phase, objective, blockers, canonical references.
4. Format per `assets/output.template.md`; validate with `scripts/lint-output.sh`.
## Output Contract
- Match `assets/output.template.md`: `## Session State`, `## Project Context`, `## Resume Targets`.
- Resume Targets must list backticked file paths only — no inferred next steps.
- Output must pass `scripts/lint-output.sh` (exit 0).
## Escalate / Stop Conditions
- Ask when any required handoff or project metadata file is missing.
- Warn when the handoff conflicts with the stored project profile or onboarding manifest.
- Do not infer new workstreams beyond what the handoff and canonical metadata already establish.
## Resources
- `references/resume-template.md`
- `scripts/load-resume-bundle.sh`
- `scripts/lint-output.sh`
- `assets/output.template.md`
- `.paqad/session/handoff.md`
- `agents/openai.yaml`

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!