Extraction was memorizing transient working-tree snapshots
("uncommitted changes to X, ready to be committed to PR #N") — state
git already tracks and no teammate would remember. The entity context
now leads with "try to remember things that a human would remember"
and explicitly skips uncommitted file lists, branch position, and
in-flight commit/push status.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
#3B35F3 measured 2.4:1 against a dark background — below the 3:1
legibility floor. rgb(124,120,250) measures 4.7:1 on dark and 3.5:1 on
light; shimmer tiers re-derived from the new base.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Injected memories are hashed into a per-session recalled.json (pruned
with statusline state, capped at 500) so a memory already in context is
never re-injected — the banner reports only fresh hits, with repeats as
a gray '… already in context' tail. Banners share lib/colors.js: brand
blue for the ◪ mark, red for recall failures.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Fixes#25: on Windows the stdin 'end' event never fires for hook
subprocesses, hanging every hook for its full timeout. readStdin now
parses incrementally and resolves as soon as the payload is complete
JSON, with a 3s fallback timer — the same pattern the statusline
renderer already used. Also drops dead formatRelativeTime code.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Search results are memory-shaped (.memory) or document/chunk-shaped
(.chunk/.content/.text with a filepath); recall now injects both,
annotating chunks with their filepath.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The recall directive was advisory — the model had to choose to spend a
tool call, so mid-session recall almost never happened. The
UserPromptSubmit hook now searches supermemory with the prompt itself
(4s timeout, skips short prompts and /, !, # inputs) and injects the
top matches directly, with a visible '◪ recalled N memories' notice
and statusline search state. A configured recallDirective restores
advisory mode.
Also fixes recall-approve missing the claude.ai connector namespace
(mcp__claude_ai_supermemory__*), which silently dropped the recall
notice and statusline count when the model did search.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
latest.json (update-check) and package.json were stuck at 0.0.16 while
plugin.json moved on. The one-time statusline tip now gives the full
settings snippet including refreshInterval, without which the animation
freezes between renders while idle.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The resting line cycles every 4s between the tally, "saved Ns ago",
and "recalled Nm ago" — the ages tick upward each render, so the
words change, not only the shimmer.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Frames are pure functions of (state, now), rendered by Claude Code's
statusLine.refreshInterval timer (1s idle floor; ~300ms during
activity) — no persistent process. A shimmer crest sweeps the brand
word (3-letter stride), saving gets a braille spinner (3-step stride),
and the tally rotates emphasis every 2s. Strides are coprime with
their cycle lengths so every pose is visited, and no frame repeats
within a 10s window (tested). Render cost is ~0.5µs per frame.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The tools frontmatter pinned mcp__supermemory__* only, so the agent
spawned with zero tools (and was refused) whenever the server surfaced
under the plugin-scoped or claude.ai connector namespace. List all
three variants; unresolved names are ignored at spawn.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
All hook surfaces now use ◪ and the recall directive asks for natural
sentences ("◪ last week you told me about X") instead of the
"◆ from memory:" label. Source is always named "supermemory", never
"memory".
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Resting label is now a session tally (N loaded · N captured · N recalls)
that ticks on every turn and every recall, instead of a static count with
decaying flashes. First session shows a one-time notice teaching that ◆
marks anything sourced from supermemory.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Statusline, systemMessages, injected memory lines, and the attribution rule
all carry ◆. The mark ships on the injected data itself, so the model
propagates it naturally when citing memories: if you see ◆, it came from
supermemory.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Bump all update surfaces so existing installs get the auto-update
notice after merge: latest.json, PLUGIN_VERSION, plugin manifest,
package versions, and rebuilt hooks.
Co-authored-by: Dhravya Shah <dhravya@supermemory.com>
Resolve generated script conflicts by rebuilding hooks so statusline
state updates keep the search-result parsing and status/session fixes
from main.
Co-authored-by: Dhravya Shah <dhravya@supermemory.com>
latest.json on main already advertised 0.0.10 while the installed
manifest and baked PLUGIN_VERSION were still 0.0.9, so the update
check nagged every session for a release that was never published.
Bump manifest, package.json, plugin-version.js and rebuild hooks so
the announced and installed versions match.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- Bump plugin-version.js, plugin.json, package.json to 0.0.10
- Make ⚡ bright blue and "supermemory" bold white so the brand
pops on dark terminal backgrounds
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Adds a dynamic statusline script that shows Supermemory activity in
Claude Code's statusline bar. Three categories rotate per render:
- Things Added: "surfaced 9 intents", "vibing on 9 intents", etc.
- Things Learnt (📘): "picked up 5 insights", "5 memories crystallized"
- Things Recalled (🔁): "resurfaced 4 facts", "4 memories re-entered the chat"
- Syncing states: "encoding to memory", "saving the vibes"
Each render randomly picks one message from the available pools, with
creative varied phrasing so the statusline feels alive. Uses Supermemory
brand blue (#3B35F3) true-color ANSI. Syncing auto-expires after 15s to
prevent stale states.
Includes /supermemory:statusline setup command and first-time onboarding
tip shown at SessionStart.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
main has the recall source + hooks.json wiring (from #65) but never got
the built bundles, so UserPromptSubmit -> recall-hook.cjs errored with
MODULE_NOT_FOUND on every turn. This commits the build output:
- recall-hook.cjs, recall-approve.cjs (new) — the two missing bundles
hooks.json already references
- context-hook/summary-hook/add-memory/save-project-memory/search-memory/
status .cjs (refreshed) — were stale on main (built pre-#65), so they
reported version 0.0.7 while the source is 0.0.8; rebuilding aligns them
(also clears the false "update available" notice loop)
No package/version files changed — source is already at 0.0.8; this only
ships the bundles that build.js produces.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Re-introduces the reasoned recall feature (previously reverted in #64),
source files only — generated plugin/scripts/*.cjs are intentionally not
included and must be produced by the build step.
- recall-hook (UserPromptSubmit): injects a per-turn directive so Claude
decides whether recalling saved memory helps the current message.
- recall-approve (PreToolUse): auto-approves only the supermemory-search
tool call (narrow allow-list, rejects shell-laced commands).
- settings: recallDirective override + getRecallConfig.
- build/hooks wiring and version bump to 0.0.8.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Enrich plugin.json (displayName, homepage, repository, license,
keywords), move category to the marketplace entry and drop the
duplicate version, add a marketplace description, and note the
Node 18+ requirement in the README.
src/lib/plugin-version.js held the version the SessionStart hook reports
itself as. It was missed in the previous bump, so an installed 0.0.6
plugin would still self-report 0.0.5 and keep showing the 'update
available' notice after updating. Rebuilt the bundled hooks.
https://claude.ai/code/session_01424Bk69KXtjWYvnueZJJad
So existing installs are notified via the update check (which compares
the installed version against latest.json) to reinstall under the new
'supermemory' plugin name.
https://claude.ai/code/session_01424Bk69KXtjWYvnueZJJad
Set the Claude Code plugin name to 'supermemory' in plugin.json and
marketplace.json, and update install commands and command prefixes
(/supermemory:*) accordingly. Repository paths and GitHub URLs remain
supermemoryai/claude-supermemory.
https://claude.ai/code/session_01424Bk69KXtjWYvnueZJJad
Resolve by rebuilding plugin/scripts/*.cjs so the artifacts carry BOTH
main's source changes (Windows auth fix, update-notice via version-check)
and this branch's recall hooks — the .cjs were otherwise stale against the
merged source. Apply biome auto-format to the inherited context-hook.js /
version-check.js so `biome ci` passes.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Add a UserPromptSubmit hook that injects a directive telling Claude to
reason — per message — about whether recalling memory would help, and
only then search via the supermemory-search skill. A PreToolUse hook
auto-approves that search so it runs silently, like auto-capture, instead
of interrupting with a permission prompt.
Reasoned recall and auto-approve are built-in (no toggles): searching
only when it helps keeps more usage on the user's plan. The auto-approve
is scoped to the read-only search and refuses any command laced with
shell chaining/redirection. SUPERMEMORY_DEBUG surfaces a per-turn
[recall-decision] line for debugging. SessionStart profile load and the
Stop-hook save are unchanged.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>