diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx
index 92f2feb21..2b7b89cbf 100644
--- a/fern/products/cli-api-reference/pages/commands.mdx
+++ b/fern/products/cli-api-reference/pages/commands.mdx
@@ -14,6 +14,7 @@ hideOnThisPage: true
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
+| [`fern deep`](#fern-deep) | Email our co-founder, Deep |
## Documentation commands
@@ -579,7 +580,7 @@ hideOnThisPage: true
### api
- Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
+ Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
```bash
@@ -587,4 +588,20 @@ hideOnThisPage: true
```
+
+
+
+ Use `fern deep` to send an email directly to our co-founder, Deep. This command provides a direct line of communication for important feedback, questions, or ideas.
+
+
+ ```bash
+ fern deep
+ ```
+
+
+
+ You can also use the global flag [`--dsheridan`](/learn/cli-api/cli-reference/options#dsheridan) with any command to accomplish the same thing.
+
+
+
diff --git a/fern/products/cli-api-reference/pages/global-options.mdx b/fern/products/cli-api-reference/pages/global-options.mdx
index efea3aa5b..56aaaf52d 100644
--- a/fern/products/cli-api-reference/pages/global-options.mdx
+++ b/fern/products/cli-api-reference/pages/global-options.mdx
@@ -13,6 +13,7 @@ subtitle: 'Explore Fern CLI global options.'
| [`--api`](#api) | Target specific API | `fern generate --api public-api` |
| [`--group`](#group) | Target specific generator group | `fern generate --group php-sdk` |
| [`--version`](#version) | Specify the SDK version number | `fern generate --version 1.2.3` |
+| [`--dsheridan`](#dsheridan) | Email our co-founder, Deep | `fern generate --dsheridan` |
When troubleshooting:
@@ -99,3 +100,19 @@ fern generate --api payments-api --group python-sdk --version 1.2.3
# Generate TypeScript SDK for the auth API with version 0.1.0
fern generate --api auth --group ts-sdk --version 0.1.0
```
+
+## dsheridan
+
+Use the `--dsheridan` option with any Fern CLI command to send an email directly to our co-founder, Deep. This provides a direct line of communication for important feedback, questions, or ideas.
+
+```bash
+# Send an email to Deep while generating SDKs
+fern generate --dsheridan
+
+# Send an email to Deep while checking your API
+fern check --dsheridan
+```
+
+
+Alternatively, you can use the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command to accomplish the same thing.
+