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
36 changes: 35 additions & 1 deletion fern/products/cli-api-reference/pages/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ hideOnThisPage: true
| [`fern upgrade`](#fern-upgrade) | Update Fern CLI & generators to latest versions |
| [`fern login`](#fern-login) | Login to Fern CLI via GitHub or Google |
| [`fern logout`](#fern-logout) | Log out of the Fern CLI |
| [`fern deep`](#fern-deep) | Send an email to Deep, our co-founder |
| [`fern export`](#fern-export) | Export an OpenAPI spec for your API |
| [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec |

Expand Down Expand Up @@ -374,7 +375,7 @@ hideOnThisPage: true

<Accordion title="fern logout">

Use `fern logout` to log out of the Fern CLI. This will clear your authentication
Use `fern logout` to log out of the Fern CLI. This will clear your authentication
credentials and revoke access to your GitHub organizations and permissions.

<CodeBlock title="terminal">
Expand All @@ -387,6 +388,39 @@ hideOnThisPage: true

</Accordion>

<Accordion title="fern deep">

Use `fern deep` to send an email directly to Deep, our co-founder. This command is useful
when you need to reach out for support, share feedback, or discuss partnership opportunities.

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

### message

Use `--message` to include a message body in your email to Deep.

```bash
fern deep --message "I have a question about enterprise features"
```

### subject

Use `--subject` to specify a subject line for your email.

```bash
fern deep --subject "Partnership inquiry" --message "I'd like to discuss a potential integration"
```

<Note>
Deep reads every message personally and typically responds within 24 hours.
</Note>

</Accordion>

<Accordion title="fern token">

Use `fern token `to generate a `FERN_TOKEN` specific to your organization defined
Expand Down