Skip to content

Commit b5c5db3

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference
This commit introduces documentation for the new `fern deep` command that allows users to email Deep, our co-founder, directly from the CLI. The command supports optional --subject and --message flags for specifying email content, with interactive prompts as a fallback. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 0941d2f commit b5c5db3

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

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

Lines changed: 33 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,36 @@ hideOnThisPage: true
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
592+
<Accordion title="fern deep">
593+
Use `fern deep` to send an email directly to Deep, our co-founder. This command is useful
594+
when you need to reach out to our leadership team with feedback, questions, or important matters.
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 "API feedback"
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+
<Note>
619+
If you don't provide a subject or message via flags, the CLI will prompt you interactively.
620+
</Note>
621+
622+
</Accordion>
590623
</AccordionGroup>

0 commit comments

Comments
 (0)