impel-cli 0.20.58 → 0.20.59

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/RELEASE_NOTES.md CHANGED
@@ -1,4 +1,13 @@
1
1
  # Release notes
2
+
3
+ ## 0.20.59 — Stabilize Codex CLI startup
4
+
5
+ - Disables the optional standalone Code Mode host for headless Codex CLI
6
+ sessions, avoiding startup failures when the companion binary is absent on
7
+ Windows or macOS.
8
+ - Disables MCP Apps initialization in CLI profiles, preventing the unauthenticated
9
+ `codex_apps` gateway handshake (HTTP 401) before a session starts.
10
+
2
11
  ## 0.20.58 — Provision vendor CLIs on managed enrollment
3
12
 
4
13
  - Ensures freshly enrolled managed devices receive the reviewed Claude Code and Codex CLI binaries without requiring a personal PAT or interactive vendor login.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impel-cli",
3
- "version": "0.20.58",
3
+ "version": "0.20.59",
4
4
  "description": "Prepare isolated Claude and Codex workspaces for every accessible Impel tenant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -80,10 +80,15 @@ export const IMPEL_CODEX_PARENT_DELEGATION_INSTRUCTIONS =
80
80
  `${IMPEL_CODEX_SPECIALIST_DELEGATION_INSTRUCTIONS} ${IMPEL_CUSTOM_AGENT_VERBATIM_RELAY_APPENDIX}`;
81
81
 
82
82
  const IMPEL_CODEX_RUNTIME_OVERRIDES = [
83
- // Codex 0.147 fails closed when a model selects code mode while this stable
84
- // feature is disabled. The reviewed standalone install includes the signed
85
- // companion host, so keep the execution path enabled for Impel sessions.
86
- "features.code_mode_host=true",
83
+ // The standalone companion is optional and is not shipped by every native
84
+ // Codex distribution (notably some Windows/macOS CLI packages). Disable the
85
+ // launcher path for tenant CLI sessions so a missing helper cannot abort
86
+ // startup. Desktop bundles that include the helper enable it explicitly.
87
+ "features.code_mode_host=false",
88
+ // Headless CLI sessions do not render MCP Apps. Disabling the connector
89
+ // avoids an eager codex_apps initialize against the vendor gateway, which
90
+ // otherwise fails with HTTP 401 when no native account credential exists.
91
+ "features.enable_mcp_apps=false",
87
92
  ];
88
93
 
89
94
  const IMPEL_CODEX_UNRESTRICTED_ARGUMENT = "--dangerously-bypass-approvals-and-sandbox";