switchroom 0.13.46 → 0.13.47
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/cli/switchroom.js
CHANGED
|
@@ -47902,8 +47902,8 @@ var {
|
|
|
47902
47902
|
} = import__.default;
|
|
47903
47903
|
|
|
47904
47904
|
// src/build-info.ts
|
|
47905
|
-
var VERSION = "0.13.
|
|
47906
|
-
var COMMIT_SHA = "
|
|
47905
|
+
var VERSION = "0.13.47";
|
|
47906
|
+
var COMMIT_SHA = "f8dcdada";
|
|
47907
47907
|
|
|
47908
47908
|
// src/cli/agent.ts
|
|
47909
47909
|
init_source();
|
|
@@ -48474,11 +48474,14 @@ Example response shapes:
|
|
|
48474
48474
|
function alignAgentUid(name, agentDir, uid, opts = {}) {
|
|
48475
48475
|
const writeOut = opts.writeOut ?? ((s) => process.stdout.write(s));
|
|
48476
48476
|
const logsDir = join8(homedir4(), ".switchroom", "logs", name);
|
|
48477
|
+
const auditDir = join8(homedir4(), ".switchroom", "audit", name);
|
|
48477
48478
|
const paths = [];
|
|
48478
48479
|
if (existsSync11(agentDir))
|
|
48479
48480
|
paths.push(agentDir);
|
|
48480
48481
|
if (existsSync11(logsDir))
|
|
48481
48482
|
paths.push(logsDir);
|
|
48483
|
+
if (existsSync11(auditDir))
|
|
48484
|
+
paths.push(auditDir);
|
|
48482
48485
|
if (paths.length === 0)
|
|
48483
48486
|
return { chowned: false, paths: [] };
|
|
48484
48487
|
const priors = [];
|
|
@@ -74711,6 +74714,7 @@ async function ensureHostMountSources(config) {
|
|
|
74711
74714
|
dirs.push(join62(home2, ".switchroom", "agents", name));
|
|
74712
74715
|
dirs.push(join62(home2, ".switchroom", "logs", name));
|
|
74713
74716
|
dirs.push(join62(home2, ".claude", "projects", name));
|
|
74717
|
+
dirs.push(join62(home2, ".switchroom", "audit", name));
|
|
74714
74718
|
}
|
|
74715
74719
|
for (const dir of dirs) {
|
|
74716
74720
|
await mkdir(dir, { recursive: true });
|
package/package.json
CHANGED
|
@@ -48732,10 +48732,10 @@ function sweepStaleTurnActiveMarker(stateDir, opts) {
|
|
|
48732
48732
|
}
|
|
48733
48733
|
|
|
48734
48734
|
// ../src/build-info.ts
|
|
48735
|
-
var VERSION = "0.13.
|
|
48736
|
-
var COMMIT_SHA = "
|
|
48737
|
-
var COMMIT_DATE = "2026-05-25T19:
|
|
48738
|
-
var LATEST_PR =
|
|
48735
|
+
var VERSION = "0.13.47";
|
|
48736
|
+
var COMMIT_SHA = "f8dcdada";
|
|
48737
|
+
var COMMIT_DATE = "2026-05-25T19:41:23Z";
|
|
48738
|
+
var LATEST_PR = 1835;
|
|
48739
48739
|
var COMMITS_AHEAD_OF_TAG = 0;
|
|
48740
48740
|
|
|
48741
48741
|
// gateway/boot-version.ts
|