feat(plugins): add SQLite plugin state store (#74190)

* feat(plugins): add experimental sqlite plugin state store
This commit is contained in:
Alex Knight
2026-04-29 23:02:14 +10:00
committed by GitHub
parent abaa4326d8
commit bbf985d50a
16 changed files with 1822 additions and 6 deletions

View File

@@ -458,6 +458,9 @@ export function createPluginRuntimeMock(overrides: DeepPartial<PluginRuntime> =
},
state: {
resolveStateDir: vi.fn(() => "/tmp/openclaw"),
openKeyedStore: vi.fn(() => {
throw new Error("openKeyedStore mock is not configured");
}) as unknown as PluginRuntime["state"]["openKeyedStore"],
},
tasks: {
runs: {