Skip to content

Commit c54d0b6

Browse files
committed
Add --jack flag to CLI reference for emailing Jack
Added documentation for the --jack flag that allows users to send emails directly to Jack, one of Fern's co-founders. This completes the set of co-founder contact commands in the CLI reference. Changes include: - Added --jack to the main commands table - Created comprehensive accordion documentation section - Documented all three options: --message, --subject, and --respond_to - Provided usage examples showing individual option usage and combined usage - Added helpful tip encouraging users to reach out The CLI reference now supports contacting all three co-founders individually (--dsinghvi, --dsheridan, --jack) or both Deep and Danny together (--fernie).
1 parent c6df4e2 commit c54d0b6

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

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

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ hideOnThisPage: true
1717
| [`fern --dsinghvi`](#fern---dsinghvi) | Send an email to Deep, our co-founder |
1818
| [`fern --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder |
1919
| [`fern --fernie`](#fern---fernie) | Send an email to both co-founders |
20+
| [`fern --jack`](#fern---jack) | Send an email to Jack, our co-founder |
2021

2122
## Documentation commands
2223

@@ -755,4 +756,59 @@ hideOnThisPage: true
755756
</Tip>
756757

757758
</Accordion>
759+
760+
<Accordion title="fern --jack">
761+
762+
Use `fern --jack` to send an email directly to Jack, one of our co-founders. Whether you have feedback, questions, or just want to say hi, Jack is always happy to hear from the community!
763+
764+
<CodeBlock title="terminal">
765+
```bash
766+
fern --jack [--message <your-message>] [--subject <subject>] [--respond_to <email>]
767+
```
768+
</CodeBlock>
769+
770+
When run without options, this command will open your default email client with a pre-addressed message to Jack.
771+
772+
### message
773+
774+
Use `--message` to include a specific message in your email.
775+
776+
```bash
777+
fern --jack --message "Love the new SDK generation features!"
778+
```
779+
780+
### subject
781+
782+
Use `--subject` to set a custom subject line for your email.
783+
784+
```bash
785+
fern --jack --subject "Feature Request: GraphQL Support"
786+
```
787+
788+
### respond_to
789+
790+
Use `--respond_to` to provide your email address so Jack can respond to you.
791+
792+
```bash
793+
fern --jack --respond_to "[email protected]"
794+
```
795+
796+
### Example usage
797+
798+
```bash
799+
# Open email client
800+
fern --jack
801+
802+
# Send a quick message
803+
fern --jack --message "Thanks for building Fern!" --respond_to "[email protected]"
804+
805+
# Send detailed feedback with all options
806+
fern --jack --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!" --respond_to "[email protected]"
807+
```
808+
809+
<Tip>
810+
Jack loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement.
811+
</Tip>
812+
813+
</Accordion>
758814
</AccordionGroup>

0 commit comments

Comments
 (0)