from memory import remember, recall
# Store information
remember("user_name", "John")
remember("favorite_color", "blue")
# Retrieve information
name = recall("user_name")
color = recall("favorite_color")
Voice Commands
"Jarvis, remember my name is [name]"
"Jarvis, what do you remember about me?"
"Jarvis, forget that"
"Jarvis, remember this task"
Memory Types
User Profile (name, role, preferences)
Conversation Context
Task History
Named Positions (for robotic operations)
User Emotions
Task Continuations
Performance
Recall Time: < 10ms
Storage Limit: Unlimited (file-based)
Persistence: Permanent across sessions
Dependencies
json
os
datetime
Author
Aly-Joseph
Version
1.0.0
Last Updated
2026-01-31
1---2name: memory-system3description: Memory System Skill4---5# Memory System Skill67## Overview8The Memory System skill provides persistent JSON-based storage for user information, context, and conversation history.910## Slug11`memory-system`1213## Features14- User information storage15- Context persistence16- Conversation history17- Preference learning18- Task continuation tracking19- Named position saving20- Contextual recall2122## Implementation23- **Modules**: `memory.py`, `message_memory.py`, `continuation_handler.py`24- **Storage Format**: JSON files25- **Persistence**: Local file-based2627## Configuration28```python29from memory import remember, recall3031# Store information32remember("user_name", "John")33remember("favorite_color", "blue")3435# Retrieve information36name = recall("user_name")37color = recall("favorite_color")38```3940## Voice Commands41- "Jarvis, remember my name is [name]"42- "Jarvis, what do you remember about me?"43- "Jarvis, forget that"44- "Jarvis, remember this task"4546## Memory Types47- User Profile (name, role, preferences)48- Conversation Context49- Task History50- Named Positions (for robotic operations)51- User Emotions52- Task Continuations5354## Performance55- Recall Time: < 10ms56- Storage Limit: Unlimited (file-based)57- Persistence: Permanent across sessions5859## Dependencies60- json61- os62- datetime6364## Author65Aly-Joseph6667## Version681.0.06970## Last Updated712026-01-31
Run npx skillmds@latest add aly-joseph/memory-system in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Memory System Skill It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Aly-Joseph (@aly-joseph) published this skill. Their other Agent Skills are listed on their SkillMD profile.