Persistent memory and context compression for Claude Code. Use when setting up or operating MemoryLane in a project, recalling or storing memories, reviewing insights, curating low-quality memories, or checking cost/token savings and automatic context injection.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill memorylane-awolf81-memory-lane-2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Memorylane Awolf81 Memory Lane 2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-memorylane-awolf81-memory-lane-2-claude-skill-registry)More formats (shields.io, HTML) on the badges page.
---
name: memorylane
description: Persistent memory and context compression for Claude Code. Use when setting up or operating MemoryLane in a project, recalling or storing memories, reviewing insights, curating low-quality memories, or checking cost/token savings and automatic context injection.
---
# MemoryLane
## Setup
Run `bash install.sh` from the repo root to initialize `.memorylane/` and make the CLI executable.
Ensure `.claude/settings.json` points at `.claude/hooks/*.py` so automatic context injection and learning run.
Verify the install with:
```bash
python3 src/cli.py status
```
## Core commands
Check status and savings:
```bash
python3 src/cli.py status
```
Recall memories:
```bash
python3 src/cli.py recall "<query>"
```
View insights and costs:
```bash
python3 src/cli.py insights
python3 src/cli.py costs
```
Learn from history:
```bash
python3 src/learner.py initial
```
## Memory management
List and curate memories:
```bash
python3 src/cli.py curate --list
python3 src/cli.py curate --apply '<JSON>'
```
Manage an individual memory:
```bash
python3 src/cli.py memory get <id>
python3 src/cli.py memory update <id> --content "New content"
python3 src/cli.py memory delete <id>
```
## Server
Start or stop the sidecar:
```bash
python3 src/server.py start
python3 src/server.py status
python3 src/server.py stop
```
## Notes
Do not edit `.memorylane/memories.json` directly; use the CLI.
Context rot guard: injected context is capped to a safe fraction of the model window via `context_rot.*` config keys.
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!