From fable5-skills
Records and retrieves lessons across Claude Code sessions using Markdown files. Useful for recurring agents that repeat mistakes or need bootstrapping from past history.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fable5-skills:markdown-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fable 5 is unusually good at exploiting written records of its own past mistakes and confirmed approaches. A directory of Markdown files is enough — no database required. What matters is the maintenance discipline, because a memory full of stale or duplicate notes is worse than none.
Fable 5 is unusually good at exploiting written records of its own past mistakes and confirmed approaches. A directory of Markdown files is enough — no database required. What matters is the maintenance discipline, because a memory full of stale or duplicate notes is worse than none.
memory/
lessons/
one-lesson-per-file.md
INDEX.md # one line per lesson, regenerated when lessons change
To seed memory for an existing project, review past sessions (delegating chunks to subagents if history is large), extract recurring themes and corrections, and write them as lesson files in the format above. Then make reading INDEX.md part of the standing instructions.
npx claudepluginhub kpab/claude-fable-5-skills --plugin fable5-skillsMaintains a file-based lesson memory for Claude Code across sessions. Records corrections and confirmations in markdown files. Useful for recurring agents, daily jobs, and long projects to avoid repeating mistakes.
Extracts learnings from the current conversation and appends them to the project's CLAUDE.md as generalized rules. Captures non-obvious solutions and workarounds.
Use when recording lessons learned in a project, or when a project contains lessons/ or MEMORY.md — file-based memory format and read/write rules that measurably improve long-horizon performance.