From 2c72af5525ac54741317fabfdbaae30b8d9e92e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Mon, 30 Mar 2026 16:58:18 +0200 Subject: [PATCH] release(openclaw): v0.5.1 --- hindsight-docs/src/pages/changelog/integrations/openclaw.md | 6 ++++++ hindsight-integrations/openclaw/package.json | 2 +- .../references/changelog/integrations/openclaw.md | 6 ++++++ .../references/sdks/integrations/llamaindex.md | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/hindsight-docs/src/pages/changelog/integrations/openclaw.md b/hindsight-docs/src/pages/changelog/integrations/openclaw.md index aeef7dbb..85ae0fbf 100644 --- a/hindsight-docs/src/pages/changelog/integrations/openclaw.md +++ b/hindsight-docs/src/pages/changelog/integrations/openclaw.md @@ -8,6 +8,12 @@ import PageHero from '@site/src/components/PageHero'; [← OpenClaw integration](/sdks/integrations/openclaw) +## [0.5.1](https://github.com/vectorize-io/hindsight/tree/integrations/openclaw/v0.5.1) + +**Bug Fixes** + +- Fixed JSON manifest formatting issues in the OpenClaw plugin to prevent manifest parsing/loading problems. ([`704e41fa`](https://github.com/vectorize-io/hindsight/commit/704e41fa)) + ## [0.5.0](https://github.com/vectorize-io/hindsight/tree/integrations/openclaw/v0.5.0) **Breaking Changes** diff --git a/hindsight-integrations/openclaw/package.json b/hindsight-integrations/openclaw/package.json index a4b57d01..7e366de7 100644 --- a/hindsight-integrations/openclaw/package.json +++ b/hindsight-integrations/openclaw/package.json @@ -1,6 +1,6 @@ { "name": "@vectorize-io/hindsight-openclaw", - "version": "0.5.0", + "version": "0.5.1", "description": "Hindsight memory plugin for OpenClaw - biomimetic long-term memory with fact extraction", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/skills/hindsight-docs/references/changelog/integrations/openclaw.md b/skills/hindsight-docs/references/changelog/integrations/openclaw.md index 829aba5d..d95ee36e 100644 --- a/skills/hindsight-docs/references/changelog/integrations/openclaw.md +++ b/skills/hindsight-docs/references/changelog/integrations/openclaw.md @@ -8,6 +8,12 @@ import PageHero from '@site/src/components/PageHero'; [← OpenClaw integration](../../sdks/integrations/openclaw.md) +## [0.5.1](https://github.com/vectorize-io/hindsight/tree/integrations/openclaw/v0.5.1) + +**Bug Fixes** + +- Fixed JSON manifest formatting issues in the OpenClaw plugin to prevent manifest parsing/loading problems. ([`704e41fa`](https://github.com/vectorize-io/hindsight/commit/704e41fa)) + ## [0.5.0](https://github.com/vectorize-io/hindsight/tree/integrations/openclaw/v0.5.0) **Breaking Changes** diff --git a/skills/hindsight-docs/references/sdks/integrations/llamaindex.md b/skills/hindsight-docs/references/sdks/integrations/llamaindex.md index 3006abe6..0f95feb3 100644 --- a/skills/hindsight-docs/references/sdks/integrations/llamaindex.md +++ b/skills/hindsight-docs/references/sdks/integrations/llamaindex.md @@ -37,7 +37,7 @@ async def main(): mission="Track user preferences and project context", ) - agent = ReActAgent(tools=tools, llm=OpenAI(model="gpt-4o"), memory=memory) + agent = ReActAgent(tools=[], llm=OpenAI(model="gpt-4o"), memory=memory) response = await agent.run("Remember that I prefer dark mode") print(response)