@linzumi/cli 1.0.225 → 1.0.227

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "1.0.225",
3
+ "version": "1.0.227",
4
4
  "description": "Linzumi CLI \u2014 point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -308,6 +308,7 @@ function readAuditEvents(logFile) {
308
308
 
309
309
  const LOOPBACK_PORT_PATTERN = /127\\.0\\.0\\.1:\\d+/g;
310
310
  const FORWARDS_PORT_PATTERN = /\\/forwards\\/\\d+\\//g;
311
+ const COLLABORATION_PORT_PATTERN = /\\/_linzumi\\/collaboration\\/\\d+/g;
311
312
 
312
313
  function normalizeFlowValue(value, dir) {
313
314
  let normalized = substitute(value, dir, '$DIR');
@@ -317,6 +318,7 @@ function normalizeFlowValue(value, dir) {
317
318
  .replace(ISO_PATTERN, '[iso]')
318
319
  .replace(LOOPBACK_PORT_PATTERN, '127.0.0.1:[port]')
319
320
  .replace(FORWARDS_PORT_PATTERN, '/forwards/[port]/')
321
+ .replace(COLLABORATION_PORT_PATTERN, '/_linzumi/collaboration/[port]')
320
322
  );
321
323
  return normalized;
322
324
  }
@@ -159,6 +159,14 @@ const knownSites = [
159
159
  pattern: `cliVersion: '${oldVersion}',`,
160
160
  replacement: `cliVersion: '${newVersion}',`,
161
161
  },
162
+ {
163
+ // Spec: plans/2026-08-15-runner-join-refusal-observability.spec.md.
164
+ // Recovery fixtures pin real CLI versions and must move with a release.
165
+ file: 'test/updateNudge.test.ts',
166
+ description: 'commander join-refusal recovery target version pins',
167
+ pattern: oldVersion,
168
+ replacement: newVersion,
169
+ },
162
170
  ];
163
171
 
164
172
  function countOccurrences(haystack, needle) {