Skip to content

Commit ee24a30

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference
Introduces a new `fern deep` command that allows users to send emails directly to Deep, one of Fern's co-founders. The command supports both interactive and non-interactive modes with --subject and --message flags. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 0941d2f commit ee24a30

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

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

Lines changed: 49 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, Fern's co-founder |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,59 @@ 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, one of Fern's co-founders. This command provides a direct channel for urgent questions, feedback, or support requests.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
599+
```
600+
</CodeBlock>
601+
602+
When run without flags, the command will open an interactive prompt where you can compose your email:
603+
604+
```bash
605+
fern deep
606+
# Opens interactive prompt for subject and message
607+
```
608+
609+
### subject
610+
611+
Use `--subject` to specify the email subject line directly from the command line.
612+
613+
```bash
614+
fern deep --subject "Question about SDK generation"
615+
```
616+
617+
### message
618+
619+
Use `--message` to provide the email body directly from the command line.
620+
621+
```bash
622+
fern deep --message "I'm having an issue with TypeScript SDK generation for my API."
623+
```
624+
625+
### Combined usage
626+
627+
You can combine both flags to send an email without an interactive prompt:
628+
629+
```bash
630+
fern deep --subject "Feature request" --message "Would love to see support for GraphQL schemas in a future release."
631+
```
632+
633+
<Tip>
634+
Deep typically responds within 24-48 hours. For urgent technical issues, consider also checking our [Discord community](https://discord.com/invite/JkkXumPzcG) or [GitHub issues](https://github.com/fern-api/fern/issues).
635+
</Tip>
636+
637+
</Accordion>
590638
</AccordionGroup>

0 commit comments

Comments
 (0)