gtsi-context-restore

Restores previously saved work contexts and recreates active task list entries.

Updated May 21, 2026
One-click install
npx skills add https://github.com/gestaosian/gtsi-claude-skills --skill gtsi-context-restore-gestaosian
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gtsi-context-restore
Source: https://github.com/gestaosian/gtsi-claude-skills/tree/main/plugins/gtsi-ops-plugin/skills/gtsi-context-restore
Command: npx skills add https://github.com/gestaosian/gtsi-claude-skills --skill gtsi-context-restore-gestaosian

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When starting a new session, developers lose track of where they stopped — which branch, which tasks were active, and what the next steps were. This Skill reloads a previously saved context so work can resume without manual reconstruction. ## Core Features & Use Cases - Context Listing: Shows the last 5 saved contexts for the current author from .gtsi/context/<author-slug>/, with date, branch, and slug. - Cross-Dev Handoff: The --all flag lists contexts from every author, enabling one developer to pick up another's work. - TaskList Recreation: Recreates active tasks from the saved context's "Tarefas ativas" section via TaskCreate, without duplicating existing entries. - Use Case: A developer returns Monday morning, asks "onde eu parei?", picks the latest saved context, and gets their branch, decisions, pending tasks, and next steps restored in seconds. ## Quick Start Ask the assistant to restore your last saved context by saying "restore context" or "where was I" and choose from the numbered list presented.

Frequently Asked Questions about gtsi-context-restore

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

FAQPage Schema
How do I restore a saved work context in Claude Code?▼

Say "restore context", "resume", or "where was I" to trigger the restore flow. The skill lists your last 5 saved contexts with date, branch, and slug, then loads the one you select and recreates your active tasks.

How to resume another developer's saved context for handoff?▼

Use the --all flag or say "restore João's context" to list the last 5 contexts from every author in .gtsi/context/*/. Select the desired entry and the skill loads that developer's saved state, including tasks and next steps.

Where are saved context files stored?▼

Contexts are stored as markdown files under .gtsi/context/<author-slug>/, organized per author. The restore skill lists them with ls -t sorted by modification time, showing the most recent five by default.

Does restoring a context preserve original task IDs?▼

No, old task IDs are not preserved because they are session-scoped. The skill creates new tasks via TaskCreate for each unchecked item in the saved context's active tasks section, comparing by description to avoid duplicates.

What are the limitations of context restore?▼

It never restores without asking which context to load unless only one exists, and it does not execute destructive actions mentioned in the saved context — it only reports them. It depends on contexts previously saved by the companion save skill.