* fix(ci): resolve all CI failures — unversioned integrations, test retries - Move integration docs to separate unversioned docs plugin (docs-integrations/) so new integrations don't need to be duplicated across versioned_docs - Remove integration pages from versioned_docs (v0.3, v0.4) — sidebar entries now use links instead of doc refs - Add missing title/description SEO frontmatter to autogen.md - Add retry logic (2 attempts) to test-doc-examples.sh for transient LLM timeouts - Add pytest-rerunfailures to test-api with --reruns 2 for flaky Gemini-dependent integration tests * ci: retrigger * fix: graph entity inheritance, SyncTaskBackend error propagation, fact_type test regressions - Fix observation entity inheritance in get_graph_data: the unit_entities query only fetched entities for visible observation IDs, not their source memory IDs, so the inheritance loop always found an empty entity_map - Remove error swallowing in SyncTaskBackend._execute_task so test failures surface instead of being silently logged - Wrap remaining consolidation submission call sites with try/except since consolidation is non-critical for those operations - Fix test_sync_backend test to expect errors to propagate - Remove fact_type=["world"] filter from test_document_upsert_behavior and test_mentioned_at_from_context_string (same PR #848 regression) - Remove flaky marker from consolidation test (now deterministic)
3.9 KiB
3.9 KiB
| hide_table_of_contents |
|---|
| true |
import PageHero from '@site/src/components/PageHero';
← OpenClaw integration
0.5.1
Bug Fixes
- Fixed JSON manifest formatting issues in the OpenClaw plugin to prevent manifest parsing/loading problems. (
704e41fa)
0.5.0
Breaking Changes
- Removed hardcoded default model settings from integrations so model/provider must be configured explicitly. (
58e68f3e)
Features
- Added configurable, structured logging for the OpenClaw integration. (
d441ab81) - Added an auto-recall toggle and support for excluding specific providers from recall/retention. (
3f9eb27c) - Added configuration to skip recall/retention for selected providers. (
fb7be3ec) - Added dynamic per-channel memory banks to isolate memory across channels. (
9a776e9f) - Added support for using an external Hindsight API backend. (
6b346925) - Added plugin configuration options to select the LLM provider and model. (
8564135b)
Improvements
- Added control over where recalled memories are injected to better preserve prompt caching. (
200bab23) - Improved recall/retention controls and scalability, and added Gemini safety settings support. (
d425e93c) - Memory retention now periodically keeps recent conversation turns (default every 10 turns) to improve continuity. (
ad1660b3) - Improved OpenClaw and embedding parameters for better integration behavior and configuration. (
749478d9) - Improved OpenClaw configuration setup and initialization behavior. (
27498f99)
Bug Fixes
- Added a configurable auto-recall timeout to prevent recalls from hanging or taking too long. (
cd4d449f) - Recalled memories are now injected as system context for more reliable behavior. (
b17f338e) - Health check requests now include the auth token to avoid unauthorized failures. (
40b02645) - Improved stability and safety with better shell handling, HTTP mode support, lazy reinitialization, and per-user memory banks. (
c4610130) - Fixed failures when ingesting very large content (E2BIG). (
6bad6673) - Prevented memory retention from recursing indefinitely. (
4f112101) - Prevented user memories from being wiped on every new session. (
981cf605) - Improved shell argument escaping to prevent command failures with special characters. (
63e2964a) - Renamed the OpenClaw binary to the correct name to avoid invocation/config mismatches. (
b364bc34)