Skip to content

Commit 2acd873

Browse files
committed
Add fern deep command to CLI reference
This commit introduces documentation for the new 'fern deep' command that allows users to email Deep, one of Fern's co-founders. The command supports optional --subject and --message flags for convenient email composition. Changes: - Added fern deep to the main commands table - Created detailed accordion documentation with usage examples - Included tip encouraging users to reach out with questions and feedback
1 parent 0941d2f commit 2acd873

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

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

Lines changed: 43 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) | Email Deep, our co-founder |
1718

1819
## Documentation commands
1920

@@ -587,4 +588,46 @@ 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 Fern's co-founders. This command
595+
opens a convenient way to reach out with questions, feedback, or just to say hello!
596+
597+
<CodeBlock title="terminal">
598+
```bash
599+
fern deep [--subject <subject>] [--message <message>]
600+
```
601+
</CodeBlock>
602+
603+
When you run `fern deep`, it will compose an email to Deep with your message. If no subject
604+
or message is provided, your default email client will open with a pre-addressed email.
605+
606+
### subject
607+
608+
Use `--subject` to specify the email subject line.
609+
610+
```bash
611+
fern deep --subject "Question about SDK generation"
612+
```
613+
614+
### message
615+
616+
Use `--message` to include a message body in your email.
617+
618+
```bash
619+
fern deep --message "I have a question about customizing TypeScript SDK output..."
620+
```
621+
622+
You can combine both options for a complete email:
623+
624+
```bash
625+
fern deep --subject "Feature request" --message "Would love to see support for..."
626+
```
627+
628+
<Tip>
629+
Deep loves hearing from users! Don't hesitate to reach out with questions, suggestions, or feedback about your experience with Fern.
630+
</Tip>
631+
632+
</Accordion>
590633
</AccordionGroup>

0 commit comments

Comments
 (0)