Skip to content

Commit bd2d358

Browse files
committed
Add fern deep command to CLI reference
Added documentation for the new `fern deep` command that allows users to email Deep, one of our co-founders. The command supports optional --subject and --message flags, or can be run interactively without arguments. Changes: - Added `fern deep` entry to the main commands table - Created detailed accordion documentation with usage examples - Included options for subject and message parameters
1 parent c8e558d commit bd2d358

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) | Email our co-founder, Deep |
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 useful when you need assistance, have feedback, or want to reach out to the Fern team.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
599+
```
600+
</CodeBlock>
601+
602+
When run without options, the command will open an interactive prompt to compose your message.
603+
604+
### subject
605+
606+
Use `--subject` to specify the email subject line.
607+
608+
```bash
609+
fern deep --subject "Question about SDK generation"
610+
```
611+
612+
### message
613+
614+
Use `--message` to include the email body directly in the command.
615+
616+
```bash
617+
fern deep --subject "Feature request" --message "Would love to see support for..."
618+
```
619+
620+
<Note>
621+
You can also run `fern deep` without any options to compose your email interactively.
622+
</Note>
623+
624+
</Accordion>
590625
</AccordionGroup>

0 commit comments

Comments
 (0)