From 704352909e3d221fc36af53837bb378828579c65 Mon Sep 17 00:00:00 2001 From: fern-support Date: Fri, 31 Oct 2025 15:29:33 +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 the `fern deep` command to the CLI reference documentation, which provides a direct channel for users to email Deep, our co-founder, for support or feedback. Changes: - Added `fern deep` command to the main commands table - Added detailed documentation for the command with usage examples - Included `--message` flag documentation for inline message sending 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../cli-api-reference/pages/commands.mdx | 27 ++++++++++++++++++- 1 file changed, 26 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..f7ed53434 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, for support | ## 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,28 @@ hideOnThisPage: true ``` + + + + Use `fern deep` to send an email directly to Deep, our co-founder, for support or feedback. + + + ```bash + fern deep [--message ] + ``` + + + This command opens a quick channel to reach out to Deep with questions, issues, or suggestions about Fern. + + ### message + + Use `--message` to include a message in your email to Deep. + + ```bash + fern deep --message "I have a question about SDK generation" + ``` + + If you don't provide a message, the command will open your default email client with a pre-addressed email to Deep. + +