Skip to content

Commit 8acdd07

Browse files
authored
Remove mentions of Cody CLI support for Free and Pro (#993)
- https://sourcegraph.slack.com/archives/C01DXLN3D0T/p1739903695056049
1 parent 11945d2 commit 8acdd07

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

docs/cody/clients/install-cli.mdx

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22

33
<p className="subtitle">Learn how to install the <code>cody</code> command-line tool and using the <code>cody chat</code> subcommand.</p>
44

5-
<Callout type="note" title="Experimental">
6-
Cody CLI support is in the experimental stage.
5+
<Callout type="note">
6+
Cody CLI support is in the Experimental stage for Enterprise accounts.
77
</Callout>
88

99
Cody CLI is the same technology that powers the Cody IDE plugins but available from the command-line.
1010
Use Cody CLI for ad-hoc exploration in your terminal or as part of scripts to automate your workflows.
1111

12-
Cody CLI is available to Free, Pro, and Enterprise customers.
13-
1412
<LinkCards>
15-
<LinkCard href="https://www.npmjs.com/package/@sourcegraph/cody" imgSrc="https://storage.googleapis.com/sourcegraph-assets/docs/images/cody/command-line-blue.svg" imgAlt="Cody CLI" title="Cody CLI" description="Install Cody's free command-line interface from npm" />
13+
<LinkCard href="https://www.npmjs.com/package/@sourcegraph/cody" imgSrc="https://storage.googleapis.com/sourcegraph-assets/docs/images/cody/command-line-blue.svg" imgAlt="Cody CLI" title="Cody CLI" description="Install Cody's command-line interface from npm" />
1614
</LinkCards>
1715

1816
## Prerequisites
@@ -91,8 +89,9 @@ This will open a browser window where you can authenticate with your Sourcegraph
9189
Close the browser tab after authentication is complete.
9290
</Tab>
9391
<Tab title="Command Line">
94-
- For Cody Pro/Free accounts, create an access token at https://sourcegraph.com/user/settings/tokens.
95-
- For Cody Enterprise accounts, sign into your Sourcegraph Enterprise account and create an access token under `Account > Settings > Access Tokens`.
92+
93+
- Cody Enterprise accounts can sign into their Sourcegraph Enterprise account and create an access token under `Account > Settings > Access Tokens`.
94+
-
9695
```shell
9796
export SRC_ENDPOINT=ENDPOINT
9897
export SRC_ACCESS_TOKEN=ACCESS_TOKEN
@@ -114,7 +113,6 @@ cody auth whoami
114113

115114
**Skip this step if you have already authenticated with the `cody auth login` command.**
116115

117-
118116
If you prefer not to let Cody CLI store your access token, you can also pass the endpoint URL and access token through the environment variables `SRC_ENDPOINT` and `SRC_ACCESS_TOKEN`.
119117

120118
<Tabs>
@@ -132,7 +130,7 @@ $env:SRC_ACCESS_TOKEN = "ACCESS_TOKEN"
132130
</Tab>
133131
</Tabs>
134132

135-
It's recommended to store these access tokens in a secure location.
133+
It's recommended to store these access tokens in a secure location.
136134
For example, you can store them with a password manager like [1Password](https://1password.com/) or [Bitwarden](https://bitwarden.com/).
137135

138136
It is not recommended to export these variables in your shell startup script because it will expose your access token to all commands you run from the terminal. Instead, consider sourcing these environment variables on-demand when you need to authenticate with the Cody CLI.
@@ -209,6 +207,3 @@ Use the `-` trailing argument as an alternative to `--stdin` to read the diff fr
209207
```shell
210208
git diff | cody chat -m 'Write a commit message for this diff' -
211209
```
212-
213-
214-

0 commit comments

Comments
 (0)