switchroom 0.19.16 → 0.19.17
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
|
@@ -2120,7 +2120,7 @@ var init_esm = __esm(() => {
|
|
|
2120
2120
|
});
|
|
2121
2121
|
|
|
2122
2122
|
// src/build-info.ts
|
|
2123
|
-
var VERSION = "0.19.
|
|
2123
|
+
var VERSION = "0.19.17", COMMIT_SHA = "75114a8a";
|
|
2124
2124
|
|
|
2125
2125
|
// src/cli/resolve-version.ts
|
|
2126
2126
|
import { existsSync, readFileSync } from "node:fs";
|
|
@@ -41926,7 +41926,7 @@ function isAdaptiveThinkingOpus(model) {
|
|
|
41926
41926
|
if (!model)
|
|
41927
41927
|
return false;
|
|
41928
41928
|
const m = model.trim().toLowerCase();
|
|
41929
|
-
return m === "opus" || m.startsWith("claude-opus-4");
|
|
41929
|
+
return m === "opus" || m.startsWith("claude-opus-4") || m === "claude-opus-5" || m.startsWith("claude-opus-5-");
|
|
41930
41930
|
}
|
|
41931
41931
|
function assessThinkingEffortRisk(model, effort) {
|
|
41932
41932
|
if (!effort)
|
|
@@ -26664,7 +26664,7 @@ import { existsSync as existsSync9, readFileSync as readFileSync7 } from "node:f
|
|
|
26664
26664
|
import { dirname as dirname5, join as join7 } from "node:path";
|
|
26665
26665
|
|
|
26666
26666
|
// src/build-info.ts
|
|
26667
|
-
var VERSION = "0.19.
|
|
26667
|
+
var VERSION = "0.19.17";
|
|
26668
26668
|
|
|
26669
26669
|
// src/cli/resolve-version.ts
|
|
26670
26670
|
function readPackageVersion() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "switchroom",
|
|
3
3
|
"//version": "NOT the release version — source of truth is the git tag, resolved by scripts/build.mjs:resolveVersion() (see CLAUDE.md > Standard release process). This field is stale by design and only the Layer-4 dev/non-tag fallback for build.mjs + src/cli/resolve-version.ts; do NOT bump it expecting a release to pick it up. npm-pack tarball naming needs a real version — do that as an UNCOMMITTED pack-time bump (see release step 6), never a committed one.",
|
|
4
|
-
"version": "0.19.
|
|
4
|
+
"version": "0.19.17",
|
|
5
5
|
"description": "Run Claude Code 24/7 on your Claude Pro/Max subscription over Telegram. Open-source alternative to OpenClaw and NanoClaw — no API keys.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -94758,10 +94758,10 @@ function startOutboxSweep(deps) {
|
|
|
94758
94758
|
}
|
|
94759
94759
|
|
|
94760
94760
|
// ../src/build-info.ts
|
|
94761
|
-
var VERSION = "0.19.
|
|
94762
|
-
var COMMIT_SHA = "
|
|
94763
|
-
var COMMIT_DATE = "2026-07-
|
|
94764
|
-
var LATEST_PR =
|
|
94761
|
+
var VERSION = "0.19.17";
|
|
94762
|
+
var COMMIT_SHA = "75114a8a";
|
|
94763
|
+
var COMMIT_DATE = "2026-07-25T06:59:05+10:00";
|
|
94764
|
+
var LATEST_PR = 3525;
|
|
94765
94765
|
var COMMITS_AHEAD_OF_TAG = 0;
|
|
94766
94766
|
|
|
94767
94767
|
// gateway/boot-version.ts
|