Skip to content

Commit 61c9939

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference
This update introduces the fern deep command, which allows users to send emails directly to Deep, our co-founder. The command supports --subject and --message flags for quick emails, with an interactive prompt fallback when flags are not provided. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent c26c5aa commit 61c9939

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

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

Lines changed: 35 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,38 @@ 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 perfect for when you need to reach out with questions, feedback, or just want to say hello!
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 email subject line.
605+
606+
```bash
607+
fern deep --subject "Quick question about SDKs"
608+
```
609+
610+
### message
611+
612+
Use `--message` to include a message body in your email.
613+
614+
```bash
615+
fern deep --subject "Feature request" --message "Would love to see support for GraphQL!"
616+
```
617+
618+
If you don't provide a subject or message, the CLI will open an interactive prompt to help you compose your email.
619+
620+
<Note>
621+
Deep reads every email personally and aims to respond within 24 hours!
622+
</Note>
623+
624+
</Accordion>
590625
</AccordionGroup>

0 commit comments

Comments
 (0)