store-memory

Store information into working, episodic, or semantic memory tiers.

3|Updated Dec 2, 2025
One-click install
npx skills add https://github.com/X-McKay/kubani --skill store-memory
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: store-memory
Source: https://github.com/X-McKay/kubani/tree/main/kubani/skills/general/memory/store-memory
Command: npx skills add https://github.com/X-McKay/kubani --skill store-memory

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill addresses the challenge of efficiently storing and retrieving information by providing a structured way to manage data across different memory tiers.

Core Features & Use Cases

  • Hierarchical Memory Storage: Organizes information into working (ephemeral), episodic (recent events), and semantic (permanent patterns) tiers.
  • Structured Fact Extraction: Leverages LLMs to extract key facts from raw content, making data more usable.
  • Use Case: After a Kubernetes pod fails and is remediated, this skill can store the event details (e.g., "Pod nginx crashed due to OOM, memory limit increased") in episodic memory for later analysis or pattern identification.

Quick Start

Use the store-memory skill to save the observation that the 'api-gateway' pod is experiencing high latency.

Frequently Asked Questions about store-memory

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

FAQPage Schema
What is hierarchical memory storage for managing working, episodic, and semantic data?

Hierarchical memory storage organizes information into working, episodic, and semantic tiers. It classifies and persists extracted facts with appropriate metadata, enabling efficient retrieval and pattern identification.

How do I store observations like Kubernetes pod failure events for later pattern analysis?

You store observations by saving event details in episodic memory. The system extracts structured facts from raw content using an LLM and persists the data with metadata for later analysis or pattern identification.

How does structured fact extraction from raw content work in a memory system?

Structured fact extraction leverages an LLM to parse raw content and identify key facts. These extracted facts are then persisted into the memory system with appropriate metadata, making the data more usable for retrieval.

Can I use this memory storage approach to identify permanent patterns from recent events?

Yes, you can identify permanent patterns by storing recent events in episodic memory. The system supports learning from these observations and classifying learned permanent patterns into the semantic memory tier.

What is the best way to organize ephemeral data versus permanent patterns in memory?

The best way to organize ephemeral versus permanent data is through a hierarchical memory system. It automatically classifies ephemeral data into working memory and permanent patterns into semantic memory, ensuring structured management.

When should I not use a hierarchical memory system for storing information?

You should avoid a hierarchical memory system when your data does not require tiered classification or pattern learning. If your use case only involves simple, flat storage without needing episodic or semantic distinction, this approach is unnecessary.