memory

Store and retrieve user preferences, facts, notes, and rules across conversations.

650|137|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/alsk1992/CloddsBot --skill memory-alsk1992
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory
Source: https://github.com/alsk1992/CloddsBot/tree/main/src/skills/bundled/memory
Command: npx skills add https://github.com/alsk1992/CloddsBot --skill memory-alsk1992

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill provides a persistent memory system, allowing you to store, recall, and search preferences, facts, notes, and rules across conversations, ensuring no information is lost.

Core Features & Use Cases

  • Store & Recall: Save and retrieve user preferences, facts, notes, and trading rules.
  • Semantic Search: Find information based on meaning, not just keywords, using vector embeddings.
  • Daily Journaling: Log daily activities, trades, and PnL for performance tracking.
  • Use Case: Store your preferred trading risk level as a 'preference' and recall it later, or save a 'fact' about an upcoming crypto event to be reminded of its significance.

Quick Start

Use the memory skill to remember that your favorite cryptocurrency is Bitcoin.

Frequently Asked Questions about memory

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

FAQPage Schema
How do I store user preferences and facts across AI conversations?

You can store user preferences and facts across AI conversations by using a persistent memory system that saves data via backends like LanceDB, SQLite, or PostgreSQL. This ensures no user information is lost between sessions.

What is semantic search and how does it find saved notes?

Semantic search finds saved notes by using vector embeddings to match information based on meaning rather than exact keywords. This allows the memory system to retrieve relevant context and facts even if the search terms differ from the stored text.

Does this persistent memory system work with PostgreSQL and SQLite?

Yes, this persistent memory system works with PostgreSQL, SQLite, and LanceDB as its backends. This allows you to choose the database that best fits your existing infrastructure for storing user preferences and notes.

How do I keep a daily journal of trades and activities for context building?

You can keep a daily journal of trades and activities by logging entries into the memory system, which records daily events and PnL for performance tracking. This stored context is then used to personalize AI interactions.

What's the best way to recall a specific rule without using exact keywords?

The best way to recall a specific rule without exact keywords is using semantic search through vector embeddings. This mechanism matches the meaning of your query to the stored rules, ensuring accurate retrieval.