Skip to content

Commit ad0f919

Browse files
committed
Add 'fern deep' command to CLI reference documentation
This commit introduces a new CLI command 'fern deep' that allows users to send emails directly to Deep, one of Fern's co-founders. The command includes options for customizing the message and subject line, making it easy for users to provide feedback, ask questions, or share ideas with the team.
1 parent e7ebde1 commit ad0f919

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
@@ -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 deep`](#fern-deep) | Send an email to Deep, our co-founder |
1718

1819
## Documentation commands
1920

@@ -587,4 +588,51 @@ hideOnThisPage: true
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
592+
<Accordion title="fern deep">
593+
594+
Use `fern deep` to send an email directly to Deep, one of our co-founders. Whether you have feedback, questions, or just want to say hi, Deep is always happy to hear from the community!
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--message <your-message>] [--subject <subject>]
599+
```
600+
</CodeBlock>
601+
602+
When run without options, this command will open your default email client with a pre-addressed message to Deep.
603+
604+
### message
605+
606+
Use `--message` to include a specific message in your email.
607+
608+
```bash
609+
fern deep --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 deep --subject "Feature Request: GraphQL Support"
618+
```
619+
620+
### Example usage
621+
622+
```bash
623+
# Open email client
624+
fern deep
625+
626+
# Send a quick message
627+
fern deep --message "Thanks for building Fern!"
628+
629+
# Send detailed feedback
630+
fern deep --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!"
631+
```
632+
633+
<Tip>
634+
Deep loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement.
635+
</Tip>
636+
637+
</Accordion>
590638
</AccordionGroup>

0 commit comments

Comments
 (0)