Minor Changes
-
#1992
a8f1ca3Thanks @RealKai42! - Support selecting a thinking effort level from ACP clients: the thinking picker now lists the current model's declared levels (for example off / low / medium / high) instead of only an on/off toggle. Use the thinking selector in your ACP client (e.g. Zed) to pick a level; the legacy on/off values keep working. -
#1735
ce0e3ceThanks @7Sageer! - Let custom agent files restrict which sub-agent types they may delegate to (v2 engine only). -
#1735
ce0e3ceThanks @7Sageer! - Support custom agents defined as Markdown files with frontmatter, usable as the main agent or a sub-agent (v2 engine only). -
#1735
ce0e3ceThanks @7Sageer! - Add global tool gating to constrain which tools agents may use, with a per-session override (v2 engine only). -
#2012
d67a200Thanks @sailist! - Add a GET /api/v1/fs:content server endpoint that serves any file on the host by absolute path as raw content with Content-Type, ETag, and Range support. -
#1999
4c763f6Thanks @RealKai42! - Videos attached to a prompt — pasted in the TUI or uploaded in the web UI — now reach the model together with the prompt, with no extra tool round trip, and stay playable in the chat after a reload. -
#1735
ce0e3ceThanks @7Sageer! - Support overriding the default main-agent system prompt with a user-level file for every session (v2 engine only).
Patch Changes
-
#1997
74da87aThanks @sailist! - Add agent.created and agent.disposed events to the server session event stream, and expose each agent's disposal time in the transcript API. -
#2030
ec88d35Thanks @RealKai42! - Fix catalog-imported Claude models being wrongly locked into always-on thinking, and stop offering a misleading thinking Off option for models that cannot truly disable reasoning (such as Gemini 3). Also normalizes configured thinking effort values and unifies context-usage reporting. -
#2015
b5efba7Thanks @RealKai42! - Import many more providers from the models.dev catalog: vendor SDKs like xai and openrouter now import instead of being refused (with a "guessed" note), deprecated and alpha models are filtered out, per-model gateway protocol and endpoint overrides are honored, and context limits are correct (input limit for compaction, total window for completion). Imports lacking a usable endpoint now ask for one via--base-urlor a prompt. -
#1993
37eda4eThanks @RealKai42! - Add environment variable overrides for agent loop and background task limits. Set KIMI_LOOP_MAX_STEPS_PER_TURN, KIMI_LOOP_MAX_RETRIES_PER_STEP, or KIMI_CODE_BACKGROUND_MAX_RUNNING_TASKS to take priority over the [loop_control] and [background] config. -
#1993
37eda4eThanks @RealKai42! - Fix config environment overrides (such as KIMI_IMAGE_MAX_EDGE_PX or KIMI_SUBAGENT_TIMEOUT_MS) being persisted into config.toml by config API writes while the env var is set, and keeping the old value after the env var is changed to an invalid value or removed. -
#2050
8250e59Thanks @sailist! - Remove references to the non-existentkimi resumecommand from the scheduled-task tool descriptions. -
#1970
6dd4fd3Thanks @sailist! - Fix cancelled model requests being wrapped as retryable provider errors, so interrupting a request no longer triggers silent retries. -
#1970
6dd4fd3Thanks @sailist! - Send the session prompt cache key to OpenAI and OpenAI Responses providers, restoring provider-side prompt cache affinity that previously only reached Kimi and Anthropic. -
#1999
4c763f6Thanks @RealKai42! - Fix ReadMediaFile failing on videos when the provider has no file upload channel — such videos now fall back to inline delivery. -
#1968
71bcfbaThanks @RealKai42! - Fix sessions getting stuck on every turn with a provider "message must not be empty" error after a content-filtered response. -
#2022
154e082Thanks @wbxl2000! - web: Show transparent images over a checkerboard canvas so white and black content stays visible in both light and dark themes. -
#1990
115b096Thanks @liruifengv! - Fix goal mode continuation prompts leaking into the transcript when resuming a session. -
#1970
6dd4fd3Thanks @sailist! - Rework the model wire layer in the experimental v2 engine into a small set of protocol bases plus declarative provider trait definitions, so adding a provider no longer means copying adapter code, and per-turn request intent (cache key, thinking effort, sampling) flows as request parameters instead of cloned model objects. The never-functional[platforms]config section and theprovider.platformIdfield are removed; credential resolution is now a two-layer model → provider lookup. -
#1976
e458323Thanks @liruifengv! - Improve TUI performance and resume speed for long-running sessions. -
#1991
92576e4Thanks @7Sageer! - Reconnect a dropped MCP server connection automatically when one of its tools is called, and retry the call once. -
#1970
6dd4fd3Thanks @sailist! - Add read-only model resolution inspection and a live connectivity probe to the server's RPC surface, reporting per-field value provenance (config, override, builtin, env, synthesized) for internal debugging tools. -
#2015
b5efba7Thanks @RealKai42! - Fix thinking levels being offered for models that do not support them (e.g. phantom levels on Kimi K3): levels now come from each model's declared capabilities. Models that cannot disable reasoning (e.g. gpt-5) no longer offer an Off option, and turning thinking Off on models that support it (e.g. xai grok) now truly disables reasoning. -
#1735
ce0e3ceThanks @7Sageer! - Warn when a tool allow/deny list entry can never match any tool, for example a misspelled name (v2 engine only). -
#2005
a3699ddThanks @7Sageer! - Add anactiveflag to each tool in the server's tool listing API. -
#1995
73eb5f8Thanks @liruifengv! - Remove red coloring from syntax highlighting in code previews and markdown code blocks. -
#2014
576d650Thanks @liruifengv! - Add a reminder for third-party install sources to use the official installer in the update prompt.