memory

Stores and retrieves context from past AI conversations using ChromaDB vector database.

Updated Apr 1, 2026
One-click install
npx skills add https://github.com/aarushlohit/TheRocketProject --skill memory-aarushlohit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory
Source: https://github.com/aarushlohit/TheRocketProject/tree/main/rocket/external/shokunin/.pack/skills/memory
Command: npx skills add https://github.com/aarushlohit/TheRocketProject --skill memory-aarushlohit

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires chromadb, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill helps you maintain context across AI sessions by storing and retrieving information from past conversations and decisions.

Core Features & Use Cases

  • Persistent Memory: Stores and retrieves context from past conversations and decisions.
  • Search Past Conversations: Find information from previous sessions.
  • Recall Past Actions: Recall what was done before.
  • Save Context: Save context for later use.
  • Use Case: If you're working on a project and want to remember key decisions or code snippets from previous sessions, this Skill can help you do that.

Quick Start

Use the memory skill to save the context of your current session with the command 'store_context text: "Summary of what was done, key decisions, code patterns" tags: ["project-name", "feature", "language"] project: "project-name" session_id: "current-session-id"'.

Frequently Asked Questions about memory

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

FAQPage Schema
How do I maintain context across AI sessions?

You can maintain context across AI sessions by storing summaries of conversations and key decisions in a local vector database. This allows you to search and retrieve past interactions when resuming work.

How do I store context from a previous conversation?

You store context by executing a command with a text summary of your actions, relevant tags, a project name, and a unique session ID. This saves your conversation details into the vector database for future retrieval.

Do I need a vector database to save AI session memory?

Yes, this Skill requires ChromaDB as its dependency for local vector database storage. ChromaDB handles the underlying storage and retrieval mechanisms necessary to persist and query your session contexts.

Can I search past conversations to recall previous actions?

Yes, you can search past conversations to recall previous actions and decisions. The Skill queries the local vector database to retrieve relevant information and context from your previous sessions.

What is the best way to remember code patterns from previous AI sessions?

The best way to remember code patterns is to explicitly save them as context with descriptive tags and a project name. This allows you to retrieve the exact code patterns and decisions later by querying the stored memory.

What are the limitations of using a local vector database for AI memory?

A limitation of using a local vector database for AI memory is that your stored context remains confined to the local environment. You cannot access this persistent memory from remote or distributed environments without manual configuration.