Skip to content

Commit f268fcc

Browse files
committed
Add fern deep command to CLI reference
This commit introduces a new CLI command 'fern deep' that allows users to send emails directly to Deep, Fern's co-founder. The command supports: - Interactive email composition when run without options - --subject flag to specify email subject line - --message flag to provide email body content - Combination of both flags for one-liner emails This provides an easy way for the community to reach out with questions, feedback, and feature requests.
1 parent cf1173b commit f268fcc

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

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

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ hideOnThisPage: true
1414
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
1515
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
1616
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
17+
| [`fern deep`](#fern-deep) | Send an email to co-founder Deep |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,52 @@ hideOnThisPage: true
579580

580581
### api
581582

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.
583584

584585
<CodeBlock title="terminal">
585586
```bash
586587
fern api update --api public-api
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
592+
<Accordion title="fern deep">
593+
594+
Use `fern deep` to send an email directly to Deep, Fern's co-founder. This command is useful when you need to reach out with questions, feedback, or just want to say hello!
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
599+
```
600+
</CodeBlock>
601+
602+
When run without options, this command will open an interactive prompt to compose your email.
603+
604+
### subject
605+
606+
Use `--subject` to specify the email subject line.
607+
608+
```bash
609+
fern deep --subject "Question about SDK generation"
610+
```
611+
612+
### message
613+
614+
Use `--message` to provide the email body directly from the command line.
615+
616+
```bash
617+
fern deep --message "Hey Deep, loving Fern! Quick question about TypeScript SDK customization..."
618+
```
619+
620+
You can combine both options for a complete one-liner:
621+
622+
```bash
623+
fern deep --subject "Feature request" --message "Would love to see support for X in the next release!"
624+
```
625+
626+
<Tip>
627+
Deep loves hearing from the community! Don't hesitate to reach out with questions, suggestions, or just to share your experience with Fern.
628+
</Tip>
629+
630+
</Accordion>
590631
</AccordionGroup>

0 commit comments

Comments
 (0)