From engram
Executes vault writes handed off by recall/learn skills for facts, feedback, and QAs. Handles compose, execute, verify, and report without rejudging what to write.
How this skill is triggered — by the user, by Claude, or both
Slash command
/engram:write-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You were invoked by a parent skill that already made the judgment (what to write and why).
You were invoked by a parent skill that already made the judgment (what to write and why). Your job is the write itself: compose, execute, verify, report. Do not re-litigate the parent's judgment; do not decide WHETHER to write.
The parent provides:
fact, feedback, or qa<source#anchor> chunk IDs (provenance)<basename>|<type>|<claim> (types: updates|narrows|refutes),
when the parent determined this write corrects a surfaced noteIf a required field is missing, ask for it from the in-session parent context — do not invent content on the parent's behalf.
kind=feedback:
engram learn feedback --slug <kebab-slug> --position top \
--source "<source>" \
--situation "<retrieval-shaped phrase: when does this apply>" \
--behavior "<what was done>" --impact "<why it was wrong/costly>" --action "<what to do instead>"
kind=fact:
engram learn fact --slug <kebab-slug> --position top \
--source "<source>" \
--situation "<retrieval-shaped phrase: when does this apply>" \
--subject "<the thing>" --predicate "<requires / must use / is>" --object "<the standard or value>"
kind=qa:
engram learn qa \
--slug "<kebab summary of the question>" \
--question "<verbatim question>" \
--answer "<the answer body, copied — no re-derive>" \
--contributors "<full-basename>" \
--certainty "<high|medium|low>" \
--source "<source>"
Append to any kind:
--chunk-source <source#anchor> per provided chunk ID--supersedes "<basename>|<type>|<claim>" if provided (repeatable)--contributors <full-basename> per basename the parent providedRules:
--subject/--predicate/--object) with feedback flags
(--behavior/--impact/--action) in one command.Run the command. On success the CLI prints the written note path(s).
npx claudepluginhub toejough/engramGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Reference for writing and editing skills with predictable behavior, covering invocation models, description writing, and information hierarchy.