Skip to content

Commit ab0d030

Browse files
committed
Add fern deep command to CLI reference
Introduced a new `fern deep` command that allows users to send emails directly to Deep, our co-founder. The command supports optional --message and --subject flags for customizing the email content. This provides a direct communication channel for users who need support, want to share feedback, or discuss partnership opportunities.
1 parent 0941d2f commit ab0d030

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

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

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ hideOnThisPage: true
1212
| [`fern upgrade`](#fern-upgrade) | Update Fern CLI & generators to latest versions |
1313
| [`fern login`](#fern-login) | Login to Fern CLI via GitHub or Google |
1414
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
15+
| [`fern deep`](#fern-deep) | Send an email to Deep, our co-founder |
1516
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
1617
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
1718

@@ -374,7 +375,7 @@ hideOnThisPage: true
374375

375376
<Accordion title="fern logout">
376377

377-
Use `fern logout` to log out of the Fern CLI. This will clear your authentication
378+
Use `fern logout` to log out of the Fern CLI. This will clear your authentication
378379
credentials and revoke access to your GitHub organizations and permissions.
379380

380381
<CodeBlock title="terminal">
@@ -387,6 +388,39 @@ hideOnThisPage: true
387388

388389
</Accordion>
389390

391+
<Accordion title="fern deep">
392+
393+
Use `fern deep` to send an email directly to Deep, our co-founder. This command is useful
394+
when you need to reach out for support, share feedback, or discuss partnership opportunities.
395+
396+
<CodeBlock title="terminal">
397+
```bash
398+
fern deep [--message <message>] [--subject <subject>]
399+
```
400+
</CodeBlock>
401+
402+
### message
403+
404+
Use `--message` to include a message body in your email to Deep.
405+
406+
```bash
407+
fern deep --message "I have a question about enterprise features"
408+
```
409+
410+
### subject
411+
412+
Use `--subject` to specify a subject line for your email.
413+
414+
```bash
415+
fern deep --subject "Partnership inquiry" --message "I'd like to discuss a potential integration"
416+
```
417+
418+
<Note>
419+
Deep reads every message personally and typically responds within 24 hours.
420+
</Note>
421+
422+
</Accordion>
423+
390424
<Accordion title="fern token">
391425

392426
Use `fern token `to generate a `FERN_TOKEN` specific to your organization defined

0 commit comments

Comments
 (0)