@@ -193,21 +193,21 @@ Understanding your codebase:
193
193
194
194
1 . Navigate to your repository:
195
195
196
- ``` bash
197
- cd /path/to/repo
198
- ```
196
+ ``` bash
197
+ cd /path/to/repo
198
+ ```
199
199
200
200
1 . Get a high-level overview:
201
201
202
- ``` bash
203
- claude " Help me understand this codebase"
204
- ```
202
+ ``` bash
203
+ claude " Help me understand this codebase"
204
+ ```
205
205
206
206
1 . Ask about specific parts:
207
207
208
- ``` bash
209
- claude " Explain how authentication works in this app"
210
- ```
208
+ ``` bash
209
+ claude " Explain how authentication works in this app"
210
+ ```
211
211
212
212
### Advanced workflows
213
213
@@ -240,15 +240,24 @@ See our [issue tracker integration guide](./issue-tracker.md) for more workflows
240
240
241
241
To use Claude directly in your IDE, add the Claude VS Code extension to your workspace:
242
242
243
+ ### VS Code
244
+
245
+ If you use VS Code on your local machine with the [ Remote SSH extension] ( ../user-guides/workspace-access/vscode.md ) :
246
+
247
+ 1 . Install the [ Claude extension] ( https://marketplace.visualstudio.com/items?itemName=anthropic.claude-vscode ) in your local VS Code.
248
+ 1 . Configure it with your Anthropic API key.
249
+ 1 . Connect to your Coder workspace via Remote SSH.
250
+ 1 . Use Claude directly within VS Code while working with your remote files.
251
+
243
252
### code-server
244
253
245
254
1 . Add this to the script section in your template:
246
255
247
- ``` bash
248
- CLAUDE_VSIX_URL=" https://open-vsx.org/api/anthropic/claude-vscode/latest/file/anthropic.claude-vscode-latest.vsix"
249
- curl -L $CLAUDE_VSIX_URL -o /tmp/claude-vscode.vsix
250
- code-server --install-extension /tmp/claude-vscode.vsix
251
- ```
256
+ ``` bash
257
+ CLAUDE_VSIX_URL=" https://open-vsx.org/api/anthropic/claude-vscode/latest/file/anthropic.claude-vscode-latest.vsix"
258
+ curl -L $CLAUDE_VSIX_URL -o /tmp/claude-vscode.vsix
259
+ code-server --install-extension /tmp/claude-vscode.vsix
260
+ ```
252
261
253
262
1 . Create a settings file with your API key:
254
263
@@ -267,15 +276,6 @@ code-server --install-extension /tmp/claude-vscode.vsix
267
276
- Click it to open the Claude panel
268
277
- Start chatting with Claude about your code
269
278
270
- # ## VS Code
271
-
272
- If you use VS Code on your local machine with the [Remote SSH extension](../user-guides/workspace-access/vscode.md):
273
-
274
- 1. Install the [Claude extension](https://marketplace.visualstudio.com/items? itemName=anthropic.claude-vscode) in your local VS Code.
275
- 1. Configure it with your Anthropic API key.
276
- 1. Connect to your Coder workspace via Remote SSH.
277
- 1. Use Claude directly within VS Code while working with your remote files.
278
-
279
279
< /div>
280
280
281
281
# # Using Claude Desktop with Coder (Advanced)
0 commit comments