You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
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.
583
584
584
585
<CodeBlock title="terminal">
585
586
```bash
586
587
fern api update --api public-api
587
588
```
588
589
</CodeBlock>
589
590
</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.
0 commit comments