switchroom 0.16.21 → 0.16.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-scheduler/index.js +80 -80
- package/dist/auth-broker/index.js +80 -80
- package/dist/cli/autoaccept-poll.js +8 -8
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/notion-write-pretool.mjs +82 -82
- package/dist/cli/skill-validate-pretool.mjs +72 -72
- package/dist/cli/switchroom.js +608 -380
- package/dist/host-control/main.js +157 -157
- package/dist/vault/approvals/kernel-server.js +82 -82
- package/dist/vault/broker/server.js +83 -83
- package/package.json +1 -1
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +193 -193
- package/telegram-plugin/dist/server.js +160 -160
- package/telegram-plugin/registry/turns-schema.ts +3 -1
|
@@ -218,7 +218,9 @@ export function openTurnsDb(agentDir: string): SqliteDatabase {
|
|
|
218
218
|
const db = new Database(path, { create: true })
|
|
219
219
|
applySchema(db)
|
|
220
220
|
try {
|
|
221
|
-
|
|
221
|
+
// 0o644 so the switchroom-web container (different UID, same host bind-mount)
|
|
222
|
+
// can read turn history for the Hermes Desktop history panel.
|
|
223
|
+
chmodSync(path, 0o644)
|
|
222
224
|
} catch {
|
|
223
225
|
/* ignore — chmod not supported on some FUSE mounts */
|
|
224
226
|
}
|