mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 17:26:15 +00:00
* test(codex): shorten placeholder auth fixture strings * feat(plugin-state): add reject-new overflow policy for keyed namespaces * feat(agents): thread agent identity and session generation through reset and hooks * refactor(codex): add SQLite-backed app-server thread binding store * refactor(codex): move app-server runtime callers onto the binding store * refactor(codex): move conversation, entry, and thread-tool flows onto the binding store * refactor(codex): move command handlers onto the binding store * feat(codex): import legacy binding sidecars via doctor state migration * fix(codex): keep doctor sidecar scan inside stateDir * fix(codex): make binding migration landable * chore(changelog): defer release note * test(plugin-state): stabilize durable-capacity ordering
4 lines
215 B
TypeScript
4 lines
215 B
TypeScript
/** Process-stable plugin-state metadata for Codex app-server bindings. */
|
|
export const CODEX_APP_SERVER_BINDING_NAMESPACE = "app-server-thread-bindings";
|
|
export const CODEX_APP_SERVER_BINDING_MAX_ENTRIES = 50_000;
|