New skill
Mneme — a self-improving cache + skill engine for Claude Code. Loads a persistent cache into every chat and learns across sessions.
npx -y skills add Aexagon/mneme --skill new-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Scaffold a new skill for the Mneme bay (or for personal use) with skill-creator, then wire it to read/write the Mneme cache. Use when the user wants to add a skill to Mneme, build a new capability for the engine, or create a skill that learns into the cache.
SKILL.md
1.4 KB, as published. Nobody here has run it
Add a skill to Mneme
Mneme's skill bay is just the plugin's skills/ directory — any skill placed there is auto-discovered. This skill adds the Mneme conventions on top of normal skill creation.
Steps
-
Scaffold with skill-creator. Invoke the
skill-creatorskill to design and write the new skill properly (name, trigger-rich description, structure, validation). Do not reinvent that process. -
Place it.
- To ship it with Mneme (shareable):
~/Desktop/Claude/mneme/plugins/mneme/skills/<skill-name>/SKILL.md. - For a quick personal-only skill:
~/.claude/skills/<skill-name>/SKILL.mdis fine.
- To ship it with Mneme (shareable):
-
Wire it to the cache (encouraged). If the skill benefits from memory, follow the
mneme-engineskill's "How a skill reads or writes the cache" section:- Read relevant notes from
~/.claude/mneme/cache/(+ project overlay). - Write durable learnings back via
/mneme:rememberor the note schema.
- Read relevant notes from
-
Description discipline. The skill's
descriptionis how it gets discovered. Make it specific and trigger-rich, per skill-creator's guidance.
Keep skills small and single-purpose. A skill you can hold in your head is a skill that works.