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
fix: wire up --prompt-caching flag, curate flags, and fix doc/env-var inaccuracies
- Add --prompt-caching CLI flag for odek run/repl/serve
- Add ODEK_PROMPT_CACHING env var and prompt_caching config key
- Wire up --apply and --interactive flags for 'odek skill curate'
- Fix SANDBOXING.md: KODE_SANDBOX_* -> ODEK_SANDBOX_* (wrong prefix)
- Fix odek-session-management skill: session cleanup uses UpdatedAt, not file mtime
- Fix odek-prompt-caching skill: config key is prompt_caching, not cache
- Remove non-existent --sse-addr from MCP docs/skills
- Add ODEK_PROMPT_CACHING to env var tables in CONFIG.md and CHEATSHEET.md
Copy file name to clipboardExpand all lines: docs/CLI.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@
32
32
33
33
| Flag | Type | Default | Description |
34
34
|------|------|---------|-------------|
35
-
|`--model <name>`| string |`deepseek-chat`| LLM model — profiles auto-set thinking/timeout (see [Providers](docs/PROVIDERS.md)) |
35
+
|`--model <name>`| string |`deepseek-chat`| LLM model — profiles auto-set thinking/timeout (see [Providers](docs/PROVIDERS.md)). Consider using `deepseek-v4-flash` for faster/cheaper tasks.|
36
36
|`--base-url <url>`| string |`https://api.deepseek.com/v1`| OpenAI-compatible API endpoint |
37
37
|`--max-iter <n>`| int |`90`| Max think→act cycles |
Copy file name to clipboardExpand all lines: docs/SANDBOXING.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ odek run --sandbox "protoc --version"
20
20
21
21
## Config reference
22
22
23
-
All sandbox settings are available in `~/.odek/config.json`, `./kode.json`, `KODE_*` env vars, and CLI flags, following the same [priority chain](CONFIG.md).
23
+
All sandbox settings are available in `~/.odek/config.json`, `./kode.json`, `ODEK_*` env vars, and CLI flags, following the same [priority chain](CONFIG.md).
24
24
25
25
### Config file fields
26
26
@@ -47,28 +47,28 @@ All sandbox settings are available in `~/.odek/config.json`, `./kode.json`, `KOD
47
47
48
48
| Field | Env var | CLI flag | Type | Default | Description |
> **Note:**`sandbox_env` and `sandbox_volumes` are config-file-only — they're too complex for flat env vars or CLI flags. For all other fields, env vars and CLI flags follow the standard `KODE_*` pattern.
60
+
> **Note:**`sandbox_env` and `sandbox_volumes` are config-file-only — they're too complex for flat env vars or CLI flags. For all other fields, env vars and CLI flags follow the standard `ODEK_*` pattern.
0 commit comments