Skip to content

Commit 46ebde3

Browse files
committed
Add fern deep command to CLI reference
Added documentation for the new 'fern deep' command that allows users to email our co-founder Deep directly from the CLI. The command supports optional --subject and --message flags, with an interactive prompt fallback when these are not provided.
1 parent 36c7554 commit 46ebde3

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

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

Lines changed: 40 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 Deep, our co-founder |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,50 @@ 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, our co-founder. This command is useful when you need to reach out to leadership about your Fern experience, share feedback, or discuss partnership opportunities.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
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 "Feature Request: Custom SDK Templates"
608+
```
609+
610+
### message
611+
612+
Use `--message` to include a message body in your email.
613+
614+
```bash
615+
fern deep --message "Hi Deep, I'd love to discuss how Fern could support our use case..."
616+
```
617+
618+
You can also combine both options:
619+
620+
```bash
621+
fern deep --subject "Partnership Inquiry" --message "We're interested in exploring an enterprise partnership."
622+
```
623+
624+
<Note>
625+
If you don't provide a subject or message, the CLI will open an interactive prompt to help you compose your email.
626+
</Note>
627+
628+
</Accordion>
590629
</AccordionGroup>

0 commit comments

Comments
 (0)