You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce a new `fern deep` command that allows users to send emails directly to Deep, one of Fern's co-founders. The command supports optional --subject and --message flags to pre-fill email content, making it easy to reach out for enterprise inquiries, partnerships, technical feedback, or direct support.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: fern/products/cli-api-reference/pages/commands.mdx
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ hideOnThisPage: true
14
14
|[`fern logout`](#fern-logout)| Log out of the Fern CLI |
15
15
|[`fern export`](#fern-export)| Export an OpenAPI spec for your API |
16
16
|[`fern api update`](#fern-api-update)| Manually update your OpenAPI spec |
17
+
|[`fern deep`](#fern-deep)| Send an email to Deep, Fern's co-founder |
17
18
18
19
## Documentation commands
19
20
@@ -579,12 +580,56 @@ hideOnThisPage: true
579
580
580
581
### api
581
582
582
-
Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
583
+
Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
583
584
584
585
<CodeBlock title="terminal">
585
586
```bash
586
587
fern api update --api public-api
587
588
```
588
589
</CodeBlock>
589
590
</Accordion>
591
+
592
+
<Accordion title="fern deep">
593
+
594
+
Use `fern deep` to send an email directly to Deep, one of Fern's co-founders. This command opens your default email client with a pre-filled email address.
595
+
596
+
<CodeBlock title="terminal">
597
+
```bash
598
+
fern deep [--subject <subject>] [--message <message>]
599
+
```
600
+
</CodeBlock>
601
+
602
+
This is useful when you need to reach out to Deep for:
603
+
- Enterprise inquiries
604
+
- Partnership discussions
605
+
- Technical feedback or feature requests
606
+
- Direct support on complex implementation issues
607
+
608
+
### subject
609
+
610
+
Use `--subject` to pre-fill the email subject line:
611
+
612
+
```bash
613
+
fern deep --subject "Enterprise pricing inquiry"
614
+
```
615
+
616
+
### message
617
+
618
+
Use `--message` to pre-fill the email body:
619
+
620
+
```bash
621
+
fern deep --message "I'd like to discuss using Fern for our API documentation needs."
622
+
```
623
+
624
+
You can combine both options:
625
+
626
+
```bash
627
+
fern deep --subject "Feature Request" --message "Would love to see support for GraphQL in the future!"
628
+
```
629
+
630
+
<Note>
631
+
This command requires an email client to be configured on your system. The email will open in your default mail application.
0 commit comments