context-save

Captures git state, decisions, and remaining work for later session resumption.

Updated Jun 22, 2026
One-click install
npx skills add https://github.com/aicodepro/ai-agent-nexi --skill context-save-aicodepro
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: context-save
Source: https://github.com/aicodepro/ai-agent-nexi/tree/main/agent/skills/gstack/context-save
Command: npx skills add https://github.com/aicodepro/ai-agent-nexi --skill context-save-aicodepro

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Work context is lost when an AI coding session ends, forcing you to rebuild an understanding of branch state, decisions made, and unfinished tasks. This Skill saves that working context so any future session can resume without losing progress. ## Core Features & Use Cases - Context Capture: Records git branch state, decisions made during the session, and remaining work items. - Session Resume Pairing: Pairs with /context-restore so a later session can pick up exactly where you left off. - Environment Awareness: Runs a preamble that detects session kind (interactive, headless, spawned), repo mode, telemetry settings, and checkpoint configuration before saving. - Use Case: Before ending a long refactoring session on a feature branch, invoke the skill to snapshot your progress; the next day, restore it and continue without re-explaining the task. ## Quick Start Ask the assistant to save my current work progress and session context so I can resume it later.

Frequently Asked Questions about context-save

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

FAQPage Schema
How do I save my AI coding session progress?

Invoke the context-save skill with a phrase like "save my work" or "context save". It captures git state, decisions made, and remaining work so a future session can resume via the paired context-restore skill.

How do I resume a saved session after context-save?

Use the companion /context-restore skill in a new session. It reads the saved snapshot of branch state, decisions, and outstanding work, letting you continue without re-explaining the task.

Does context-save work in headless or spawned sessions?

Yes. The preamble detects the session kind (interactive, headless, or spawned) and adjusts behavior; in spawned sessions it skips interactive prompts and auto-chooses recommended options, then reports results as prose.

Why was the checkpoint command renamed to context-save?

It was renamed because Claude Code treats /checkpoint as a native rewind alias in current environments, which shadowed the skill. The context-save name avoids that collision while keeping the same functionality.

What are the limitations of context-save?

It depends on the gstack environment and its bin utilities being installed, and it captures git-based state, so uncommitted work outside git tracking may not be fully represented. It is not a substitute for committing code.