@tpsdev-ai/openclaw-flair
v0.4.1
Published
OpenClaw memory plugin for Flair — agent identity and semantic memory
Maintainers
Readme
@tpsdev-ai/openclaw-flair
OpenClaw memory plugin for Flair — agent identity and semantic memory. Replaces the built-in MEMORY.md / memory-lancedb system with Flair as the single source of truth for agent memory.
Uses Flair's native Harper vector embeddings — no OpenAI API key required.
Features
- Semantic search via
memory_recall→ Flair's HNSW vector index - Persistent storage via
memory_store→ Ed25519-authenticated writes - Memory retrieval via
memory_get→ fetch by ID - Auto-bootstrap — injects relevant memories into context at session start
- Auto-capture — automatically stores important information from conversations
- Multi-agent —
agentId: "auto"resolves per-session for shared gateways - Durability levels — permanent, persistent, standard, ephemeral
- Memory versioning —
supersedesfield creates version chains
Prerequisites
- A running Flair instance (Harper v5+)
- An agent record in Flair with an Ed25519 public key
- The corresponding private key at
~/.flair/keys/<agentId>.key(generated byflair agent add)
Installation
# From npm (when published)
openclaw plugin install @tpsdev-ai/openclaw-flair
# From source
cd plugins/openclaw-memory
npm installConfiguration
In your OpenClaw config (openclaw.json):
{
"plugins": {
"allow": ["memory-flair"],
"slots": {
"memory": "memory-flair"
},
"entries": {
"memory-flair": {
"enabled": true,
"config": {
"url": "http://localhost:9926",
"agentId": "auto",
"autoCapture": true,
"autoRecall": true,
"maxRecallResults": 5,
"maxBootstrapTokens": 4000
}
}
}
}
}Config Options
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| url | string | http://127.0.0.1:9926 | Flair server URL |
| agentId | string | required | Agent ID for memory namespacing. Use "auto" for multi-agent gateways. |
| keyPath | string | auto-resolved | Path to Ed25519 private key |
| autoCapture | boolean | true | Auto-capture important info from conversations |
| autoRecall | boolean | true | Inject relevant memories at session start |
| maxRecallResults | number | 5 | Max results for memory_recall |
| maxBootstrapTokens | number | 4000 | Max tokens for bootstrap context injection |
Auth
Uses Ed25519 signatures. The plugin looks for private keys in this order:
keyPathfrom config (if explicitly set)$FLAIR_KEY_DIR/<agentId>.key(ifFLAIR_KEY_DIRenv var is set)~/.flair/keys/<agentId>.key(standard path — useflair agent addto generate)
Key files may be raw 32-byte binary seeds (written by flair agent add) or base64-encoded seeds. Both are supported.
License
Apache-2.0
