Skip to content

Commit 2fb19b8

Browse files
fern-supportclaude
andcommitted
Add fern deep command and --dsheridan flag to CLI reference
This update introduces two new ways to contact co-founder Deep: - A new `fern deep` command for direct email communication - A global `--dsheridan` flag that can be used with any Fern CLI command Both methods provide the same functionality and are cross-referenced in the documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 36c7554 commit 2fb19b8

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

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

Lines changed: 18 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 our co-founder, Deep |
1718

1819
## Documentation commands
1920

@@ -579,12 +580,28 @@ hideOnThisPage: true
579580

580581
### api
581582

582-
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.
583584

584585
<CodeBlock title="terminal">
585586
```bash
586587
fern api update --api public-api
587588
```
588589
</CodeBlock>
589590
</Accordion>
591+
592+
<Accordion title="fern deep">
593+
594+
Use `fern deep` to send an email directly to our co-founder, Deep. This command provides a direct line of communication for important feedback, questions, or ideas.
595+
596+
<CodeBlock title="terminal">
597+
```bash
598+
fern deep
599+
```
600+
</CodeBlock>
601+
602+
<Note>
603+
You can also use the global flag [`--dsheridan`](/learn/cli-api/cli-reference/options#dsheridan) with any command to accomplish the same thing.
604+
</Note>
605+
606+
</Accordion>
590607
</AccordionGroup>

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

Lines changed: 17 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 our co-founder, Deep | `fern generate --dsheridan` |
1617

1718
<Tip>
1819
When troubleshooting:
@@ -99,3 +100,19 @@ 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` option with any Fern CLI command to send an email directly to our co-founder, Deep. This provides a direct line of communication for important feedback, questions, or ideas.
107+
108+
```bash
109+
# Send an email to Deep while generating SDKs
110+
fern generate --dsheridan
111+
112+
# Send an email to Deep while checking your API
113+
fern check --dsheridan
114+
```
115+
116+
<Note>
117+
Alternatively, you can use the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command to accomplish the same thing.
118+
</Note>

0 commit comments

Comments
 (0)