@linzumi/cli 0.0.25-beta → 0.0.26-beta

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/README.md CHANGED
@@ -279,7 +279,7 @@ intentionally. Every action is auditable from the thread.
279
279
  ## Pinning a version
280
280
 
281
281
  ```bash
282
- npm install -g @linzumi/cli@0.0.25-beta
282
+ npm install -g @linzumi/cli@0.0.26-beta
283
283
  linzumi --version
284
284
  ```
285
285
 
package/dist/index.js CHANGED
@@ -4244,9 +4244,9 @@ trust_level = "trusted"
4244
4244
  }
4245
4245
  const table = config.slice(range.start, range.end);
4246
4246
  const trustLine = /^(\s*trust_level\s*=\s*).*(\r?)$/m;
4247
- const nextTable = trustLine.test(table) ? table.replace(trustLine, '$1"trusted"$2') : table.replace(/\r?\n/, `
4247
+ const nextTable = trustLine.test(table) ? table.replace(trustLine, '$1"trusted"$2') : `${trimTrailingNewlines(table)}
4248
4248
  trust_level = "trusted"
4249
- `);
4249
+ `;
4250
4250
  return `${config.slice(0, range.start)}${nextTable}${config.slice(range.end)}`;
4251
4251
  }
4252
4252
  function findTableRange(config, header) {
@@ -8469,7 +8469,7 @@ async function main(args) {
8469
8469
  process.stdout.write(connectGuideText());
8470
8470
  return;
8471
8471
  case "version":
8472
- process.stdout.write(`linzumi 0.0.25-beta
8472
+ process.stdout.write(`linzumi 0.0.26-beta
8473
8473
  `);
8474
8474
  return;
8475
8475
  case "auth":
@@ -8890,7 +8890,7 @@ async function parseRunnerArgs(args, deps = {
8890
8890
  process.exit(0);
8891
8891
  }
8892
8892
  if (values.get("version") === true) {
8893
- process.stdout.write(`linzumi 0.0.25-beta
8893
+ process.stdout.write(`linzumi 0.0.26-beta
8894
8894
  `);
8895
8895
  process.exit(0);
8896
8896
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.25-beta",
3
+ "version": "0.0.26-beta",
4
4
  "description": "Linzumi CLI — 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": {