fleet-memory/hindsight-integrations/openclawd
Nicolò Boschi 728ce13cea
fix: rename moltbot to openclawd (#246)
* fix: rename moltbot to openclawd

* fix

* fix

* fix: use single shared pg0 database for all banks + add default mission

This commit fixes a critical database isolation issue and adds the default
mission feature for the openclawd plugin.

## Changes:

**hindsight-embed:**
- Fixed daemon_client.py to use single shared database: pg0://hindsight-embed
- Previously, each bank_id would create a separate pg0 instance (wrong!)
- Now all banks share the same database with isolation via bank_id parameter
- Updated README to clarify database architecture

**openclawd plugin (v0.0.5):**
- Added default bank mission describing OpenClawd's multi-channel assistant role
- Added setBankMission() method to client
- Integrated mission setting during plugin initialization
- Added bankMission to plugin config schema with sensible default
- Updated docs to explain shared database architecture

## Why this matters:
Bank isolation should happen WITHIN the database (via separate tables/schemas),
not via separate database instances. Using HINDSIGHT_EMBED_BANK_ID to create
separate pg0 databases was architecturally wrong and caused confusion.

* ci: rename moltbot to openclawd in workflows and release script

- Updated build-moltbot-integration → build-openclawd-integration in test.yml
- Updated release-moltbot-integration → release-openclawd-integration in release.yml
- Updated all working directories from moltbot to openclawd
- Updated artifact names from moltbot-integration to openclawd-integration
- Added openclawd package.json to release.sh version bump script
2026-01-30 10:31:29 +01:00
..
src fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
.gitignore fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
clawdbot.plugin.json fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
install.sh fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
package-lock.json fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
package.json fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
README.md fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
tsconfig.json fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
vectorize-io-hindsight-moltbot-plugin-0.1.0.tgz fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00
vitest.config.ts fix: rename moltbot to openclawd (#246) 2026-01-30 10:31:29 +01:00

Hindsight Memory Plugin for OpenClawd

Biomimetic long-term memory for OpenClawd using Hindsight. Automatically captures conversations and intelligently recalls relevant context.

Quick Start

# 1. Configure your LLM provider
export OPENAI_API_KEY="sk-your-key"
clawdbot config set 'agents.defaults.models."openai/gpt-4o-mini"' '{}'

# 2. Install and enable the plugin
clawdbot plugins install @vectorize-io/hindsight-openclawd

# 3. Start OpenClawd
clawdbot gateway

That's it! The plugin will automatically start capturing and recalling memories.

Documentation

For full documentation, configuration options, troubleshooting, and development guide, see:

OpenClawd Integration Documentation

License

MIT