install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/load-memory" ~/.claude/skills/majiayu000-claude-skill-registry-load-memory && rm -rf "$T"
manifest:
skills/data/load-memory/SKILL.mdsource content
Script Path Resolution
IMPORTANT: The
scripts/ folder is in the plugin directory, NOT the current project.
From "Base directory for this skill:" above, derive the scripts path:
- Remove
from the end/skills/load-memory - Add
to get the scripts directory/scripts/
Example:
- Base:
~/.claude/plugins/cache/memory-keeper-marketplace/memory-keeper/13.8.3/skills/load-memory - Scripts:
~/.claude/plugins/cache/memory-keeper-marketplace/memory-keeper/13.8.3/scripts/
Use this full path when running node commands below.
Load Memory
Reload memory context into current session.
Usage
/memory-keeper:load-memory
Actions
Run the load-memory script (use full path from above):
node "{SCRIPTS_PATH}/load-memory.js"
This will output the current memory state to context:
-
Hierarchical Memory (if exists):
- Project overviewproject.md
- Architecture decisionsarchitecture.md
- Coding conventionsconventions.md
-
L3 Summaries:
- JSON summaries of rotated memory archives
-
Rolling Memory:
- Last 50 lines of
memory.md
- Last 50 lines of
When to Use
- After manually editing memory files
- To refresh context if it seems stale
- To verify what memory is currently loaded
Notes
- Memory is automatically loaded on session start
- This command reloads without restarting session