diff --git a/.changeset/agent-core-v2-session-title.md b/.changeset/agent-core-v2-session-title.md deleted file mode 100644 index 17df2875d6..0000000000 --- a/.changeset/agent-core-v2-session-title.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/agent-core-v2": minor ---- - -Add the Session-scoped `ISessionTitleService` for managed AI session titles: composes the excerpt sent to the platform chat_title tool from the main agent's conversation (the first user prompts, the strict `first_turn` pair, or the head+tail `digest` for multi-turn sessions; assistant segments keep only final text), persists the result with a `titleKind` (`replaceable` / `generated` / `custom`) that never overwrites a user-renamed title unless explicitly forced, and rebroadcasts `session.meta.updated`. Gated by the new experimental `auto_session_title` flag and a managed OAuth login. diff --git a/.changeset/auto-session-title.md b/.changeset/auto-session-title.md deleted file mode 100644 index 253b97ff02..0000000000 --- a/.changeset/auto-session-title.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": minor ---- - -Add `generateSessionTitle` (v2 engine) for managed AI session titles: optional `force` regeneration over generated/custom titles and selectable conversation excerpts (`user_prompts` / `first_turn` / `digest`). Gated by the experimental `auto_session_title` flag and a managed OAuth login. diff --git a/.changeset/export-log-limit.md b/.changeset/export-log-limit.md deleted file mode 100644 index 019b54f940..0000000000 --- a/.changeset/export-log-limit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Remove the 64 MiB limit on web session exports, so large sessions no longer fail with a file-too-large error when downloaded from the web UI. diff --git a/.changeset/fix-banner-long-tag-narrow-terminal.md b/.changeset/fix-banner-long-tag-narrow-terminal.md deleted file mode 100644 index 24607f482e..0000000000 --- a/.changeset/fix-banner-long-tag-narrow-terminal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Fix startup banner text wrapping on narrow terminals. diff --git a/.changeset/fix-mcp-oauth-cancel.md b/.changeset/fix-mcp-oauth-cancel.md deleted file mode 100644 index 07f295679d..0000000000 --- a/.changeset/fix-mcp-oauth-cancel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Fix MCP OAuth cancellation leaving an in-flight authorization waiting for its callback timeout. diff --git a/.changeset/fix-windows-project-root-watch.md b/.changeset/fix-windows-project-root-watch.md deleted file mode 100644 index 27fd36caab..0000000000 --- a/.changeset/fix-windows-project-root-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Fix repeated file-watcher errors on Windows when the workspace is a drive root (such as `E:\`) or a UNC network share. diff --git a/.changeset/kap-server-session-title-route.md b/.changeset/kap-server-session-title-route.md deleted file mode 100644 index 2c4ab91083..0000000000 --- a/.changeset/kap-server-session-title-route.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kap-server": patch ---- - -Add `POST /api/v1/sessions/{session_id}/title/generate` with an optional `{ "force": true, "source": "user_prompts" | "first_turn" | "digest" }` body; unknown sessions return 40401 and unavailable generation (flag off, no managed login, no prompt yet, backend failure) returns the new 40923 SESSION_TITLE_UNAVAILABLE. diff --git a/.changeset/klient-session-title.md b/.changeset/klient-session-title.md deleted file mode 100644 index 833b46b1cc..0000000000 --- a/.changeset/klient-session-title.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/klient": patch ---- - -Expose `session(id).generateTitle({ force, source })` on the session facade and the matching `sessionTitleService` wire contract. diff --git a/.changeset/oauth-chat-title.md b/.changeset/oauth-chat-title.md deleted file mode 100644 index 329c6fe18f..0000000000 --- a/.changeset/oauth-chat-title.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-oauth": patch ---- - -Add `fetchChatTitle` for the managed platform `/tools` `chat_title` method: protocol headers, an 8s timeout, response validation, and structured failures. diff --git a/.changeset/oauth-device-subpath-export.md b/.changeset/oauth-device-subpath-export.md deleted file mode 100644 index 8c43547c1f..0000000000 --- a/.changeset/oauth-device-subpath-export.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-oauth": minor ---- - -Add a browser-safe `./device` subpath export exposing the device-code flow's pure-fetch HTTP wrappers and flow config, so browser bundles can run OAuth sign-in without pulling in Node-only modules. Import from `@moonshot-ai/kimi-code-oauth/device`. diff --git a/.changeset/sanitize-task-output.md b/.changeset/sanitize-task-output.md deleted file mode 100644 index 0477295aea..0000000000 --- a/.changeset/sanitize-task-output.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Prevent background task output from disrupting terminal pane borders. diff --git a/apps/kimi-code/CHANGELOG.md b/apps/kimi-code/CHANGELOG.md index 7b651b8326..abf00eacce 100644 --- a/apps/kimi-code/CHANGELOG.md +++ b/apps/kimi-code/CHANGELOG.md @@ -1,5 +1,19 @@ # @moonshot-ai/kimi-code +## 0.36.1 + +### Patch Changes + +- [#2910](https://github.com/MoonshotAI/kimi-code/pull/2910) [`eb72aeb`](https://github.com/MoonshotAI/kimi-code/commit/eb72aebeeb972b2fcc238d5650dd991a5580f96b) Thanks [@sailist](https://github.com/sailist)! - Remove the 64 MiB limit on web session exports, so large sessions no longer fail with a file-too-large error when downloaded from the web UI. + +- [#2884](https://github.com/MoonshotAI/kimi-code/pull/2884) [`1811bd4`](https://github.com/MoonshotAI/kimi-code/commit/1811bd4baf5b75ba076e2a24825f9c4f82c13341) Thanks [@liruifengv](https://github.com/liruifengv)! - Fix startup banner text wrapping on narrow terminals. + +- [#2899](https://github.com/MoonshotAI/kimi-code/pull/2899) [`102984a`](https://github.com/MoonshotAI/kimi-code/commit/102984aa660d752ba8dd7d1aba155575f32affe2) Thanks [@oocz](https://github.com/oocz)! - Fix MCP OAuth cancellation leaving an in-flight authorization waiting for its callback timeout. + +- [#2876](https://github.com/MoonshotAI/kimi-code/pull/2876) [`5912d4c`](https://github.com/MoonshotAI/kimi-code/commit/5912d4c7d19d68975e85b007976b1bef59edae5c) Thanks [@7Sageer](https://github.com/7Sageer)! - Fix repeated file-watcher errors on Windows when the workspace is a drive root (such as `E:\`) or a UNC network share. + +- [#2863](https://github.com/MoonshotAI/kimi-code/pull/2863) [`245e3d5`](https://github.com/MoonshotAI/kimi-code/commit/245e3d56a6de45e74d55449ef26cd65304a3250a) Thanks [@LouisDM](https://github.com/LouisDM)! - Prevent background task output from disrupting terminal pane borders. + ## 0.36.0 ### Minor Changes diff --git a/apps/kimi-code/package.json b/apps/kimi-code/package.json index 9293788f7e..bbeb38ead7 100644 --- a/apps/kimi-code/package.json +++ b/apps/kimi-code/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code", - "version": "0.36.0", + "version": "0.36.1", "description": "The Starting Point for Next-Gen Agents", "license": "MIT", "author": "Moonshot AI", diff --git a/apps/vscode/CHANGELOG.md b/apps/vscode/CHANGELOG.md index a2ff988f7a..8ef1e999fe 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.10 + +### Patch Changes + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629)]: + - @moonshot-ai/kimi-code-sdk@0.18.0 + ## 0.6.9 ### Patch Changes diff --git a/apps/vscode/package.json b/apps/vscode/package.json index a474840e0a..df62108552 100644 --- a/apps/vscode/package.json +++ b/apps/vscode/package.json @@ -3,7 +3,7 @@ "publisher": "moonshot-ai", "displayName": "Kimi Code", "description": "Official Kimi Code plugin for VS Code", - "version": "0.6.9", + "version": "0.6.10", "private": true, "license": "Apache-2.0", "type": "module", diff --git a/packages/acp-adapter/CHANGELOG.md b/packages/acp-adapter/CHANGELOG.md index 82b80da4b5..321e608afe 100644 --- a/packages/acp-adapter/CHANGELOG.md +++ b/packages/acp-adapter/CHANGELOG.md @@ -1,5 +1,13 @@ # @moonshot-ai/acp-adapter +## 0.3.9 + +### Patch Changes + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629)]: + - @moonshot-ai/kimi-code-sdk@0.18.0 + - @moonshot-ai/agent-core@0.15.8 + ## 0.3.8 ### Patch Changes diff --git a/packages/acp-adapter/package.json b/packages/acp-adapter/package.json index ae373c656b..49e2fe460f 100644 --- a/packages/acp-adapter/package.json +++ b/packages/acp-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/acp-adapter", - "version": "0.3.8", + "version": "0.3.9", "private": true, "description": "Agent Client Protocol adapter for kimi-code", "license": "MIT", diff --git a/packages/acp-server/CHANGELOG.md b/packages/acp-server/CHANGELOG.md new file mode 100644 index 0000000000..c8cd7909a4 --- /dev/null +++ b/packages/acp-server/CHANGELOG.md @@ -0,0 +1,9 @@ +# @moonshot-ai/acp-server + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629), [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629)]: + - @moonshot-ai/agent-core-v2@0.4.0 + - @moonshot-ai/klient@0.1.2 diff --git a/packages/acp-server/package.json b/packages/acp-server/package.json index dc85d3be73..46720ff5c0 100644 --- a/packages/acp-server/package.json +++ b/packages/acp-server/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/acp-server", - "version": "0.0.0", + "version": "0.0.1", "private": true, "description": "Agent Client Protocol (ACP) host backed directly by the DI × Scope agent engine (agent-core-v2)", "license": "MIT", diff --git a/packages/agent-core-v2/CHANGELOG.md b/packages/agent-core-v2/CHANGELOG.md index bb6734cb8f..ee04b45280 100644 --- a/packages/agent-core-v2/CHANGELOG.md +++ b/packages/agent-core-v2/CHANGELOG.md @@ -1,5 +1,16 @@ # @moonshot-ai/agent-core-v2 +## 0.4.0 + +### Minor Changes + +- [#2351](https://github.com/MoonshotAI/kimi-code/pull/2351) [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629) Thanks [@7Sageer](https://github.com/7Sageer)! - Add the Session-scoped `ISessionTitleService` for managed AI session titles: composes the excerpt sent to the platform chat_title tool from the main agent's conversation (the first user prompts, the strict `first_turn` pair, or the head+tail `digest` for multi-turn sessions; assistant segments keep only final text), persists the result with a `titleKind` (`replaceable` / `generated` / `custom`) that never overwrites a user-renamed title unless explicitly forced, and rebroadcasts `session.meta.updated`. Gated by the new experimental `auto_session_title` flag and a managed OAuth login. + +### Patch Changes + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629), [`4a93f70`](https://github.com/MoonshotAI/kimi-code/commit/4a93f70aa2cf5f70a88b4f8eeb2e409aab2c8f59)]: + - @moonshot-ai/kimi-code-oauth@0.4.0 + ## 0.3.2 ### Patch Changes diff --git a/packages/agent-core-v2/package.json b/packages/agent-core-v2/package.json index bfa1af3cee..27e364d4aa 100644 --- a/packages/agent-core-v2/package.json +++ b/packages/agent-core-v2/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/agent-core-v2", - "version": "0.3.2", + "version": "0.4.0", "private": true, "description": "The unified agent engine for Kimi (v2 — DI Scope architecture)", "license": "MIT", diff --git a/packages/agent-core/CHANGELOG.md b/packages/agent-core/CHANGELOG.md index ea446eb567..10d8c96a1b 100644 --- a/packages/agent-core/CHANGELOG.md +++ b/packages/agent-core/CHANGELOG.md @@ -1,5 +1,12 @@ # @moonshot-ai/agent-core +## 0.15.8 + +### Patch Changes + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629), [`4a93f70`](https://github.com/MoonshotAI/kimi-code/commit/4a93f70aa2cf5f70a88b4f8eeb2e409aab2c8f59)]: + - @moonshot-ai/kimi-code-oauth@0.4.0 + ## 0.15.7 ### Patch Changes diff --git a/packages/agent-core/package.json b/packages/agent-core/package.json index ddcba9b08a..2d96ce3e15 100644 --- a/packages/agent-core/package.json +++ b/packages/agent-core/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/agent-core", - "version": "0.15.7", + "version": "0.15.8", "private": true, "description": "The unified agent engine for Kimi", "license": "MIT", diff --git a/packages/kap-server/CHANGELOG.md b/packages/kap-server/CHANGELOG.md index d81d2b1432..b4fed884e0 100644 --- a/packages/kap-server/CHANGELOG.md +++ b/packages/kap-server/CHANGELOG.md @@ -1,5 +1,15 @@ # @moonshot-ai/kap-server +## 0.2.2 + +### Patch Changes + +- [#2351](https://github.com/MoonshotAI/kimi-code/pull/2351) [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629) Thanks [@7Sageer](https://github.com/7Sageer)! - Add `POST /api/v1/sessions/{session_id}/title/generate` with an optional `{ "force": true, "source": "user_prompts" | "first_turn" | "digest" }` body; unknown sessions return 40401 and unavailable generation (flag off, no managed login, no prompt yet, backend failure) returns the new 40923 SESSION_TITLE_UNAVAILABLE. + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629), [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629), [`4a93f70`](https://github.com/MoonshotAI/kimi-code/commit/4a93f70aa2cf5f70a88b4f8eeb2e409aab2c8f59)]: + - @moonshot-ai/agent-core-v2@0.4.0 + - @moonshot-ai/kimi-code-oauth@0.4.0 + ## 0.2.1 ### Patch Changes diff --git a/packages/kap-server/package.json b/packages/kap-server/package.json index bf6ff7fab7..80408840fe 100644 --- a/packages/kap-server/package.json +++ b/packages/kap-server/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kap-server", - "version": "0.2.1", + "version": "0.2.2", "private": true, "description": "Kimi Code server backed by the DI × Scope agent engine (agent-core-v2)", "type": "module", diff --git a/packages/klient/CHANGELOG.md b/packages/klient/CHANGELOG.md index 3f2e6b1e56..a8860767a7 100644 --- a/packages/klient/CHANGELOG.md +++ b/packages/klient/CHANGELOG.md @@ -1,5 +1,14 @@ # @moonshot-ai/klient +## 0.1.2 + +### Patch Changes + +- [#2351](https://github.com/MoonshotAI/kimi-code/pull/2351) [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629) Thanks [@7Sageer](https://github.com/7Sageer)! - Expose `session(id).generateTitle({ force, source })` on the session facade and the matching `sessionTitleService` wire contract. + +- Updated dependencies [[`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629)]: + - @moonshot-ai/agent-core-v2@0.4.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/klient/package.json b/packages/klient/package.json index dbba0c283a..3f07557eb4 100644 --- a/packages/klient/package.json +++ b/packages/klient/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/klient", - "version": "0.1.1", + "version": "0.1.2", "private": true, "description": "Kimi client SDK — contract-driven facade over agent-core-v2, routable over ipc or in-memory transports.", "license": "MIT", diff --git a/packages/node-sdk/CHANGELOG.md b/packages/node-sdk/CHANGELOG.md index 66b0fe369d..decdbbbc9b 100644 --- a/packages/node-sdk/CHANGELOG.md +++ b/packages/node-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @moonshot-ai/kimi-code-sdk +## 0.18.0 + +### Minor Changes + +- [#2351](https://github.com/MoonshotAI/kimi-code/pull/2351) [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629) Thanks [@7Sageer](https://github.com/7Sageer)! - Add `generateSessionTitle` (v2 engine) for managed AI session titles: optional `force` regeneration over generated/custom titles and selectable conversation excerpts (`user_prompts` / `first_turn` / `digest`). Gated by the experimental `auto_session_title` flag and a managed OAuth login. + ## 0.17.0 ### Minor Changes diff --git a/packages/node-sdk/package.json b/packages/node-sdk/package.json index 17f40c0ec9..39db925226 100644 --- a/packages/node-sdk/package.json +++ b/packages/node-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code-sdk", - "version": "0.17.0", + "version": "0.18.0", "private": true, "description": "TypeScript SDK for the Kimi Code Agent", "license": "MIT", diff --git a/packages/oauth/CHANGELOG.md b/packages/oauth/CHANGELOG.md index 8d93fac198..43a6043d1c 100644 --- a/packages/oauth/CHANGELOG.md +++ b/packages/oauth/CHANGELOG.md @@ -1,5 +1,15 @@ # @moonshot-ai/kimi-code-oauth +## 0.4.0 + +### Minor Changes + +- [#2885](https://github.com/MoonshotAI/kimi-code/pull/2885) [`4a93f70`](https://github.com/MoonshotAI/kimi-code/commit/4a93f70aa2cf5f70a88b4f8eeb2e409aab2c8f59) Thanks [@liruifengv](https://github.com/liruifengv)! - Add a browser-safe `./device` subpath export exposing the device-code flow's pure-fetch HTTP wrappers and flow config, so browser bundles can run OAuth sign-in without pulling in Node-only modules. Import from `@moonshot-ai/kimi-code-oauth/device`. + +### Patch Changes + +- [#2351](https://github.com/MoonshotAI/kimi-code/pull/2351) [`6be2697`](https://github.com/MoonshotAI/kimi-code/commit/6be26978b123bacf1c5ebce52bbeb6f7b7ff0629) Thanks [@7Sageer](https://github.com/7Sageer)! - Add `fetchChatTitle` for the managed platform `/tools` `chat_title` method: protocol headers, an 8s timeout, response validation, and structured failures. + ## 0.3.0 ### Minor Changes diff --git a/packages/oauth/package.json b/packages/oauth/package.json index 4b9d4b82f3..7bdb32b0bf 100644 --- a/packages/oauth/package.json +++ b/packages/oauth/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code-oauth", - "version": "0.3.0", + "version": "0.4.0", "private": true, "description": "Kimi OAuth toolkit for managed Kimi Code authentication", "license": "MIT",