release(openclaw): v0.5.1

This commit is contained in:
Nicolò Boschi 2026-03-30 16:58:18 +02:00
parent 41bb6d710b
commit 2c72af5525
4 changed files with 14 additions and 2 deletions

View file

@ -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**

View file

@ -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",

View file

@ -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**

View file

@ -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)