feat(session): persist model tier overrides per session

Store per-session config in SQLite and route /model and /reset through command fast-paths so channel sessions keep independent model selection across reconnects and restarts.
This commit is contained in:
William Valentin
2026-02-13 01:04:26 -08:00
parent 3472a0b926
commit 9f81c01603
35 changed files with 1438 additions and 144 deletions
+46 -1
View File
@@ -1,6 +1,6 @@
{
"version": "1.0",
"updated_at": "2026-02-12",
"updated_at": "2026-02-13",
"description": "Tracks the status of all Flynn plans and implementation phases",
"plans": {
@@ -1195,6 +1195,51 @@
],
"test_status": "typecheck + targeted guardrails/autonomy/executor/engine/schema/template tests + full suite passing (1490/1490); lint passing baseline (394 warnings, 0 errors); build passing"
},
"model-persistence-per-session": {
"file": "2026-02-11-model-persistence-per-session.md",
"status": "completed",
"date": "2026-02-13",
"summary": "Implemented per-session model tier persistence across routing, gateway, and Telegram by adding SQLite session config storage and wiring /model and /reset command fast-paths to persist/clear model overrides.",
"files_modified": [
"src/session/store.ts",
"src/session/store.test.ts",
"src/session/manager.ts",
"src/session/manager.test.ts",
"src/session/index.ts",
"src/daemon/routing.ts",
"src/daemon/routing.test.ts",
"src/gateway/session-bridge.ts",
"src/gateway/session-bridge.test.ts",
"src/gateway/handlers/agent.ts",
"src/gateway/handlers/agent.test.ts",
"src/gateway/server.ts",
"src/gateway/handlers/index.ts",
"src/channels/telegram/adapter.ts",
"src/daemon/index.ts",
"src/daemon/services.ts",
"src/config/schema.ts",
"src/config/schema.test.ts",
"src/backends/native/orchestrator.ts",
"src/backends/native/orchestrator.test.ts",
"src/context/compaction.ts",
"src/context/compaction.test.ts",
"src/memory/store.ts",
"src/memory/store.test.ts",
"src/memory/index.ts",
"src/tools/builtin/memory-read.ts",
"src/tools/builtin/memory-search.ts",
"src/tools/builtin/memory-write.ts",
"src/models/capabilities.ts",
"src/automation/cron.ts",
"src/automation/heartbeat.ts",
"src/cli/tui.ts",
"src/audit/types.ts",
"src/audit/logger.ts",
"src/audit/rotation.ts",
"config/default.yaml"
],
"test_status": "pnpm typecheck + pnpm test:run (1586/1586) + pnpm build passing"
},
"skills_infrastructure": {
"file": "2026-02-11-skills-infrastructure-plan.md",
"status": "planned",