Skip to content

Commit 4c29dfa

Browse files
committed
Add 'fern deep' command to CLI reference documentation
This commit introduces a new 'fern deep' command that allows users to email co-founder Deep directly from the CLI. The command includes optional --subject and --body flags to pre-fill email content, making it easier for users to reach out with questions, feedback, or support requests. Changes: - Added 'fern deep' to the main commands table - Created detailed documentation section with usage examples - Included command syntax and optional parameters
1 parent 9d5f55a commit 4c29dfa

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

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

Lines changed: 36 additions & 0 deletions
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

@@ -387,6 +388,41 @@ hideOnThisPage: true
387388

388389
</Accordion>
389390

391+
<Accordion title="fern deep">
392+
393+
Use `fern deep` to send an email to our co-founder Deep. This command opens your default
394+
email client with a pre-addressed message to Deep for questions, feedback, or support.
395+
396+
<CodeBlock title="terminal">
397+
```bash
398+
fern deep [--subject <subject>] [--body <message>]
399+
```
400+
</CodeBlock>
401+
402+
Running this command without options will open your email client with Deep's email address pre-filled.
403+
404+
### subject
405+
406+
Use `--subject` to pre-fill the email subject line.
407+
408+
```bash
409+
fern deep --subject "Question about SDK generation"
410+
```
411+
412+
### body
413+
414+
Use `--body` to pre-fill the email message body.
415+
416+
```bash
417+
fern deep --body "Hi Deep, I have a question about..."
418+
```
419+
420+
<Tip>
421+
You can combine both options to create a fully pre-filled email template.
422+
</Tip>
423+
424+
</Accordion>
425+
390426
<Accordion title="fern token">
391427

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

0 commit comments

Comments
 (0)