From 6c5178166d3c47be2ca28f033bfd0a72c3fbec80 Mon Sep 17 00:00:00 2001 From: fern-support Date: Mon, 27 Oct 2025 19:14:26 +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 Introduced a new `fern deep` command that allows users to send emails directly to Deep, one of Fern's co-founders. The command supports optional message and subject flags, with an interactive mode for composing messages when flags are not provided. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../cli-api-reference/pages/commands.mdx | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 1235cd15a..49a0de7ca 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,38 @@ hideOnThisPage: true ``` + + + + Use `fern deep` to send an email directly to Deep, one of Fern's co-founders. This command provides a direct line of communication for feedback, questions, or insights about your Fern experience. + + + ```bash + fern deep [--message ] [--subject ] + ``` + + + When run without options, the command will open an interactive prompt to compose your message. + + ### message + + Use `--message` to specify the email body directly from the command line. + + ```bash + fern deep --message "Love the new SDK generator features!" + ``` + + ### subject + + Use `--subject` to specify the email subject. If not provided, a default subject will be used. + + ```bash + fern deep --subject "Feature Request" --message "It would be great to have..." + ``` + + + Deep personally reads all messages sent through this command and aims to respond within 24-48 hours. + + +