Skip to content

Commit b1e994a

Browse files
committed
Add fern deep command to CLI reference
Introduces a new fern deep command that allows users to email co-founder Deep directly. The command supports optional --subject and --message flags for streamlined communication.
1 parent 862d0fd commit b1e994a

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

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

Lines changed: 38 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) | Email our co-founder Deep |
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,42 @@ 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 with feedback, questions, or just want to say hi!
395+
396+
<CodeBlock title="terminal">
397+
```bash
398+
fern deep [--subject <subject>] [--message <message>]
399+
```
400+
</CodeBlock>
401+
402+
### subject
403+
404+
Use `--subject` to specify the email subject line. If not provided, a default subject will be used.
405+
406+
```bash
407+
fern deep --subject "Feature Request"
408+
```
409+
410+
### message
411+
412+
Use `--message` to include a message body in your email. If not provided, an interactive prompt will guide you.
413+
414+
```bash
415+
fern deep --message "Love the new SDK generator features!"
416+
```
417+
418+
<Tip>
419+
You can also combine both options to send a complete email in one command:
420+
```bash
421+
fern deep --subject "Thanks!" --message "The docs are amazing!"
422+
```
423+
</Tip>
424+
425+
</Accordion>
426+
390427
<Accordion title="fern token">
391428

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

0 commit comments

Comments
 (0)