Claude Code
Claude Code is the only tool with a Memcrate integration today. Cursor, Cowork, Aider, and MCP are on the roadmap.
Install
From any directory:
memcrate install claude-code
This unpacks three skill files into ~/.claude/skills/:
~/.claude/skills/
├── save/SKILL.md
├── load/SKILL.md
└── pin/SKILL.md
On Windows the path is %USERPROFILE%\.claude\skills\.
Claude Code picks them up on the next prompt — no restart, no permission setup.
Use
In any Claude Code session, the three verbs are slash commands:
/load
/save
/pin
Each one runs the matching skill. The skills handle:
- Finding your vault (default
~/vault; falls back to a$HOMEscan) - Reading the canonical context files
- Writing session logs and context updates in the right format
What each skill does
/load
Reads Core/Context/Profile.md, Core/Context/Projects.md, Core/Context/Current State.md, and the three most recent session logs. Gives you a short oriented summary. Accepts an optional argument to scope by topic or number of sessions.
/save
Reviews the current session and writes a structured log to Core/Sessions/YYYY-MM-DD-slug.md with frontmatter and the standard sections.
/pin
Promotes a fact, decision, or preference from the current session into one of the canonical context files. Figures out which file (Profile / Projects / Current State) and updates it in place.
Vault discovery
The skills probe in this order:
- Read
~/vault/Core/Context/Profile.md - Read the current working directory’s
Core/Context/Profile.md - Glob
$HOME/*/Core/Context/Profile.md(catches custom locations like~/myvault)
So if you ran memcrate init ~/myvault, the skills will still find it without configuration.
Upgrading
Each Memcrate CLI release ships the latest skill files. To upgrade:
memcrate install claude-code
This overwrites the skill files in place with the current versions.
Other tools
The roadmap (in priority order):
- Cursor —
.cursorrulestemplate that maps natural-language patterns to the verbs - Cowork — packaged skill
.zipfor Cowork’s UI install flow - Aider —
.aider.conf.ymlrewriter that adds the canonical context files - MCP —
mcp-memcrateserver exposingvault_save,vault_pin,vault_load,vault_search
Until those ship, the vault format works with any tool that can read files — point your tool at the four canonical files and you get most of the value.