From memory-manage
Use when the user learns something worth remembering, makes a decision, discovers a preference, or uncovers a pattern. Auto-triggers to save to .claude/memory/ in the right file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memory-manage:memory-recordThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user shares a fact, decision, preference, pattern, or learned lesson, save it to the structured memory system immediately.
When the user shares a fact, decision, preference, pattern, or learned lesson, save it to the structured memory system immediately.
Trigger when:
Route to correct memory file:
domain/{topic}.md where topic is 1-2 words (kebab-case)domain/authentication.md, domain/api-design.mdtools/git.md, tools/bash.md, tools/postgres.mdEach entry has exactly 3 lines:
**[YYYY-MM-DD]** what you learned — why it matters
Example:
**[2026-05-01]** Always run tests before pushing to main — saved us from catching broken merges in CI
**[2026-05-01]** RTK proxy rewrites git commands transparently — saves 60-90% tokens on dev operations
Rules:
[YYYY-MM-DD] formatMaintain one-line entries per file:
- [general.md](general.md) — cross-project preferences and global setup
- [domain/authentication.md](domain/authentication.md) — user auth patterns, JWT vs session tradeoffs
- [tools/git.md](tools/git.md) — git workflows, cherry-pick patterns, merge strategies
Update whenever you modify a memory file. Keep sorted: general first, then domains (alphabetical), then tools (alphabetical).
User says: "I prefer terse responses with no trailing summaries"
Skill executes:
**[2026-05-01]** Prefer terse responses, no trailing summaries — saves tokens and respects user flowUser says: "React components re-render when object refs change inline"
Skill executes:
**[2026-05-01]** Inline object props create new ref each render = re-render — wrap in useMemo or move outside componentCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub acurtinxtivia/ac-demo-marketplace --plugin memory-manage