Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: FFatTiger/lore

v1.3.7

26 May 09:44
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

  • Unified open-source plugin connection settings around ~/.lore/config.json for base URL and API token. (96c88b6)
  • Promoted the tested pre-release to stable v1.3.7. (8960339)

Fixed

  • Preserved existing shared API tokens during reinstall when --api-token is omitted, avoiding accidental local auth loss. (96c88b6)
  • Standardized Claude Code and Codex MCP auth on Bearer headers instead of env-var-only or query-token behavior. (96c88b6)

Changes

  • OpenClaw, Pi, Hermes, Codex hooks, and Claude Code hooks now resolve shared config consistently. (96c88b6)
  • Installer scripts and docs now describe ~/.lore/config.json as the shared source for plugin base URL and token. (96c88b6)

Full Changelog: v1.3.6...v1.3.7

Assets 7
Loading

v1.3.7-pre.0

26 May 08:42
@FFatTiger FFatTiger

Choose a tag to compare

v1.3.7-pre.0 Pre-release
Pre-release

Highlights

  • Unified open-source plugin connection settings around ~/.lore/config.json for base URL and API token.
  • Configured Claude Code and Codex MCP with standard Bearer headers instead of query-token fallback.

Fixed

  • Preserved existing shared API tokens during reinstall when --api-token is omitted.
  • Made Codex installer and hooks prefer the shared Lore config while retaining legacy environment fallbacks.

Changes

  • Updated OpenClaw, Pi, Hermes, Codex hooks, and Claude Code hooks to resolve shared config consistently.
  • Updated installer scripts, plugin docs, and manifests for v1.3.7-pre.0.

Full Changelog: v1.3.6...v1.3.7-pre.0

Loading

v1.3.6

19 May 01:59
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

  • Restores the Aurora background as an explicit workspace preference instead of always rendering it behind the app. (3fdc5ab)

Fixed

  • Fixed the AppShell background behavior after the mobile navigation cleanup: the animated Aurora backdrop now defaults off, persists only when the user enables it, and no longer costs rendering work by default. (3fdc5ab)

Changes

  • Added a Waves toggle in the navigation dock, localized toggle labels, and an AuroraBackdrop UI wrapper so AppShell continues to depend on the local UI layer. (3fdc5ab)
  • Bumped web, MCP, plugin, extension, and lockfile versions to 1.3.6. (3fdc5ab)

Full Changelog: v1.3.5...v1.3.6

Loading

v1.3.5

18 May 05:43
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

Fixed

  • Fixed recall tracking guidance so agents copy session_id / query_id from <recall> into lore_get_node, keeping adoption accounting explicit and consistent across runtimes. (7b60260)
  • Fixed Lore search on runtimes without iterator-helper support by avoiding Iterator.prototype.toArray(). (a301e0f)
  • Fixed Docker runtime compatibility by moving the web image to Node 24. (5492c35)

Changes

  • Removed session-read state tracking from the backend/UI path; recall blocks are shown each time instead of relying on stored read state. (7934602)
  • Added Lore logo branding and updated install/plugin docs for the bridge-based release. (e1952c9, 2ab845a)
  • Bumped web, MCP, plugin, extension, and lockfile versions to 1.3.5. (017767a)

Full Changelog: v1.3.4...v1.3.5

Loading

v1.3.5-pre.2

18 May 02:58
@FFatTiger FFatTiger

Choose a tag to compare

v1.3.5-pre.2 Pre-release
Pre-release

Highlights

  • Runs the production web Docker image on Node 24 (node:24-bookworm-slim) to match the local development runtime.
  • Carries forward the v1.3.5-pre.1 search fix and v1.3.5-pre.0 stateless MCP endpoint changes.

Changes

  • Updated every stage in web/Dockerfile from Node 20 to Node 24.
  • Moved the MCP route regression test out of pages/api so it is not included as a production Pages API route.

Upgrade Notes

  • Prefer v1.3.5-pre.2 over pre.0/pre.1.
  • Docker tags will be 1.3.5-pre.2 and pre-latest after the release workflow completes.

Verification

  • cd web && npm test — 83 files / 1157 tests passed.
  • docker build -t lore-node24-check ./web — production build completed on node:24-bookworm-slim.
Loading

v1.3.5-pre.1

18 May 02:45
@FFatTiger FFatTiger

Choose a tag to compare

v1.3.5-pre.1 Pre-release
Pre-release

Highlights

  • Fixes Lore search on the Node 20 Docker runtime.
  • Keeps the stateless MCP endpoint change from v1.3.5-pre.0.

Changes

  • Replaced Iterator.prototype.toArray() / Array.prototype.toSorted() usage in search with Node 20-compatible Array.from(...).sort(...).
  • Added regression coverage that removes Iterator.prototype.toArray to simulate the production runtime.

Upgrade Notes

  • Prefer v1.3.5-pre.1 over v1.3.5-pre.0; pre.0 can fail lore_search on Node 20.

Verification

  • cd web && npm test — 83 files / 1157 tests passed.
  • cd pi-extension && npm test — 3 files / 20 tests passed.
  • cd openclaw-plugin && npm run build && npm test — 5 files / 121 tests passed.
  • cd hermes-plugin && python3 lore_memory/test_thin_adapters.py — 14 tests passed.
Loading

v1.3.5-pre.0

18 May 02:27
@FFatTiger FFatTiger

Choose a tag to compare

v1.3.5-pre.0 Pre-release
Pre-release

Highlights

  • Adds the Lore bridge startup/recall endpoints for shared lifecycle context across agent integrations.
  • Routes Codex, Claude Code, Pi, OpenClaw, and Hermes hooks through the bridge where applicable.
  • Makes the MCP endpoint stateless so stale mcp-session-id values after backend restart no longer block tool calls.

Changes

  • Removed SessionEnd and session read-state tracking; recall candidates are shown every time.
  • Kept recall adoption tracking via query_id / session_id usage records.
  • Simplified plugin tool surfaces by removing session read tracking tools and related backend routes.
  • Added regression coverage for stale MCP sessions after backend restart.

Upgrade Notes

  • This is a prerelease (v1.3.5-pre.0). Use Docker tag 1.3.5-pre.0 or pre-latest after the release workflow finishes.
  • Agent plugins should update to the matching 1.3.5-pre.0 artifacts from this release.

Verification

  • cd web && npm test — 83 files / 1156 tests passed.
  • cd pi-extension && npm test — 3 files / 20 tests passed.
  • cd openclaw-plugin && npm run build && npm test — 5 files / 121 tests passed.
  • cd hermes-plugin && python3 lore_memory/test_thin_adapters.py — 14 tests passed.
Loading

v1.3.4

17 May 13:45
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

  • Prevent agent memory updates from accidentally clearing glossary keywords. (7a2d4bc)

Fixed

  • Removed the glossary: [] update-tool clearing footgun. (7a2d4bc)
  • Removed ambiguous glossary replacement semantics from update tools. (7a2d4bc)

Changes

  • Update tools now expose only glossary_add and glossary_remove for keyword edits. (7a2d4bc)
  • Plugin and package manifests now report 1.3.4. (7a2d4bc)
Loading

v1.3.3

17 May 12:48
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

  • Improved Dream change review and mobile navigation polish for a cleaner v1.3.x stable release.

Changes

  • Dream review: added per-change review status for Dream memory changes, with approve/dismiss controls and optional dream.auto_approve_changes setting defaulting to off.
  • Dream UI: improved detail view handling for workflow events, memory change review actions, and rollback visibility.
  • LLM reliability: added retry handling for provider calls.
  • Mobile UI: moved the app dock to the bottom on mobile, kept desktop navigation at the top, removed the background toggle, and made the Aurora background always enabled.
  • Operations: added scripts/uninstall.sh for removing Lore from Claude Code, Codex, Pi, OpenClaw, and Hermes channels.
  • Version sync: bumped web, MCP server, plugin, extension, and lockfile versions to 1.3.3.

Upgrade Notes

  • Docker users can upgrade to fffattiger/lore:latest after the release workflow finishes, or pin fffattiger/lore:1.3.3.
  • dream.auto_approve_changes defaults to false; Dream-generated memory changes remain pending unless explicitly approved or the setting is enabled.
  • No database migration or environment variable changes are required.

Verification

  • cd web && npm test
  • cd web && npm run build
  • cd openclaw-plugin && npm run build && npm test
  • cd pi-extension && npm test
Loading

v1.3.2

13 May 05:57
@FFatTiger FFatTiger

Choose a tag to compare

Highlights

  • 修复 dream diary 凌晨运行时拿不到用户交互数据的问题,日记生成质量恢复正常

Changes

  • dream diary 数据收集:getDreamRecallReview 新增 days 参数,runDream() 改为查询过去 24 小时而非仅当天(凌晨 3-4 点执行时「今天」只有 3 小时数据)
  • recall metadata 内容截断:query content 截断从 50 字符提升至 300 字符,LLM 能理解完整用户上下文
  • 工具重命名:get_today_recall_metadataget_recall_metadata(不再仅限单日查询)
  • UI 修复:限制 recall query 列宽度避免撑破布局
  • chore:react-doctor 发现的问题修复

Upgrade Notes

No special upgrade steps. 标准 docker compose pull + up 即可。

Verification

  • npm test — 80/80 dream 测试通过
  • npm run typecheck
  • 生产库 24 小时 recall queries 共 68 条,JSON 注入大小约 31KB,在可接受范围
Loading
Previous 1 3
Previous

AltStyle によって変換されたページ (->オリジナル) /