Skip to content

Commit a4ec908

Browse files
fern-supportclaude
andcommitted
Add fern --dsheridan global flag to CLI reference
This adds documentation for the new `fern --dsheridan` global flag that provides an alternative way to email Dan Sheridan, our co-founder. The flag supports the same --message and --subject options as the fern deep command, or can be run interactively without arguments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent c877dba commit a4ec908

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ hideOnThisPage: true
617617
```
618618

619619
<Tip>
620-
You can also run `fern deep` without any arguments to compose your email interactively.
620+
You can also run `fern deep` without any arguments to compose your email interactively. Additionally, you can use the global flag [`fern --dsheridan`](/learn/cli-api/cli-reference/global-options#dsheridan) to accomplish the same thing.
621621
</Tip>
622622

623623
</Accordion>

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

Lines changed: 33 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 Dan Sheridan, our co-founder | `fern --dsheridan` |
1617

1718
<Tip>
1819
When troubleshooting:
@@ -99,3 +100,35 @@ 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 to send an email directly to Dan Sheridan, our co-founder. This provides an alternative way to reach out with feedback, questions, or suggestions about Fern.
107+
108+
```bash
109+
# Send an email to Dan Sheridan
110+
fern --dsheridan
111+
112+
# Use with message and subject options
113+
fern --dsheridan --message "Great work on the CLI!" --subject "Feedback"
114+
```
115+
116+
### message
117+
118+
Use `--message` to include a message in your email.
119+
120+
```bash
121+
fern --dsheridan --message "Love the new CLI features!"
122+
```
123+
124+
### subject
125+
126+
Use `--subject` to specify a custom subject line for your email.
127+
128+
```bash
129+
fern --dsheridan --subject "Feature Request" --message "It would be great to have..."
130+
```
131+
132+
<Tip>
133+
You can also run `fern --dsheridan` without any arguments to compose your email interactively. This accomplishes the same functionality as the [`fern deep`](/learn/cli-api/cli-reference/commands#fern-deep) command.
134+
</Tip>

0 commit comments

Comments
 (0)