← ClaudeAtlas

claws-pull-memorieslisted

Install or uninstall a versioned memory pack into the current project's memory directory.
neunaha/claws · ★ 9 · AI & Automation · score 76
Install: claude install-skill neunaha/claws
# Skill: claws-pull-memories — install a memory pack ## What this is `/claws-pull-memories` installs a versioned memory pack — a self-contained bundle of `.md` memory files plus a `pack.json` manifest — into the current project's memory directory. Packs let teams share curated orchestration knowledge without copy-pasting files by hand. Works alongside [[claws-memory]] (the user-facing hub) and [[claws-memory-engine]] (the silent recall engine). In v0.8.3 packs install from a local path; registry fetch lands in v0.9. ## When to invoke - Bootstrap a new project with curated orchestration knowledge (runbooks, failure patterns, discipline). - A teammate shares a pack directory and you need to install it quickly. - After an incident, seed the memory directory with recovery knowledge from a prepared pack. - Before publishing a pack: validate, sign, then install to confirm the result. ## When NOT to invoke - Writing a **single** memory entry — use claws-remember instead. - Searching or recalling existing memories — use claws-recall. - The pack has not been validated; run `validate-memory-pack.js --pack-dir <path>` first. ## Steps 1. **Install:** `node ./scripts/install-memory-pack.js --pack <path-to-pack-dir>` 2. **Key flags:** `--dry-run` (preview), `--force` (overwrite conflicts), `--format json` (CI), `--install-path <dir>` (custom directory). 3. **Uninstall:** `node ./scripts/install-memory-pack.js --uninstall <pack_id>` 4. **Validate:** `node ./scripts/validate-memor