context-save

Save git state, decisions, and remaining tasks to a session snapshot.

Updated Mar 27, 2026
One-click install
npx skills add https://github.com/AlejandroFigini/artist-portfolio --skill context-save-alejandrofigini
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: context-save
Source: https://github.com/AlejandroFigini/artist-portfolio/tree/main/.agent/skills/context-save
Command: npx skills add https://github.com/AlejandroFigini/artist-portfolio --skill context-save-alejandrofigini

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Save working context including git state, decisions, and remaining tasks so future sessions can resume without losing context.

Core Features & Use Cases

  • Capture the current repository state (branch, staged and unstaged changes) and the decisions made during planning.
  • Persist remaining work and choices to a retrievable session snapshot that can be restored with /context-restore.
  • Provide deterministic context recovery during plan-mode or interactive sessions to prevent context drift.

Quick Start

Invoke context-save to snapshot your current session state.

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 branch state and working context before pausing a session?▼

To save your git state and working context, use a checkpoint mechanism that captures your current branch, staged and unstaged changes, decisions, and pending tasks into a retrievable session snapshot.

What is the best way to restore a previous git workflow and decisions after closing a session?▼

Restoring a previous git workflow involves loading a saved session snapshot that contains your branch context, recorded decisions, and remaining work, enabling seamless context recovery and session resumption.

How do I prevent context drift when resuming development work across multiple sessions?▼

Preventing context drift requires deterministic context recovery by persisting your repository state and planning choices into a snapshot before pausing, which can be loaded later to resume work seamlessly.

Can I track decisions and remaining work alongside my git state during plan-mode sessions?▼

Yes, you can track decisions and remaining work alongside git state during plan-mode sessions by capturing all three elements into a single checkpoint snapshot designed for later retrieval and resumption.

Does context-save work without external dependencies for recording repository state?▼

Yes, this session checkpoint functionality operates without external dependencies, independently capturing your repository state, decisions, and pending tasks to enable deterministic context recovery.

When should I avoid relying on session snapshots for workflow recovery?▼

You should avoid relying on session snapshots when your workflow lacks distinct decision-tracking points or when your repository state changes too rapidly for static checkpoints to accurately capture the pending tasks.