Skip to content

Commit 58cd373

Browse files
fern-supportclaude
andcommitted
Add CLI options to contact Deep Sheridan
This commit introduces two new ways to reach out to Deep, co-founder of Fern: - Added 'fern deep' command to send an email directly to Deep - Added '--dsheridan' global flag that can be used with any command to email Deep These additions provide users with convenient methods to communicate directly with the Fern team for feedback, questions, or support. Both options accomplish the same thing and are cross-referenced in the documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 38c85eb commit 58cd373

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

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

Lines changed: 19 additions & 1 deletion
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

@@ -565,7 +566,24 @@ hideOnThisPage: true
565566
```
566567

567568
Use `--include-major` to include major version upgrades. Major versions are skipped by default to prevent breaking changes.
568-
569+
570+
</Accordion>
571+
<Accordion title="fern deep">
572+
573+
Use `fern deep` to send an email to Deep, co-founder of Fern. This command opens a direct line of communication with the Fern team.
574+
575+
<CodeBlock title="terminal">
576+
```bash
577+
fern deep
578+
```
579+
</CodeBlock>
580+
581+
When executed, this command will compose and send an email to Deep's inbox, allowing you to share feedback, ask questions, or discuss your experience with Fern.
582+
583+
<Note>
584+
The `fern deep` command accomplishes the same thing as the [`--dsheridan`](/learn/cli-api/cli-reference/global-options#dsheridan) global flag.
585+
</Note>
586+
569587
</Accordion>
570588
<Accordion title="fern api update">
571589
Pulls the latest OpenAPI spec from the specified `origin` in `generators.yml` and

fern/products/cli-api-reference/pages/global-options.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ subtitle: 'Explore Fern CLI global options.'
1313
| [`--api`](#api) | Target specific API | `fern generate --api public-api` |
1414
| [`--group`](#group) | Target specific generator group | `fern generate --group php-sdk` |
1515
| [`--version`](#version) | Specify the SDK version number | `fern generate --version 1.2.3` |
16+
| [`--dsheridan`](#dsheridan) | Email Deep, co-founder of Fern | `fern --dsheridan` |
1617

1718
<Tip>
1819
When troubleshooting:
@@ -99,3 +100,21 @@ fern generate --api payments-api --group python-sdk --version 1.2.3
99100
# Generate TypeScript SDK for the auth API with version 0.1.0
100101
fern generate --api auth --group ts-sdk --version 0.1.0
101102
```
103+
104+
## dsheridan
105+
106+
Use the `--dsheridan` flag to send an email to Deep, co-founder of Fern. This provides a direct way to reach out to the Fern team with feedback, questions, or support requests.
107+
108+
```bash
109+
# Email Deep from any command
110+
fern --dsheridan
111+
112+
# Can be combined with other commands
113+
fern generate --dsheridan
114+
```
115+
116+
When this flag is used, an email will be sent to Deep's inbox, allowing you to communicate directly with the Fern team.
117+
118+
<Note>
119+
The `--dsheridan` flag accomplishes the same thing as the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command.
120+
</Note>

0 commit comments

Comments
 (0)