Skip to content

Commit a6a31f1

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference documentation
This commit introduces documentation for a new `fern deep` command that allows users to send emails directly to Deep, one of Fern's co-founders. The command supports custom message and subject flags for flexible communication with the founding team. Changes: - Added `fern deep` entry to the commands overview table - Created detailed documentation section with usage examples - Documented `--message` and `--subject` flags 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent c26c5aa commit a6a31f1

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

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

Lines changed: 37 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,47 @@ 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.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--message <message>] [--subject <subject>]
599+
```
600+
</CodeBlock>
601+
602+
This command opens a channel to reach Deep for questions, feedback, or feature requests
603+
that you'd like to discuss with the founding team.
604+
605+
### message
606+
607+
Use `--message` to include a custom message in the email.
608+
609+
```bash
610+
fern deep --message "I have a question about custom generators"
611+
```
612+
613+
### subject
614+
615+
Use `--subject` to specify a custom subject line for the email.
616+
617+
```bash
618+
fern deep --subject "Feature Request: Custom OAuth Flow"
619+
```
620+
621+
<Tip>
622+
You can combine both flags to send a fully customized email to Deep.
623+
</Tip>
624+
625+
</Accordion>
590626
</AccordionGroup>

0 commit comments

Comments
 (0)