From 76965386bdac10eca722978a0a1b92f5a144d0d7 Mon Sep 17 00:00:00 2001 From: fern-support Date: Tue, 28 Oct 2025 18:03:15 +0000 Subject: [PATCH] Add fern deep command to CLI reference This commit introduces the new `fern deep` command to the CLI reference documentation. The command allows users to send emails directly to Deep, one of Fern's co-founders, for feedback, questions, or ideas about the platform. Changes: - Added `fern deep` entry to the main commands table - Created detailed documentation section with usage examples - Documented --subject and --message flags for composing emails - Added note about interactive email composition when flags are not provided --- .../cli-api-reference/pages/commands.mdx | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 1235cd15a..992569393 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, our co-founder | ## Documentation commands @@ -587,4 +588,36 @@ hideOnThisPage: true ``` + + + + Use `fern deep` to send an email directly to Deep, one of our co-founders. This command is useful when you need to reach out with feedback, questions, or ideas about Fern. + + + ```bash + fern deep [--subject ] [--message ] + ``` + + + ### subject + + Use `--subject` to specify the subject line of your email. + + ```bash + fern deep --subject "Feature request for new generator" + ``` + + ### message + + Use `--message` to include a message body in your email. + + ```bash + fern deep --subject "Quick question" --message "I have a question about SDK generation..." + ``` + + + If you don't provide a subject or message via flags, the CLI will prompt you interactively to compose your email. + + +