diff --git a/docs/cli/settings.md b/docs/cli/settings.md
index 834750fdf9..6a90302664 100644
--- a/docs/cli/settings.md
+++ b/docs/cli/settings.md
@@ -180,6 +180,7 @@ they appear in the UI.
| Auto Memory | `experimental.autoMemory` | Automatically extract reusable skills from past sessions in the background. Review results with /memory inbox. | `false` |
| Use the generalist profile to manage agent contexts. | `experimental.generalistProfile` | Suitable for general coding and software development tasks. | `false` |
| Enable Context Management | `experimental.contextManagement` | Enable logic for context management. | `false` |
+| Enhance Command | `experimental.enhanceCommand` | Enable the experimental /enhance slash command. | `false` |
### Skills
diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md
index 87bbd0756f..74a9673880 100644
--- a/docs/reference/configuration.md
+++ b/docs/reference/configuration.md
@@ -1872,6 +1872,11 @@ their corresponding top-level category object in your `settings.json` file.
- **Description:** Deprecated: Use general.topicUpdateNarration instead.
- **Default:** `false`
+- **`experimental.enhanceCommand`** (boolean):
+ - **Description:** Enable the experimental /enhance slash command.
+ - **Default:** `false`
+ - **Requires restart:** Yes
+
#### `skills`
- **`skills.enabled`** (boolean):
diff --git a/docs/reference/keyboard-shortcuts.md b/docs/reference/keyboard-shortcuts.md
index 6f7a8cce4a..80349efc0b 100644
--- a/docs/reference/keyboard-shortcuts.md
+++ b/docs/reference/keyboard-shortcuts.md
@@ -94,6 +94,7 @@ available combinations.
| `input.openExternalEditor` | Open the current prompt or the plan in an external editor. | `Ctrl+G`
`Ctrl+Shift+G` |
| `input.deprecatedOpenExternalEditor` | Deprecated command to open external editor. | `Ctrl+X` |
| `input.paste` | Paste from the clipboard. | `Ctrl+V`
`Cmd/Win+V`
`Alt+V` |
+| `input.enhancePrompt` | Enhance the current prompt using an LLM. | `Alt+E` |
#### App Controls
diff --git a/schemas/settings.schema.json b/schemas/settings.schema.json
index 893c1bde6c..09e25596ab 100644
--- a/schemas/settings.schema.json
+++ b/schemas/settings.schema.json
@@ -3181,6 +3181,13 @@
"markdownDescription": "Deprecated: Use general.topicUpdateNarration instead.\n\n- Category: `Experimental`\n- Requires restart: `no`\n- Default: `false`",
"default": false,
"type": "boolean"
+ },
+ "enhanceCommand": {
+ "title": "Enhance Command",
+ "description": "Enable the experimental /enhance slash command.",
+ "markdownDescription": "Enable the experimental /enhance slash command.\n\n- Category: `Experimental`\n- Requires restart: `yes`\n- Default: `false`",
+ "default": false,
+ "type": "boolean"
}
},
"additionalProperties": false