switchroom 0.20.15 → 0.20.16
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.20.
|
|
2123
|
+
var VERSION = "0.20.16", COMMIT_SHA = "fc0a754f";
|
|
2124
2124
|
|
|
2125
2125
|
// src/cli/resolve-version.ts
|
|
2126
2126
|
import { existsSync, readFileSync } from "node:fs";
|
|
@@ -21559,7 +21559,7 @@ function allocateAgentUid(name) {
|
|
|
21559
21559
|
}
|
|
21560
21560
|
|
|
21561
21561
|
// src/build-info.ts
|
|
21562
|
-
var VERSION = "0.20.
|
|
21562
|
+
var VERSION = "0.20.16";
|
|
21563
21563
|
|
|
21564
21564
|
// src/setup/hindsight-recall-passthrough.ts
|
|
21565
21565
|
var HINDSIGHT_RECALL_TAG_WEIGHT_SEED = Object.freeze({ sidechain: 0.8 });
|
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.20.
|
|
4
|
+
"version": "0.20.16",
|
|
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": {
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"lint:litellm-config-guard": "node scripts/check-litellm-config-guard.mjs",
|
|
52
52
|
"lint:release-asset-contract": "node scripts/check-release-asset-names.mjs",
|
|
53
53
|
"lint:changelog-entry": "node scripts/check-changelog-entry.mjs",
|
|
54
|
+
"changelog:generate": "node scripts/gen-changelog-entry.mjs",
|
|
54
55
|
"lint:agent-attribution-trailers": "node scripts/check-agent-attribution-trailers.mjs",
|
|
55
56
|
"lint:hostd-template-guard": "bun scripts/check-hostd-template-guard.ts",
|
|
56
57
|
"lint:bench-baseline-anonymised": "node scripts/check-bench-baseline-anonymised.mjs",
|
|
@@ -139,6 +139,17 @@ is not a rebuttal.
|
|
|
139
139
|
`AWAITING_CHECKS` means a required workflow is not listening for
|
|
140
140
|
`merge_group`; `.github/MERGE-QUEUE.md` owns that failure mode and the
|
|
141
141
|
invariants that prevent it.
|
|
142
|
+
- **Stage the CHANGELOG entry author-side, before `gh pr create`.** A PR that
|
|
143
|
+
changes shippable code must add a `## Unreleased` entry (#4469's
|
|
144
|
+
`check-changelog-entry.mjs`, part of `npm run lint`, enforces it). Don't
|
|
145
|
+
hand-write it: run `bun run changelog:generate` in the repo — it derives the
|
|
146
|
+
entry from your conventional-commit title, appends it under `## Unreleased`
|
|
147
|
+
(idempotently — a second run is a no-op), and respects the escape hatches. Then
|
|
148
|
+
commit CHANGELOG.md so it lands in your own push. It runs AUTHOR-side, not in
|
|
149
|
+
CI, because a CI commit-back with the default `GITHUB_TOKEN` cannot re-trigger
|
|
150
|
+
the required checks and would wedge the PR (`.github/MERGE-QUEUE.md` §
|
|
151
|
+
"Author-side changelog generation"). Opt a docs/chore/test PR out with the
|
|
152
|
+
`no-changelog` label or a `[skip changelog]` token on its own line.
|
|
142
153
|
- **A test that wouldn't fail on the bug it guards is not a test.** Assert the
|
|
143
154
|
observable outcome, not that the code path executed.
|
|
144
155
|
- **Prefer a deterministic mechanism over prompt discipline.** If a check, a
|
|
@@ -103439,10 +103439,10 @@ function startOutboxSweep(deps) {
|
|
|
103439
103439
|
}
|
|
103440
103440
|
|
|
103441
103441
|
// ../src/build-info.ts
|
|
103442
|
-
var VERSION2 = "0.20.
|
|
103443
|
-
var COMMIT_SHA = "
|
|
103444
|
-
var COMMIT_DATE = "2026-08-
|
|
103445
|
-
var LATEST_PR =
|
|
103442
|
+
var VERSION2 = "0.20.16";
|
|
103443
|
+
var COMMIT_SHA = "fc0a754f";
|
|
103444
|
+
var COMMIT_DATE = "2026-08-07T22:36:16Z";
|
|
103445
|
+
var LATEST_PR = 4520;
|
|
103446
103446
|
var COMMITS_AHEAD_OF_TAG = 0;
|
|
103447
103447
|
|
|
103448
103448
|
// gateway/boot-version.ts
|