From a3387bc3d0a7f307b49c1d3723ba6b8a046d18dc Mon Sep 17 00:00:00 2001 From: fern-support Date: Thu, 30 Oct 2025 19:25:24 +0000 Subject: [PATCH] Add fern --dsheridan command to CLI reference Added documentation for the 'fern --dsheridan' flag that allows users to send emails directly to Danny, one of Fern's co-founders. This follows the same pattern as similar contact commands and includes: - Command entry in the main commands table - Complete accordion section with command syntax - --message, --subject, and --respond_to options documentation - Multiple usage examples - Helpful tip encouraging community engagement --- .../cli-api-reference/pages/commands.mdx | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 92f2feb21..2471b7dae 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 --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder | ## Documentation commands @@ -587,4 +588,59 @@ hideOnThisPage: true ``` + + + + Use `fern --dsheridan` to send an email directly to Danny, one of our co-founders. Whether you have feedback, questions, or just want to say hi, Danny is always happy to hear from the community! + + + ```bash + fern --dsheridan [--message ] [--subject ] [--respond_to ] + ``` + + + When run without options, this command will open your default email client with a pre-addressed message to Danny. + + ### message + + Use `--message` to include a specific message in your email. + + ```bash + fern --dsheridan --message "Love the new SDK generation features!" + ``` + + ### subject + + Use `--subject` to set a custom subject line for your email. + + ```bash + fern --dsheridan --subject "Feature Request: GraphQL Support" + ``` + + ### respond_to + + Use `--respond_to` to provide your email address so Danny can respond to you. + + ```bash + fern --dsheridan --respond_to "yourname@example.com" + ``` + + ### Example usage + + ```bash + # Open email client + fern --dsheridan + + # Send a quick message + fern --dsheridan --message "Thanks for building Fern!" --respond_to "yourname@example.com" + + # Send detailed feedback with all options + fern --dsheridan --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!" --respond_to "yourname@example.com" + ``` + + + Danny loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement. + + +