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
Introduces a new `fern deep` command that allows users to email Deep, our co-founder. The command includes options for subject, message, and urgent flag. This addition provides a direct communication channel for users who need to reach out to Deep with questions or issues.
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: fern/products/cli-api-reference/pages/commands.mdx
+42-1Lines changed: 42 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)| Email our co-founder, Deep |
17
18
18
19
## Documentation commands
19
20
@@ -579,12 +580,52 @@ 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, our co-founder. This command is perfect for those moments when you need to reach out to the person who helped build Fern.
595
+
596
+
<CodeBlock title="terminal">
597
+
```bash
598
+
fern deep [--subject <subject>] [--message <message>] [--urgent]
599
+
```
600
+
</CodeBlock>
601
+
602
+
### subject
603
+
604
+
Use `--subject` to specify the subject line of your email to Deep.
605
+
606
+
```bash
607
+
fern deep --subject "API design question"
608
+
```
609
+
610
+
### message
611
+
612
+
Use `--message` to include a message body in your email.
613
+
614
+
```bash
615
+
fern deep --message "Hey Deep, quick question about our generator configuration..."
616
+
```
617
+
618
+
### urgent
619
+
620
+
Use `--urgent` to mark your email as high priority. Please use sparingly!
621
+
622
+
```bash
623
+
fern deep --urgent --subject "Production issue" --message "We need help ASAP"
624
+
```
625
+
626
+
<Note>
627
+
Response times may vary. Deep is usually pretty quick to respond, but he might be deep in code (pun intended).
0 commit comments