Skip to content

Commit 173cc10

Browse files
committed
Add documentation for fern deep command
Add comprehensive documentation for the new 'fern deep' command that allows users to send emails to co-founder Deep. Includes usage examples for subject and message flags, as well as interactive mode.
1 parent 8191682 commit 173cc10

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

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

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

1819
## Documentation commands
1920

@@ -587,4 +588,47 @@ 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, our co-founder. This command is useful when you need to reach out about important matters, provide feedback, or discuss your Fern experience.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
599+
```
600+
</CodeBlock>
601+
602+
### subject
603+
604+
Use `--subject` to specify the subject line of your email.
605+
606+
```bash
607+
fern deep --subject "Feature Request: New SDK Language"
608+
```
609+
610+
### message
611+
612+
Use `--message` to include the body content of your email.
613+
614+
```bash
615+
fern deep --message "I'd love to see support for Rust SDKs"
616+
```
617+
618+
### Interactive mode
619+
620+
If you run `fern deep` without any flags, the CLI will prompt you interactively to compose your email:
621+
622+
```bash
623+
fern deep
624+
```
625+
626+
<Tip>
627+
You can combine both flags to send a complete email in one command:
628+
```bash
629+
fern deep --subject "Great work!" --message "The new docs feature is amazing!"
630+
```
631+
</Tip>
632+
633+
</Accordion>
590634
</AccordionGroup>

0 commit comments

Comments
 (0)