Help us improve
Share bugs, ideas, or general feedback.
From basic-memory
Captures quick thoughts, facts, or reminders into Basic Memory as lightweight notes, preserving the user's original wording.
How this skill is triggered — by the user, by Claude, or both
Slash command
/basic-memory:remember <text to remember><text to remember>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Capture `$ARGUMENTS` into Basic Memory as a quick note, keeping the user's words.
Share bugs, ideas, or general feedback.
Capture $ARGUMENTS into Basic Memory as a quick note, keeping the user's words.
Resolve config. Read .claude/settings.json (and .claude/settings.local.json
if it exists) and look for the basicMemory block:
rememberFolder — folder for quick captures (default: bm-remember)primaryProject — project to write to (default: omit the project argument so
Basic Memory uses its default project)Both are optional. Use the defaults if the block or a key is missing. Don't fail if there's no settings file.
Derive the note.
$ARGUMENTS, verbatim. Don't rewrite or pad it.…
if you truncate). If it's one long line, write a short descriptive title instead.$ARGUMENTS is empty (e.g. you were invoked because the user said "remember
that…"), capture the specific thing they asked you to remember from the
conversation. If it's genuinely unclear what to save, ask one short question.Write it with write_note:
title = the derived titledirectory = the resolved rememberFoldercontent = the texttags = ["manual-capture"]primaryProject if set: pass it as project, or as project_id if
it's an external_id UUID (a bare UUID in project won't route). Omit both if
primaryProject isn't set.
Don't overwrite an existing note unless the user explicitly asks.Confirm in one line: what was saved and its permalink —
e.g. Saved → bm-remember/<slug>.
type: decision note
instead (the basic-memory output style covers this). Wrapping up a work session is
the PreCompact checkpoint's job, not this skill's.npx claudepluginhub basicmachines-co/basic-memory --plugin basic-memorySave information to Memex long-term memory. Captures the given text (or infers the most important context from the conversation) as a persistent note.
Saves facts, decisions, and context to Memsy memory for future sessions. Strips framing verbs and persists the substance verbatim via memsy_ingest.
Saves facts, decisions, project details, or preferences to agd-memory via /remember or phrases like 'remember this', 'save to memory'. Direct save or interactive draft+confirm modes.