@machina.ai/cell-cli-core 1.45.1-rc4 → 1.49.0-rc1

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.
Files changed (153) hide show
  1. package/dist/bundled/chrome-devtools-mcp.mjs +269 -17
  2. package/dist/docs/AFTER_MERGE_PROMPT.md +1 -1
  3. package/dist/docs/CHANGES.md +2 -0
  4. package/dist/docs/changelogs/index.md +35 -0
  5. package/dist/docs/changelogs/latest.md +49 -202
  6. package/dist/docs/changelogs/preview.md +49 -199
  7. package/dist/docs/cli/enterprise.md +1 -1
  8. package/dist/docs/cli/gemini-md.md +2 -0
  9. package/dist/docs/cli/plan-mode.md +1 -0
  10. package/dist/docs/cli/session-management.md +1 -0
  11. package/dist/docs/cli/settings.md +0 -18
  12. package/dist/docs/cli/skills.md +10 -11
  13. package/dist/docs/cli/system-prompt.md +2 -0
  14. package/dist/docs/cli/telemetry.md +5 -0
  15. package/dist/docs/core/local-model-routing.md +10 -0
  16. package/dist/docs/core/subagents.md +1 -5
  17. package/dist/docs/ide-integration/ide-companion-spec.md +2 -0
  18. package/dist/docs/ide-integration/index.md +4 -0
  19. package/dist/docs/issue-and-pr-automation.md +29 -1
  20. package/dist/docs/local-development.md +2 -0
  21. package/dist/docs/mcp_integration.md +1 -0
  22. package/dist/docs/reference/commands.md +4 -0
  23. package/dist/docs/reference/configuration.md +195 -0
  24. package/dist/docs/release-confidence.md +6 -0
  25. package/dist/docs/releases.md +2 -0
  26. package/dist/docs/resources/quota-and-pricing.md +1 -0
  27. package/dist/docs/resources/troubleshooting.md +13 -0
  28. package/dist/docs/tools/ask-user.md +2 -0
  29. package/dist/docs/tools/mcp-server.md +1 -0
  30. package/dist/package.json +69 -71
  31. package/dist/src/agents/agentLoader.d.ts +20 -20
  32. package/dist/src/agents/auth-provider/api-key-provider.d.ts +1 -1
  33. package/dist/src/agents/auth-provider/api-key-provider.js.map +1 -1
  34. package/dist/src/agents/auth-provider/google-credentials-provider.d.ts +1 -1
  35. package/dist/src/agents/auth-provider/google-credentials-provider.js.map +1 -1
  36. package/dist/src/agents/auth-provider/http-provider.d.ts +1 -1
  37. package/dist/src/agents/auth-provider/http-provider.js.map +1 -1
  38. package/dist/src/agents/auth-provider/oauth2-provider.d.ts +1 -1
  39. package/dist/src/agents/auth-provider/oauth2-provider.js.map +1 -1
  40. package/dist/src/agents/local-executor.js +5 -4
  41. package/dist/src/agents/local-executor.js.map +1 -1
  42. package/dist/src/code_assist/codeAssist.js +12 -3
  43. package/dist/src/code_assist/codeAssist.js.map +1 -1
  44. package/dist/src/code_assist/codeAssist.test.js +29 -0
  45. package/dist/src/code_assist/codeAssist.test.js.map +1 -1
  46. package/dist/src/code_assist/types.d.ts +20 -20
  47. package/dist/src/config/config.js +1 -3
  48. package/dist/src/config/config.js.map +1 -1
  49. package/dist/src/config/defaultModelConfigs.js +5 -5
  50. package/dist/src/config/defaultModelConfigs.js.map +1 -1
  51. package/dist/src/config/models.d.ts +1 -0
  52. package/dist/src/config/models.js +3 -0
  53. package/dist/src/config/models.js.map +1 -1
  54. package/dist/src/core/contentGenerator.js +13 -3
  55. package/dist/src/core/contentGenerator.js.map +1 -1
  56. package/dist/src/core/contentGenerator.test.js +148 -24
  57. package/dist/src/core/contentGenerator.test.js.map +1 -1
  58. package/dist/src/core/modelMappingContentGenerator.d.ts +23 -0
  59. package/dist/src/core/modelMappingContentGenerator.js +55 -0
  60. package/dist/src/core/modelMappingContentGenerator.js.map +1 -0
  61. package/dist/src/core/modelMappingContentGenerator.test.d.ts +6 -0
  62. package/dist/src/core/modelMappingContentGenerator.test.js +71 -0
  63. package/dist/src/core/modelMappingContentGenerator.test.js.map +1 -0
  64. package/dist/src/generated/git-commit.d.ts +2 -2
  65. package/dist/src/generated/git-commit.js +2 -2
  66. package/dist/src/ide/ide-client.js +4 -1
  67. package/dist/src/ide/ide-client.js.map +1 -1
  68. package/dist/src/mcp/oauth-provider.d.ts +1 -1
  69. package/dist/src/mcp/oauth-provider.js.map +1 -1
  70. package/dist/src/policy/config.js +42 -6
  71. package/dist/src/policy/config.js.map +1 -1
  72. package/dist/src/policy/persistence.test.js +136 -2
  73. package/dist/src/policy/persistence.test.js.map +1 -1
  74. package/dist/src/policy/policies/sandbox-default.toml +7 -0
  75. package/dist/src/policy/policy-updater.test.js +15 -10
  76. package/dist/src/policy/policy-updater.test.js.map +1 -1
  77. package/dist/src/policy/toml-loader.js +1 -1
  78. package/dist/src/policy/toml-loader.js.map +1 -1
  79. package/dist/src/prompts/promptProvider.test.js +7 -0
  80. package/dist/src/prompts/promptProvider.test.js.map +1 -1
  81. package/dist/src/prompts/snippets.js +1 -0
  82. package/dist/src/prompts/snippets.js.map +1 -1
  83. package/dist/src/prompts/snippets.legacy.js +1 -0
  84. package/dist/src/prompts/snippets.legacy.js.map +1 -1
  85. package/dist/src/scheduler/scheduler.js +4 -3
  86. package/dist/src/scheduler/scheduler.js.map +1 -1
  87. package/dist/src/scheduler/scheduler_parallel.test.js +47 -1
  88. package/dist/src/scheduler/scheduler_parallel.test.js.map +1 -1
  89. package/dist/src/services/chatRecordingService.d.ts +14 -2
  90. package/dist/src/services/chatRecordingService.js +63 -16
  91. package/dist/src/services/chatRecordingService.js.map +1 -1
  92. package/dist/src/services/chatRecordingService.test.js +97 -1
  93. package/dist/src/services/chatRecordingService.test.js.map +1 -1
  94. package/dist/src/services/executionLifecycleService.js +4 -1
  95. package/dist/src/services/executionLifecycleService.js.map +1 -1
  96. package/dist/src/skills/builtin/antigravity-support/SKILL.md +58 -0
  97. package/dist/src/skills/skillLoader.test.js +10 -0
  98. package/dist/src/skills/skillLoader.test.js.map +1 -1
  99. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.d.ts +1 -1
  100. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js +1 -1
  101. package/dist/src/telemetry/clearcut-logger/clearcut-logger.test.js.map +1 -1
  102. package/dist/src/tools/mcp-client-manager.test.js +6 -6
  103. package/dist/src/tools/mcp-client-manager.test.js.map +1 -1
  104. package/dist/src/tools/mcp-client.js +6 -1
  105. package/dist/src/tools/mcp-client.js.map +1 -1
  106. package/dist/src/tools/mcp-client.test.js +5 -5
  107. package/dist/src/tools/mcp-client.test.js.map +1 -1
  108. package/dist/src/tools/mcp-tool.js +3 -2
  109. package/dist/src/tools/mcp-tool.js.map +1 -1
  110. package/dist/src/tools/mcp-tool.test.js +49 -12
  111. package/dist/src/tools/mcp-tool.test.js.map +1 -1
  112. package/dist/src/tools/shell.js +3 -2
  113. package/dist/src/tools/shell.js.map +1 -1
  114. package/dist/src/tools/shell.test.js +2 -2
  115. package/dist/src/tools/shell.test.js.map +1 -1
  116. package/dist/src/tools/tool-registry.js +1 -1
  117. package/dist/src/tools/tool-registry.js.map +1 -1
  118. package/dist/src/tools/web-fetch.js +6 -6
  119. package/dist/src/tools/web-fetch.js.map +1 -1
  120. package/dist/src/tools/web-fetch.test.js +4 -4
  121. package/dist/src/tools/web-fetch.test.js.map +1 -1
  122. package/dist/src/utils/editor.js +2 -1
  123. package/dist/src/utils/editor.js.map +1 -1
  124. package/dist/src/utils/fetch.js +3 -3
  125. package/dist/src/utils/fetch.js.map +1 -1
  126. package/dist/src/utils/filesearch/ignore.js +4 -1
  127. package/dist/src/utils/filesearch/ignore.js.map +1 -1
  128. package/dist/src/utils/gitIgnoreParser.js +4 -1
  129. package/dist/src/utils/gitIgnoreParser.js.map +1 -1
  130. package/dist/src/utils/googleQuotaErrors.js +26 -7
  131. package/dist/src/utils/googleQuotaErrors.js.map +1 -1
  132. package/dist/src/utils/googleQuotaErrors.test.js +89 -0
  133. package/dist/src/utils/googleQuotaErrors.test.js.map +1 -1
  134. package/dist/src/utils/ignoreFileParser.js +4 -1
  135. package/dist/src/utils/ignoreFileParser.js.map +1 -1
  136. package/dist/src/utils/llm-edit-fixer.js +2 -0
  137. package/dist/src/utils/llm-edit-fixer.js.map +1 -1
  138. package/dist/src/utils/schemaValidator.js +3 -2
  139. package/dist/src/utils/schemaValidator.js.map +1 -1
  140. package/dist/src/utils/sessionUtils.d.ts +1 -0
  141. package/dist/src/utils/sessionUtils.js +8 -4
  142. package/dist/src/utils/sessionUtils.js.map +1 -1
  143. package/dist/src/utils/shell-utils.js +23 -4
  144. package/dist/src/utils/shell-utils.js.map +1 -1
  145. package/dist/src/utils/shell-utils.test.js +12 -3
  146. package/dist/src/utils/shell-utils.test.js.map +1 -1
  147. package/dist/src/utils/textUtils.d.ts +4 -0
  148. package/dist/src/utils/textUtils.js +7 -0
  149. package/dist/src/utils/textUtils.js.map +1 -1
  150. package/dist/src/utils/textUtils.test.js +12 -1
  151. package/dist/src/utils/textUtils.test.js.map +1 -1
  152. package/dist/tsconfig.tsbuildinfo +1 -1
  153. package/package.json +77 -79
@@ -1,6 +1,6 @@
1
1
  # Agent Skills
2
2
 
3
- Agent Skills let you extend Gemini CLI with specialized expertise, procedural
3
+ Agent Skills let you extend Cell CLI with specialized expertise, procedural
4
4
  workflows, and task-specific resources. Based on the
5
5
  [Agent Skills](https://agentskills.io) open standard, a "skill" is a
6
6
  self-contained directory that packages instructions and assets into a
@@ -8,7 +8,7 @@ discoverable capability.
8
8
 
9
9
  Unlike general context files ([GEMINI.md](./gemini-md.md)), which provide
10
10
  persistent workspace-wide background, Skills represent **on-demand expertise**.
11
- This lets Gemini CLI maintain a vast library of specialized capabilities—such as
11
+ This lets Cell CLI maintain a vast library of specialized capabilities—such as
12
12
  security auditing, cloud deployments, or codebase migrations—without cluttering
13
13
  the model's immediate context window.
14
14
 
@@ -17,8 +17,6 @@ the model's immediate context window.
17
17
  The lifecycle of an Agent Skill involves discovery, activation, and conditional
18
18
  resource access.
19
19
 
20
- > > > > > > > release/v0.29.5
21
-
22
20
  1. **Discovery**: At the start of a session, Cell CLI scans the discovery tiers
23
21
  and injects the name and description of all enabled skills into the system
24
22
  prompt.
@@ -36,23 +34,24 @@ resource access.
36
34
 
37
35
  ## Discovery tiers
38
36
 
39
- Gemini CLI discovers skills from several locations, following a specific order
40
- of precedence (lowest to highest):
37
+ Cell CLI discovers skills from several locations, following a specific order of
38
+ precedence (lowest to highest):
41
39
 
42
- 1. **Built-in skills**: Standard skills included with Gemini CLI that provide
40
+ 1. **Built-in skills**: Standard skills included with Cell CLI that provide
43
41
  foundational capabilities.
44
42
  2. **Extension skills**: Skills bundled within installed
45
43
  [extensions](../extensions/index.md).
46
- 3. **User skills**: Located in `~/.gemini/skills/` or the `~/.agents/skills/`
44
+ 3. **User skills**: Located in `~/.cell-cli/skills/` or the `~/.agents/skills/`
47
45
  alias.
48
- 4. **Workspace skills**: Located in `.gemini/skills/` or the `.agents/skills/`
49
- alias. Workspace skills are shared with your team via version control.
46
+ 4. **Workspace skills**: Located in `.cell-cli/skills/` or the
47
+ `.agents/skills/` alias. Workspace skills are shared with your team via
48
+ version control.
50
49
 
51
50
  ### Precedence and aliases
52
51
 
53
52
  If multiple skills share the same name, the version from the higher-precedence
54
53
  location is used. Within the same tier (user or workspace), the
55
- `.agents/skills/` alias takes precedence over the `.gemini/skills/` directory.
54
+ `.agents/skills/` alias takes precedence over the `.cell-cli/skills/` directory.
56
55
 
57
56
  The `.agents/skills/` alias provides an interoperable path for managing
58
57
  agent-specific expertise that remains compatible across different AI tools.
@@ -27,11 +27,13 @@ via a `.cell-cli/.env` file. See
27
27
  [Persisting Environment Variables](../get-started/authentication.mdx#persisting-environment-variables).
28
28
 
29
29
  - Use the project default path (`.cell-cli/system.md`):
30
+
30
31
  - `CELL_SYSTEM_MD=true` or `CELL_SYSTEM_MD=1`
31
32
  - The CLI reads `./.cell-cli/system.md` (relative to your current project
32
33
  directory).
33
34
 
34
35
  - Use a custom file path:
36
+
35
37
  - `CELL_SYSTEM_MD=/absolute/path/to/my-system.md`
36
38
  - Relative paths are supported and resolved from the current working
37
39
  directory.
@@ -64,6 +64,7 @@ and Cloud Logging.
64
64
  You must complete several setup steps before enabling Google Cloud telemetry.
65
65
 
66
66
  1. Set your Google Cloud project ID:
67
+
67
68
  - To send telemetry to a separate project:
68
69
 
69
70
  **macOS/Linux**
@@ -93,8 +94,10 @@ You must complete several setup steps before enabling Google Cloud telemetry.
93
94
  ```
94
95
 
95
96
  2. Authenticate with Google Cloud using one of these methods:
97
+
96
98
  - **Method A: Application Default Credentials (ADC)**: Use this method for
97
99
  service accounts or standard `gcloud` authentication.
100
+
98
101
  - For user accounts:
99
102
  ```bash
100
103
  gcloud auth application-default login
@@ -112,6 +115,7 @@ You must complete several setup steps before enabling Google Cloud telemetry.
112
115
  ```powershell
113
116
  $env:GOOGLE_APPLICATION_CREDENTIALS="C:\path\to\your\service-account.json"
114
117
  ```
118
+
115
119
  * **Method B: CLI Auth** (Direct export only): Simplest method for local
116
120
  users. Cell CLI uses the same OAuth credentials you used for login. To
117
121
  enable this, set `useCliAuth: true` in your `.cell-cli/settings.json`:
@@ -133,6 +137,7 @@ You must complete several setup steps before enabling Google Cloud telemetry.
133
137
  > telemetry will be disabled.
134
138
 
135
139
  3. Ensure your account or service account has these IAM roles:
140
+
136
141
  - Cloud Trace Agent
137
142
  - Monitoring Metric Writer
138
143
  - Logs Writer
@@ -15,6 +15,16 @@ routing decisions to a hosted model).
15
15
  > using the [`gemini gemma` Setup Guide](./gemma-setup.md) instead of following
16
16
  > these manual steps.
17
17
 
18
+ <!-- prettier-ignore -->
19
+ > [!NOTE]
20
+ > This is an experimental feature currently under active development.
21
+
22
+ <!-- prettier-ignore -->
23
+ > [!IMPORTANT]
24
+ > **Recommended:** We now provide a fully automated setup command. We recommend
25
+ > using the [`gemini gemma` Setup Guide](./gemma-setup.md) instead of following
26
+ > these manual steps.
27
+
18
28
  This feature can help reduce costs associated with hosted model usage while
19
29
  offering similar routing decision latency and quality.
20
30
 
@@ -106,7 +106,7 @@ Cell CLI comes with the following built-in subagents:
106
106
  slow. You can invoke it explicitly using `@generalist`.
107
107
  - **Configuration:** Enabled by default.
108
108
 
109
- ### Browser Agent (experimental)
109
+ ### Browser Agent
110
110
 
111
111
  - **Name:** `browser_agent`
112
112
  - **Purpose:** Automate web browser tasks — navigating websites, filling forms,
@@ -116,10 +116,6 @@ Cell CLI comes with the following built-in subagents:
116
116
  the pricing table from this page," "Click the login button and enter my
117
117
  credentials."
118
118
 
119
- <!-- prettier-ignore -->
120
- > [!NOTE]
121
- > This is a preview feature currently under active development.
122
-
123
119
  #### Prerequisites
124
120
 
125
121
  The browser agent requires:
@@ -56,6 +56,7 @@ creating a "discovery file."
56
56
  }
57
57
  }
58
58
  ```
59
+
59
60
  - `port` (number, required): The port of the MCP server.
60
61
  - `workspacePath` (string, required): A list of all open workspace root paths,
61
62
  delimited by the OS-specific path separator (`:` for Linux/macOS, `;` for
@@ -187,6 +188,7 @@ The plugin **MUST** register an `openDiff` tool on its MCP server.
187
188
  - **Response (`CallToolResult`):** The tool **MUST** immediately return a
188
189
  `CallToolResult` to acknowledge the request and report whether the diff view
189
190
  was successfully opened.
191
+
190
192
  - On Success: If the diff view was opened successfully, the response **MUST**
191
193
  contain empty content (that is, `content: []`).
192
194
  - On Failure: If an error prevented the diff view from opening, the response
@@ -27,6 +27,7 @@ AI-generated code changes directly within your editor.
27
27
 
28
28
  - **Workspace context:** The CLI automatically gains awareness of your workspace
29
29
  to provide more relevant and accurate responses. This context includes:
30
+
30
31
  - The **10 most recently accessed files** in your workspace.
31
32
  - Your active cursor position.
32
33
  - Any text you have selected (up to a 16KB limit; longer selections will be
@@ -227,6 +228,7 @@ If you are using Cell CLI within a sandbox, be aware of the following:
227
228
 
228
229
  - **Message:**
229
230
  `🔴 Disconnected: Failed to connect to IDE companion extension in [IDE Name]. Please ensure the extension is running. To install the extension, run /ide install.`
231
+
230
232
  - **Cause:** Cell CLI could not find the necessary environment variables
231
233
  (`CELL_CLI_IDE_WORKSPACE_PATH` or `CELL_CLI_IDE_SERVER_PORT`) to connect to
232
234
  the IDE. This usually means the IDE companion extension is not running or
@@ -269,6 +271,7 @@ connect using the provided PID.
269
271
 
270
272
  - **Message:**
271
273
  `🔴 Disconnected: Directory mismatch. Cell CLI is running in a different location than the open workspace in [IDE Name]. Please run the CLI from one of the following directories: [List of directories]`
274
+
272
275
  - **Cause:** The CLI's current working directory is outside the workspace you
273
276
  have open in your IDE.
274
277
  - **Solution:** `cd` into the same directory that is open in your IDE and
@@ -283,6 +286,7 @@ connect using the provided PID.
283
286
 
284
287
  - **Message:**
285
288
  `IDE integration is not supported in your current environment. To use this feature, run Cell CLI in one of these supported IDEs: [List of IDEs]`
289
+
286
290
  - **Cause:** You are running Cell CLI in a terminal or environment that is not
287
291
  a supported IDE.
288
292
  - **Solution:** Run Cell CLI from the integrated terminal of a supported IDE,
@@ -154,7 +154,35 @@ and will never be auto-unassigned.
154
154
  - **Unassign yourself** if you can no longer work on the issue by commenting
155
155
  `/unassign`, so other contributors can pick it up right away.
156
156
 
157
- ### 6. Release automation
157
+ ### 6. Automatically label PRs by size: `PR Size Labeler`
158
+
159
+ To help maintainers estimate review effort and keep the PR history clean, this
160
+ workflow automatically tags every pull request with a size label representing
161
+ the total volume of line changes.
162
+
163
+ - **Workflow File**: `.github/workflows/pr-size-labeler.yml`
164
+ - **When it runs**: Immediately after a pull request is created, synchronized
165
+ (new commits pushed), or reopened. It can also be triggered manually via
166
+ `workflow_dispatch` with a PR number.
167
+ - **What it does**:
168
+ - **Calculates total changes**: Summarizes additions and deletions across all
169
+ changed files in a single consolidated API request.
170
+ - **Applies standard size labels**:
171
+ - `size/XS`: < 10 lines changed
172
+ - `size/S`: 10-49 lines changed
173
+ - `size/M`: 50-249 lines changed
174
+ - `size/L`: 250-999 lines changed
175
+ - `size/XL`: >= 1000 lines changed
176
+ - **Updates size tag atomically**: Adds the new correct size label and removes
177
+ any obsolete size labels in one atomic step.
178
+ - **Updates/Posts PR size info comment**: Instead of spamming a new comment on
179
+ every commit push, it updates the existing size labeler status comment
180
+ inline to keep the PR conversation timeline perfectly neat and clean.
181
+ - **What you should do**:
182
+ - You do not need to take any actions. The workflow runs automatically and
183
+ updates the label and comment seamlessly as you push new updates.
184
+
185
+ ### 7. Release automation
158
186
 
159
187
  This workflow handles the process of packaging and publishing new versions of
160
188
  Cell CLI.
@@ -59,6 +59,7 @@ You can view traces in the Jaeger UI for local development.
59
59
 
60
60
  This command configures your workspace for local telemetry and provides a
61
61
  link to the Jaeger UI (usually `http://localhost:16686`).
62
+
62
63
  - **Collector logs:** `~/.cell-cli/tmp/<projectHash>/otel/collector.log`
63
64
 
64
65
  2. **Run Cell CLI:**
@@ -108,6 +109,7 @@ Trace for custom processing or routing.
108
109
 
109
110
  The script outputs links to view traces, metrics, and logs in the Google
110
111
  Cloud Console.
112
+
111
113
  - **Collector logs:** `~/.cell-cli/tmp/<projectHash>/otel/collector-gcp.log`
112
114
 
113
115
  3. **Run Cell CLI:**
@@ -124,6 +124,7 @@ Una vez que haya realizado los cambios en el código y reconstruido el CLI, pued
124
124
  verificar que la integración funciona correctamente de la siguiente manera:
125
125
 
126
126
  1. **Asegúrese de que su configuración sea correcta:**
127
+
127
128
  - Verifique que el archivo `~/.cell-cli/config.yaml` existe y contiene una
128
129
  entrada válida para `agent_api_url`. Por ejemplo:
129
130
  ```yaml
@@ -505,6 +505,7 @@ the dedicated [Custom Commands documentation](../cli/custom-commands.md).
505
505
  These shortcuts apply directly to the input prompt for text manipulation.
506
506
 
507
507
  - **Undo:**
508
+
508
509
  - **Keyboard shortcut:** Press **Ctrl+z** (Windows), **Cmd+z** (macOS), or
509
510
  **Alt+z** (Linux/WSL) to undo the last action in the input prompt.
510
511
 
@@ -518,6 +519,7 @@ At commands are used to include the content of files or directories as part of
518
519
  your prompt to Gemini. These commands include git-aware filtering.
519
520
 
520
521
  - **`@<path_to_file_or_directory>`**
522
+
521
523
  - **Description:** Inject the content of the specified file or files into your
522
524
  current prompt. This is useful for asking questions about specific code,
523
525
  text, or collections of files.
@@ -564,6 +566,7 @@ The `!` prefix lets you interact with your system's shell directly from within
564
566
  Cell CLI.
565
567
 
566
568
  - **`!<shell_command>`**
569
+
567
570
  - **Description:** Execute the given `<shell_command>` using `bash` on
568
571
  Linux/macOS or `powershell.exe -NoProfile -Command` on Windows (unless you
569
572
  override `ComSpec`). Any output or errors from the command are displayed in
@@ -573,6 +576,7 @@ Cell CLI.
573
576
  - `!git status` (executes `git status` and returns to Cell CLI)
574
577
 
575
578
  - **`!` (Toggle shell mode)**
579
+
576
580
  - **Description:** Typing `!` on its own toggles shell mode.
577
581
  - **Entering shell mode:**
578
582
  - When active, shell mode uses a different coloring and a "Shell Mode