You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- session.ts: /model (no args) now uses withInkSuspended to launch
`coder --model` external process, reusing the same radio-button
selector from the CLI instead of the Ink-based ModelPicker overlay
- README.md: update Configuration section to reflect new ModelEntry
format (model: string[], price, provider/model-name), replace all
CLAUDE.md references with CODER.md
- docs/configuration.md: CLAUDE.md → CODER.md with compatibility note
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
# Set your model and API key (DeepSeek by default)
34
+
coder --model
35
35
36
36
# Start coding
37
37
coder
@@ -226,58 +226,79 @@ skills:
226
226
227
227
## Configuration
228
228
229
-
### Configuration
230
-
231
-
Coder Agent uses `~/.coder/settings.json` for persistent config, with environment variable overrides.
229
+
Coder Agent uses `~/.coder/settings.json` for persistent config. Settings are auto-populated at runtime — no manual environment variable exports needed.
Environment variables are auto-populated from settings.json at runtime. No need to manually export `CODER_AUTH_TOKEN`, `CODER_MODEL`, or `CODER_BASE_URL`.
246
+
247
247
### Model Switching
248
248
249
249
Switch models interactively:
250
250
```bash
251
251
coder --model # Interactive selection from model_list
252
-
coder --model gpt-4o # Switch to a specific model by name
@@ -299,28 +320,28 @@ Place hook definitions in `~/.coder/hooks/*.json`:
299
320
300
321
Supported events: `SessionStart`, `UserPromptSubmit`, `PreMessage`, `PostMessage`, `PreToolUse`, `PostToolUse`, `PostToolBatch`, `Stop`, `StopFailure`, `PreCompact`, `PostCompact`, `PermissionRequest`, `PermissionDenied`, `Notification`, `SubagentStart`, `SubagentStop`, and more.
301
322
302
-
### Project Configuration (CLAUDE.md)
323
+
### Project Configuration (CODER.md)
303
324
304
-
Place a `CLAUDE.md` file in your project root for project-specific instructions. Coder Agent automatically loads this as context at the start of every session:
325
+
Place a `CODER.md` file in your project root for project-specific instructions. Coder Agent automatically loads this as context at the start of every session:
305
326
306
327
```markdown
307
328
# Project Overview
308
329
309
-
This is a Next.js e-commerce application with Prisma ORM and PostgreSQL.
330
+
This is a Node.js microservice with PostgreSQL and Redis.
310
331
311
332
## Architecture
312
-
-`src/app/` — Next.js App Router pages
313
-
-`src/components/` — Shared React components
333
+
-`src/app/` — Application entry points
334
+
-`src/components/` — Shared components
314
335
-`src/lib/` — Utilities and business logic
315
-
-`prisma/` — Database schema and migrations
336
+
-`db/` — Database schema and migrations
316
337
317
338
## Conventions
318
339
- Use TypeScript strict mode
319
-
- Tests use Vitest with React Testing Library
340
+
- Tests use Vitest
320
341
- API routes follow RESTful conventions
321
342
```
322
343
323
-
Use `/init` in an interactive session to have Coder Agent auto-generate a `CLAUDE.md` for your project.
344
+
Use `/init` in an interactive session to have Coder Agent auto-generate a `CODER.md` for your project.
0 commit comments