Skip to content

Commit 1abaa1e

Browse files
fern-supportclaude
andcommitted
Add fern deep command to CLI reference documentation
Introduces a new CLI command that allows users to email Deep, co-founder of Fern, directly from the command line. This feature provides an easy way for users to share feedback, ask questions, or reach out for help. Changes: - Added fern deep command to the main commands table - Created detailed documentation with usage examples and options - Included the command in the CLI quickstart section for visibility - Added support for --subject and --message flags for quick emails Co-Authored-By: Claude <[email protected]>
1 parent 8ac8b83 commit 1abaa1e

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

fern/products/cli-api-reference/pages/cli-get-started.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ fern check # Validate API definition
7373
fern generate --preview # Preview SDKs in .preview/ folder
7474
fern generate # Generate default SDK group
7575
fern generate --group ts-sdk # Generate specific SDK group
76+
77+
# Get Help
78+
fern deep # Email Deep, co-founder of Fern
7679
```
7780

7881
<Note>

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

Lines changed: 43 additions & 0 deletions
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, co-founder of Fern |
1718

1819
## Documentation commands
1920

@@ -587,4 +588,46 @@ hideOnThisPage: true
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
<Accordion title="fern deep">
592+
593+
Use `fern deep` to send an email directly to Deep, co-founder of Fern. This command is perfect for
594+
when you need to reach out with feedback, questions, or just want to say hello.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep [--subject <subject>] [--message <message>]
599+
```
600+
</CodeBlock>
601+
602+
Running the command without options will open an interactive prompt to compose your email.
603+
604+
### subject
605+
606+
Use `--subject` to specify the email subject line.
607+
608+
```bash
609+
fern deep --subject "Feature request for SDK generation"
610+
```
611+
612+
### message
613+
614+
Use `--message` to include the body of your email.
615+
616+
```bash
617+
fern deep --subject "Quick question" --message "How can I customize the generated SDK output?"
618+
```
619+
620+
### Example
621+
622+
Send a complete email in one command:
623+
624+
```bash
625+
fern deep --subject "Love the docs!" --message "The new documentation features are amazing. Thanks for building such a great tool!"
626+
```
627+
628+
<Tip>
629+
Deep reads every message personally and aims to respond within 24 hours. Feel free to share feedback, ask questions, or just say hi!
630+
</Tip>
631+
632+
</Accordion>
590633
</AccordionGroup>

0 commit comments

Comments
 (0)