← Back to Plugins
Tools

Memory Usable

allora2026 By allora2026 👁 16 views ▲ 0 votes

Usable-backed memory plugin for OpenClaw

GitHub

README

# openclaw-memory-usable

Usable-backed memory plugin for OpenClaw (`kind: "memory"`).

## What it provides

- `memory_search` → Usable `agentic-search-fragments` (or `search-memory-fragments`)
- `memory_get` → Usable `get-memory-fragment-content`

## Config

```json5
{
  plugins: {
    load: { paths: ["/absolute/path/to/openclaw-memory-usable"] },
    entries: {
      "memory-usable": {
        enabled: true,
        config: {
          apiTokenEnv: "USABLE_API_TOKEN",
          workspaceId: "bb7e5e59-a9b6-481b-9c12-c2414fb4c3e0",
          baseUrl: "https://usable.dev",
          searchTool: "agentic-search-fragments",
          defaultLimit: 8,
          tags: ["openclaw", "repo:openclaw"]
        }
      }
    },
    slots: {
      memory: "memory-usable"
    }
  }
}
```

Restart gateway after config changes.

## Notes

- `memory_get.relPath` is interpreted as **Usable fragmentId**.
- Token must include workspace access + `fragments.read`.
- Add `fragments.create`/`fragments.update` if you later extend write tools.
tools

Comments

Sign in to leave a comment

Loading comments...