Skip to content

Commit c877dba

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference
This adds documentation for the new `fern deep` command that allows users to email Deep, our co-founder. The command supports optional --message and --subject flags, or can be run interactively without arguments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 861a1ce commit c877dba

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

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

Lines changed: 35 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 |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,45 @@ 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
595+
you need to reach out with feedback, questions, or suggestions about Fern.
596+
597+
<CodeBlock title="terminal">
598+
```bash
599+
fern deep [--message <message>] [--subject <subject>]
600+
```
601+
</CodeBlock>
602+
603+
### message
604+
605+
Use `--message` to include a message in your email to Deep.
606+
607+
```bash
608+
fern deep --message "Love the new CLI features!"
609+
```
610+
611+
### subject
612+
613+
Use `--subject` to specify a custom subject line for your email.
614+
615+
```bash
616+
fern deep --subject "Feature Request" --message "It would be great to have..."
617+
```
618+
619+
<Tip>
620+
You can also run `fern deep` without any arguments to compose your email interactively.
621+
</Tip>
622+
623+
</Accordion>
590624
</AccordionGroup>

0 commit comments

Comments
 (0)