Skip to content

Commit 9161d96

Browse files
committed
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 the existing --dsinghvi flag and includes: - Command entry in the main commands table - Complete accordion section with command syntax - --message and --subject options documentation - Multiple usage examples - Helpful tip encouraging community engagement
1 parent 5b55d8a commit 9161d96

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ hideOnThisPage: true
1515
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
1616
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
1717
| [`fern --dsinghvi`](#fern---dsinghvi) | Send an email to Deep, our co-founder |
18+
| [`fern --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder |
1819

1920
## Documentation commands
2021

@@ -635,4 +636,51 @@ hideOnThisPage: true
635636
</Tip>
636637

637638
</Accordion>
639+
640+
<Accordion title="fern --dsheridan">
641+
642+
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!
643+
644+
<CodeBlock title="terminal">
645+
```bash
646+
fern --dsheridan [--message <your-message>] [--subject <subject>]
647+
```
648+
</CodeBlock>
649+
650+
When run without options, this command will open your default email client with a pre-addressed message to Danny.
651+
652+
### message
653+
654+
Use `--message` to include a specific message in your email.
655+
656+
```bash
657+
fern --dsheridan --message "Love the new SDK generation features!"
658+
```
659+
660+
### subject
661+
662+
Use `--subject` to set a custom subject line for your email.
663+
664+
```bash
665+
fern --dsheridan --subject "Feature Request: GraphQL Support"
666+
```
667+
668+
### Example usage
669+
670+
```bash
671+
# Open email client
672+
fern --dsheridan
673+
674+
# Send a quick message
675+
fern --dsheridan --message "Thanks for building Fern!"
676+
677+
# Send detailed feedback
678+
fern --dsheridan --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!"
679+
```
680+
681+
<Tip>
682+
Danny loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement.
683+
</Tip>
684+
685+
</Accordion>
638686
</AccordionGroup>

0 commit comments

Comments
 (0)