context-save

Save git branch, status, and recent activity to an append-only checkpoint file.

Updated Apr 11, 2026
One-click install
npx skills add https://github.com/akiyoshi/gstack-copilot-jp --skill context-save-akiyoshi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: context-save
Source: https://github.com/akiyoshi/gstack-copilot-jp/tree/main/.github/skills/context-save
Command: npx skills add https://github.com/akiyoshi/gstack-copilot-jp --skill context-save-akiyoshi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Context switching during development often leads to lost progress and duplicated mental effort. context-save provides a reliable way to capture a complete working state (current branch, uncommitted changes overview, recent activity) so you can resume exactly where you left off.

Core Features & Use Cases

  • Save the current git branch, status, and recent activity as a checkpoint for later restoration.
  • List and review saved contexts across branches to choose the appropriate starting point.
  • Restore a session later with the associated /context-restore flow to continue work without re-creating state.

Quick Start

Run /context-save to capture your current working state and resume later with /context-restore.

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 git working context before ending a session?

You can save your git working context by running a single command that captures your current branch, uncommitted changes overview, and recent activity into an append-only checkpoint file on disk, requiring no code changes.

What is the best way to resume a development session across different git branches?

The best way to resume a development session across branches is to review saved contexts to choose your starting point, then restore the session to continue work without re-creating state or losing uncommitted changes.

Can I capture uncommitted git changes without creating a commit?

Yes, you can capture uncommitted git changes without creating a commit. The tool reads your current git state and history to save an overview of staged changes and recent activity into an append-only checkpoint file on disk.

Does this session checkpoint tool require any dependencies or code changes?

No, this session checkpoint tool requires no dependencies or code changes. It simply reads your existing git state and history, then writes an append-only checkpoint file on disk to securely capture your working context.

How do I review saved git contexts to find the right starting point?

You can review saved git contexts by listing the captured checkpoints across branches, allowing you to choose the appropriate starting point and resume your development session exactly where you left off.

When should I use a git session checkpoint instead of a standard commit?

Use a git session checkpoint instead of a standard commit during mid-session interruptions or handoffs when you need to quickly save uncommitted changes and recent activity to resume work later without altering history.