Skip to content

Commit 6dd9505

Browse files
committed
Add fern deep command to CLI reference
Introduced a new 'fern deep' command that allows users to send emails directly to Deep, the co-founder, for personalized assistance. The command includes --message and --urgent flags for customized communication. Updated the CLI commands documentation with: - Added fern deep entry in the main commands table - Created detailed accordion section with usage examples - Included helpful tips for when to use this command versus other support channels
1 parent b46b1f3 commit 6dd9505

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

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

Lines changed: 36 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) | Email Deep, our co-founder, for assistance |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,46 @@ 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, for personalized assistance with Fern.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--message <message>] [--urgent]
599+
```
600+
</CodeBlock>
601+
602+
This command opens a direct line of communication with Deep for questions, feedback, or support requests that need a personal touch.
603+
604+
### message
605+
606+
Use `--message` to include a specific message in your email to Deep.
607+
608+
```bash
609+
fern deep --message "I have a question about custom generators"
610+
```
611+
612+
### urgent
613+
614+
Use `--urgent` to flag your message as urgent, ensuring faster response time.
615+
616+
```bash
617+
fern deep --urgent --message "Production issue with SDK generation"
618+
```
619+
620+
<Tip>
621+
For general support questions, consider checking the [documentation](https://docs.buildwithfern.com) or joining our [Discord community](https://discord.gg/fernapi) first. Use `fern deep` for specific issues that benefit from direct co-founder involvement.
622+
</Tip>
623+
624+
</Accordion>
590625
</AccordionGroup>

0 commit comments

Comments
 (0)