@linzumi/cli 0.0.91-beta → 0.0.92-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
@@ -58,7 +58,7 @@ Install the CLI or run it with `npx`:
58
58
  ```bash
59
59
  npm install -g @linzumi/cli@latest
60
60
  npx -y @linzumi/cli@latest signup
61
- npx -y @linzumi/cli@0.0.91-beta --version
61
+ npx -y @linzumi/cli@0.0.92-beta --version
62
62
  linzumi --version
63
63
  ```
64
64
 
package/dist/index.js CHANGED
@@ -14684,6 +14684,7 @@ function codexAppServerArgs(listenUrl, options = {}) {
14684
14684
  }
14685
14685
  function codexConfigArgs(options) {
14686
14686
  return [
14687
+ ...codexDisableAppsConfigArgs,
14687
14688
  ...options.model === void 0 ? [] : ["-c", `model=${JSON.stringify(options.model)}`],
14688
14689
  ...options.reasoningEffort === void 0 ? [] : [
14689
14690
  "-c",
@@ -15056,7 +15057,7 @@ function readyzUrlForWebsocket(websocketUrl) {
15056
15057
  parsed.hash = "";
15057
15058
  return parsed.toString();
15058
15059
  }
15059
- var codexAppServerWatchdogPollMs, blockedCodexAppServerEnvKeys;
15060
+ var codexAppServerWatchdogPollMs, blockedCodexAppServerEnvKeys, codexDisableAppsConfigArgs;
15060
15061
  var init_codexAppServer = __esm({
15061
15062
  "src/codexAppServer.ts"() {
15062
15063
  "use strict";
@@ -15070,6 +15071,10 @@ var init_codexAppServer = __esm({
15070
15071
  "LINZUMI_MCP_ACCESS_TOKEN",
15071
15072
  "LINZUMI_MCP_OWNER_USERNAME"
15072
15073
  ];
15074
+ codexDisableAppsConfigArgs = [
15075
+ "-c",
15076
+ "features.apps=false"
15077
+ ];
15073
15078
  }
15074
15079
  });
15075
15080
 
@@ -19371,7 +19376,7 @@ var linzumiCliVersion, linzumiCliVersionText;
19371
19376
  var init_version = __esm({
19372
19377
  "src/version.ts"() {
19373
19378
  "use strict";
19374
- linzumiCliVersion = "0.0.91-beta";
19379
+ linzumiCliVersion = "0.0.92-beta";
19375
19380
  linzumiCliVersionText = `linzumi ${linzumiCliVersion}`;
19376
19381
  }
19377
19382
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.91-beta",
3
+ "version": "0.0.92-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": {