context-save

Persist user-provided context to memory across sessions with deduplication.

2|1|Updated Apr 10, 2023
One-click install
npx skills add https://github.com/popoffvg/dotfiles --skill context-save-popoffvg
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: context-save
Source: https://github.com/popoffvg/dotfiles/tree/main/harness/plugins/memory-keeper/claude/skills/context-save
Command: npx skills add https://github.com/popoffvg/dotfiles --skill context-save-popoffvg

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Persists user-supplied context and insights across sessions to maintain continuity and reduce repeated questions.

Core Features & Use Cases

  • Save context to memory with classification of insights; support for pending tasks; dedup and retrieval; configurable insights_root; safe storage.
  • Retrieve stored context as needed to inform current responses.
  • Use Case: When a user requests to remember a decision, the AI should recall it in future conversations and apply it to new queries.

Quick Start

Save this context for future conversations.

Frequently Asked Questions about context-save

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

FAQPage Schema
How do I persist context and memory across Claude sessions?

To persist context across Claude sessions, you can use a memory-keeper approach that stores user-provided facts and decisions to local markdown files, ensuring insights are recalled in future conversations without repetition.

Can I save pending tasks and notes for later use in Claude?

Yes, you can save pending tasks and notes by checking for an active task and storing those entries under pending notes within your memory file, allowing the AI to maintain task continuity across different interactions.

How does deduplication work when saving persistent memory entries?

Deduplication prevents duplicate memory entries by checking existing stored insights before saving new context, ensuring your persistent memory file remains clean and avoids redundant information across sessions.

Do I need any dependencies to maintain memory persistence in Claude?

No external dependencies are required to maintain memory persistence. The process relies on reading and writing to a local configuration file, specifically utilizing the ~/.claude directory for safe storage of your insights.

What is the best way to configure insights root for memory storage?

Configuring insights root involves reading the insights_root path from a local memory-keeper file, which defines where your classified context entries are stored, ensuring safe and organized persistence of user insights.

Why does Claude keep asking the same questions instead of recalling decisions?

Claude asks repeated questions when context is not persisted across sessions. Saving decisions to a persistent memory file allows the AI to recall past interactions and apply them to new queries automatically.