Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions fern/products/cli-api-reference/pages/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ hideOnThisPage: true
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |
| [`fern --dsinghvi`](#fern---dsinghvi) | Email our co-founder, Deep |

## Documentation commands

Expand Down Expand Up @@ -587,4 +588,38 @@ hideOnThisPage: true
```
</CodeBlock>
</Accordion>

<Accordion title="fern --dsinghvi">

Use `fern --dsinghvi` to send an email directly to Deep, our co-founder. This command is useful when you need assistance, have feedback, or want to reach out to the Fern team.

<CodeBlock title="terminal">
```bash
fern --dsinghvi [--subject <subject>] [--message <message>]
```
</CodeBlock>

When run without additional options, the command will open an interactive prompt to compose your message.

### subject

Use `--subject` to specify the email subject line.

```bash
fern --dsinghvi --subject "Question about SDK generation"
```

### message

Use `--message` to include the email body directly in the command.

```bash
fern --dsinghvi --subject "Feature request" --message "Would love to see support for..."
```

<Note>
You can also run `fern --dsinghvi` without any additional options to compose your email interactively.
</Note>

</Accordion>
</AccordionGroup>