Skip to content

Commit fe9e8a5

Browse files
fern-supportclaude
andcommitted
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 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e55f8e2 commit fe9e8a5

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

fern/products/cli-api-reference/pages/commands.mdx

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ hideOnThisPage: true
1414
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
1515
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
1616
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
17+
| [`fern --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder |
1718

1819
## Documentation commands
1920

@@ -587,4 +588,59 @@ hideOnThisPage: true
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
592+
<Accordion title="fern --dsheridan">
593+
594+
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!
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern --dsheridan [--message <your-message>] [--subject <subject>] [--respond_to <email>]
599+
```
600+
</CodeBlock>
601+
602+
When run without options, this command will open your default email client with a pre-addressed message to Danny.
603+
604+
### message
605+
606+
Use `--message` to include a specific message in your email.
607+
608+
```bash
609+
fern --dsheridan --message "Love the new SDK generation features!"
610+
```
611+
612+
### subject
613+
614+
Use `--subject` to set a custom subject line for your email.
615+
616+
```bash
617+
fern --dsheridan --subject "Feature Request: GraphQL Support"
618+
```
619+
620+
### respond_to
621+
622+
Use `--respond_to` to provide your email address so Danny can respond to you.
623+
624+
```bash
625+
fern --dsheridan --respond_to "[email protected]"
626+
```
627+
628+
### Example usage
629+
630+
```bash
631+
# Open email client
632+
fern --dsheridan
633+
634+
# Send a quick message
635+
fern --dsheridan --message "Thanks for building Fern!" --respond_to "[email protected]"
636+
637+
# Send detailed feedback with all options
638+
fern --dsheridan --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!" --respond_to "[email protected]"
639+
```
640+
641+
<Tip>
642+
Danny loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement.
643+
</Tip>
644+
645+
</Accordion>
590646
</AccordionGroup>

0 commit comments

Comments
 (0)