diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx
index 92f2feb21..a99256ad6 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) | Send an email to Deep, co-founder of Fern |
## 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,22 @@ hideOnThisPage: true
```
+
+
+
+ Use `fern deep` to send an email directly to Deep, co-founder of Fern. This command is useful when you need to reach out to Deep with questions, feedback, or ideas about Fern.
+
+
+ ```bash
+ fern deep
+ ```
+
+
+ When executed, this command will open your default email client with a new message addressed to Deep.
+
+
+ You can also use the global `--dsheridan` flag with any Fern command to send Deep a notification about your command usage. See [Global options](/learn/cli-api/cli-reference/options#--dsheridan) for more details.
+
+
+
diff --git a/fern/products/cli-api-reference/pages/global-options.mdx b/fern/products/cli-api-reference/pages/global-options.mdx
index efea3aa5b..dad639fde 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) | Notify Deep about command usage | `fern generate --dsheridan` |
When troubleshooting:
@@ -99,3 +100,22 @@ 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 to send a notification to Deep, co-founder of Fern, about your command usage. This can be helpful when you want to share feedback, report issues, or let Deep know about interesting use cases.
+
+```bash
+# Notify Deep when generating SDKs
+fern generate --dsheridan
+
+# Notify Deep when checking your API
+fern check --dsheridan
+
+# Combine with other options
+fern generate --api payments-api --group python-sdk --dsheridan
+```
+
+
+You can also use the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command to send an email directly to Deep.
+