Skip to content

Commit 9398334

Browse files
fern-supportclaude
andcommitted
Add 'fern deep' command to CLI reference documentation
This commit introduces documentation for a new 'fern deep' command that allows users to send an email directly to Deep, one of Fern's co-founders. The command includes optional flags for specifying email subject and body content. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 3bf0d21 commit 9398334

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

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

Lines changed: 41 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, Fern's co-founder |
1718

1819
## Documentation commands
1920

@@ -587,4 +588,44 @@ 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 your default email client with a pre-addressed message to Deep.
596+
597+
<CodeBlock title="terminal">
598+
```bash
599+
fern deep [--subject <subject>] [--body <message>]
600+
```
601+
</CodeBlock>
602+
603+
### subject
604+
605+
Use `--subject` to specify a subject line for your email to Deep.
606+
607+
```bash
608+
fern deep --subject "Feature request for Fern CLI"
609+
```
610+
611+
### body
612+
613+
Use `--body` to pre-populate the email body with a message.
614+
615+
```bash
616+
fern deep --body "Hi Deep, I'd love to discuss..."
617+
```
618+
619+
You can combine both options for a fully pre-composed email:
620+
621+
```bash
622+
fern deep --subject "Quick question" --body "Hi Deep, I have a question about..."
623+
```
624+
625+
<Note>
626+
This command is great for reaching out to Deep with feedback, questions, or just to say hello!
627+
If you need general support, consider using our [support channels](https://buildwithfern.com/contact) instead.
628+
</Note>
629+
630+
</Accordion>
590631
</AccordionGroup>

0 commit comments

Comments
 (0)