diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 92f2feb21..7850a4000 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, Fern's co-founder | ## Documentation commands @@ -587,4 +588,44 @@ hideOnThisPage: true ``` + + + + Use `fern deep` to send an email directly to Deep, one of Fern's co-founders. This command + opens your default email client with a pre-addressed message to Deep. + + + ```bash + fern deep [--subject ] [--body ] + ``` + + + ### subject + + Use `--subject` to specify a subject line for your email to Deep. + + ```bash + fern deep --subject "Feature request for Fern CLI" + ``` + + ### body + + Use `--body` to pre-populate the email body with a message. + + ```bash + fern deep --body "Hi Deep, I'd love to discuss..." + ``` + + You can combine both options for a fully pre-composed email: + + ```bash + fern deep --subject "Quick question" --body "Hi Deep, I have a question about..." + ``` + + + This command is great for reaching out to Deep with feedback, questions, or just to say hello! + If you need general support, consider using our [support channels](https://buildwithfern.com/contact) instead. + + +