From c877dba717d439e60b5f3e452d4a5c395e8e2c17 Mon Sep 17 00:00:00 2001 From: fern-support Date: Fri, 31 Oct 2025 19:47:40 +0000 Subject: [PATCH 1/2] Add fern deep command to CLI reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds documentation for the new `fern deep` command that allows users to email Deep, our co-founder. The command supports optional --message and --subject flags, or can be run interactively without arguments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../cli-api-reference/pages/commands.mdx | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 92f2feb21..9a059e485 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 Deep, our co-founder | ## 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,37 @@ hideOnThisPage: true ``` + + + + Use `fern deep` to send an email directly to Deep, our co-founder. This command is useful when + you need to reach out with feedback, questions, or suggestions about Fern. + + + ```bash + fern deep [--message ] [--subject ] + ``` + + + ### message + + Use `--message` to include a message in your email to Deep. + + ```bash + fern deep --message "Love the new CLI features!" + ``` + + ### subject + + Use `--subject` to specify a custom subject line for your email. + + ```bash + fern deep --subject "Feature Request" --message "It would be great to have..." + ``` + + + You can also run `fern deep` without any arguments to compose your email interactively. + + + From a4ec9083f5c3cc80c93cb4c54a223afb58831338 Mon Sep 17 00:00:00 2001 From: fern-support Date: Fri, 31 Oct 2025 19:49:37 +0000 Subject: [PATCH 2/2] Add fern --dsheridan global flag to CLI reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds documentation for the new `fern --dsheridan` global flag that provides an alternative way to email Dan Sheridan, our co-founder. The flag supports the same --message and --subject options as the fern deep command, or can be run interactively without arguments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../cli-api-reference/pages/commands.mdx | 2 +- .../pages/global-options.mdx | 33 +++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 9a059e485..76bd6ab6b 100644 --- a/fern/products/cli-api-reference/pages/commands.mdx +++ b/fern/products/cli-api-reference/pages/commands.mdx @@ -617,7 +617,7 @@ hideOnThisPage: true ``` - You can also run `fern deep` without any arguments to compose your email interactively. + You can also run `fern deep` without any arguments to compose your email interactively. Additionally, you can use the global flag [`fern --dsheridan`](/learn/cli-api/cli-reference/global-options#dsheridan) 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..1ab3201e8 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 Dan Sheridan, our co-founder | `fern --dsheridan` | When troubleshooting: @@ -99,3 +100,35 @@ 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 an email directly to Dan Sheridan, our co-founder. This provides an alternative way to reach out with feedback, questions, or suggestions about Fern. + +```bash +# Send an email to Dan Sheridan +fern --dsheridan + +# Use with message and subject options +fern --dsheridan --message "Great work on the CLI!" --subject "Feedback" +``` + +### message + +Use `--message` to include a message in your email. + +```bash +fern --dsheridan --message "Love the new CLI features!" +``` + +### subject + +Use `--subject` to specify a custom subject line for your email. + +```bash +fern --dsheridan --subject "Feature Request" --message "It would be great to have..." +``` + + +You can also run `fern --dsheridan` without any arguments to compose your email interactively. This accomplishes the same functionality as the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command. +