session-checkpoint

Encode atomic session checkpoints and summaries to memory for recovery.

Updated Feb 15, 2026
One-click install
npx skills add https://github.com/jsschrstrcks1/manateecreeksheep --skill session-checkpoint-jsschrstrcks1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: session-checkpoint
Source: https://github.com/jsschrstrcks1/manateecreeksheep/tree/main/.claude/skills/session-checkpoint
Command: npx skills add https://github.com/jsschrstrcks1/manateecreeksheep --skill session-checkpoint-jsschrstrcks1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps ensure safe, auditable progress in multi-step sessions by recording atomic checkpoints and summaries to memory, enabling clean recovery after interruptions.

Core Features & Use Cases

  • Atomic commits after each logical unit of work to prevent partial states.
  • Session memory encoding and recall to resume interrupted work without loss.
  • Rate-limit recovery and structured checkpoint summaries to guide re-entry into a task.

Quick Start

Encode a session checkpoint after each logical unit of work to memory, so interrupted sessions can resume cleanly.

Frequently Asked Questions about session-checkpoint

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

FAQPage Schema
How do I resume interrupted coding sessions without losing progress?

Resume interrupted coding sessions by recalling encoded session memory and atomic checkpoints. This allows you to cleanly re-enter multi-step tasks and recover your work without losing partial states.

What is atomic checkpointing for multi-step workflows?

Atomic checkpointing records logical units of work to session memory after each step. This prevents partial states during long-running tasks and ensures safe, auditable progress when interruptions occur.

How do I prevent partial state saves during long-running data tasks?

Prevent partial state saves by enforcing atomic commits after each logical unit of work. This structured checkpoint approach ensures that multi-step session progress remains auditable and safe from interruption loss.

Can I use session checkpoints to manage rate-limit recovery?

Yes, you can use session checkpoints to manage rate-limit recovery. The skill encodes structured checkpoint summaries to session memory, guiding clean re-entry into your task after encountering rate limits or interruptions.

When should I implement atomic commits in my workflow?

Implement atomic commits during long-running coding or data tasks that span multiple files or steps. You need this approach when interruptions may occur and you must preserve safe, auditable progress.

Does session memory encoding work with multi-file coding tasks?

Yes, session memory encoding works with multi-file coding tasks. A startup protocol identifies a single target file, encodes session state, and enforces per-step checkpoints to support clean recovery across complex workflows.