| name | reflect-skills-from-memory |
| description | This skill should be used when the user asks to "reflect on skills from memory", "audit marketplace skills against memory", "从记忆中检查 skills 的问题", "反思并修改 skill", "apply memory feedback to skills", or wants to turn accumulated memory feedback about this marketplace's skills into concrete skill fixes. Reads the project's persistent memory, re-verifies each known skill problem against current code, then fixes the skill or corrects the stale memory. |
| version | 0.1.0 |
Reflect Skills From Memory
Turn accumulated memory feedback about a Claude Code plugin marketplace's skills into
concrete, verified fixes. Memory records hard-won lessons ("L3 rules get skipped",
"git plugin still has no commit hook") but
memory is a point-in-time snapshot — it drifts from the code. This skill closes the loop:
recall the feedback, re-verify it against the live skills, then fix whichever is wrong —
the skill, or the memory.
Run this in a plugin marketplace repo (e.g. dotclaude) whose feedback lives in the
per-project memory directory.
When To Use
Trigger on requests to reflect on / audit / reconcile this marketplace's skills against
remembered feedback, or to apply outstanding memory feedback to skill files.
Workflow
Phase 1: Locate and load memory
Resolve the per-project memory directory. Claude Code encodes it by replacing every /
in the project path with -:
MEM="$HOME/.claude/projects/$(pwd | sed 's/\//-/g')/memory"
ls "$MEM"/MEMORY.md /*.md