New Features
Viewer dark mode
Toggle in the header — persists to localStorage, respects prefers-color-scheme. All canvas graph colors (grid, labels, tooltips, node pills) adapt correctly. Thanks to the editorial design system already using CSS custom properties, the entire viewer switches cleanly.
MiniMax LLM provider (#103)
New provider for MiniMax's Anthropic-compatible API. Uses raw fetch to bypass SDK x-stainless-* headers that MiniMax rejects with 403. Configure with MINIMAX_API_KEY and optional MINIMAX_MODEL (default: MiniMax-M2.7).
Thanks @Garygaoxiang for the implementation and the Anthropic baseURL fix!
Anthropic baseURL support (#103)
ANTHROPIC_BASE_URL is now forwarded to the SDK client, enabling custom Anthropic-compatible endpoints. Previously this env var was silently ignored.
Search project/cwd filter (#105)
/agentmemory/search and mem::search now accept optional project and cwd params to scope results to a specific project. Multi-project setups no longer contaminate context with unrelated observations.
Thanks @Getty for this contribution!
Graph viewer improvements (#101)
Zoom controls (+/-/recenter), double-click node expansion, per-type edge coloring, gradient node fills, and label background pills.
Thanks @Tanmay-008 for the UI polish!
DX Improvements
Memory search previews
Memories tab now shows 2-line content previews with search term highlighting (<mark>) and inline concept tag badges (max 4).
Token Savings dashboard card
Dashboard shows estimated token savings: observations * ~80 tokens vs sessions * TOKEN_BUDGET. Configurable via ?tokenBudget= URL param.
CLI agentmemory status command
Quick terminal health check without opening the browser:
npx @agentmemory/agentmemory statusREADME "First Steps After Install"
Worked example showing Session 1 capture → Session 2 context injection. Includes actual compressed observation format and verification checklist.
SkillKit universal install
npx skillkit install agentmemory # works with 32+ agentsBug Fixes
- Plugin hooks format: nested
{ hooks: [{ type, command }] }(#100) - Plugin skills path:
./skills/instead of../skills/(#94) - Theme auto-detection doesn't persist to localStorage (only manual toggles persist)
- Sessions endpoint returns
{sessions: [...]}not raw array — CLI status fixed
Contributors
- @Garygaoxiang — MiniMax provider + Anthropic baseURL fix (#103)
- @Getty — Search project/cwd filter (#105)
- @Tanmay-008 — Graph viewer UI improvements (#101)
- @chendonghui1 — Bug reports on plugin validation (#94, #100)
Full Changelog: v0.7.9...v0.8.0