From b5c5db3d13322bcd25d8c6db294aca4669e318a7 Mon Sep 17 00:00:00 2001 From: fern-support Date: Tue, 28 Oct 2025 17:34:07 +0000 Subject: [PATCH] Add fern deep command to CLI reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit introduces documentation for the new `fern deep` command that allows users to email Deep, our co-founder, directly from the CLI. The command supports optional --subject and --message flags for specifying email content, with interactive prompts as a fallback. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../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..9f3c48f13 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 @@ -587,4 +588,36 @@ 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 to our leadership team with feedback, questions, or important matters. + + + ```bash + fern deep [--subject ] [--message ] + ``` + + + ### subject + + Use `--subject` to specify the email subject line. + + ```bash + fern deep --subject "API feedback" + ``` + + ### message + + Use `--message` to include a message body in your email. + + ```bash + fern deep --subject "Feature request" --message "Would love to see support for GraphQL" + ``` + + + If you don't provide a subject or message via flags, the CLI will prompt you interactively. + + +