From 161f3bb949bad88aa0dfb1f5ec89dcac93c26a6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 08:16:50 +0000 Subject: [PATCH] ci: release packages --- .changeset/clean-staged-media.md | 5 ---- .changeset/daemon-file-ref-drop-path.md | 5 ---- .changeset/fix-utf8-text-binary-detection.md | 5 ---- .changeset/inline-multi-skill-sdk.md | 5 ---- .changeset/inline-multi-skill-tui.md | 5 ---- .changeset/inline-slash-trigger-pi-tui.md | 5 ---- .changeset/lazy-global-search-startup.md | 5 ---- .changeset/persist-token-counting-ledger.md | 5 ---- .changeset/queue-skill-commands-while-busy.md | 5 ---- .changeset/sdk-upload-file.md | 5 ---- .changeset/tower-slash-command.md | 5 ---- .changeset/v1-mcp-management-plane.md | 9 ------- apps/kimi-code/CHANGELOG.md | 24 +++++++++++++++++++ apps/kimi-code/package.json | 2 +- apps/vscode/CHANGELOG.md | 11 +++++++++ apps/vscode/package.json | 2 +- packages/acp-adapter/CHANGELOG.md | 7 ++++++ packages/acp-adapter/package.json | 2 +- packages/node-sdk/CHANGELOG.md | 14 +++++++++++ packages/node-sdk/package.json | 2 +- packages/pi-tui/CHANGELOG.md | 6 +++++ packages/pi-tui/package.json | 2 +- 22 files changed, 67 insertions(+), 69 deletions(-) delete mode 100644 .changeset/clean-staged-media.md delete mode 100644 .changeset/daemon-file-ref-drop-path.md delete mode 100644 .changeset/fix-utf8-text-binary-detection.md delete mode 100644 .changeset/inline-multi-skill-sdk.md delete mode 100644 .changeset/inline-multi-skill-tui.md delete mode 100644 .changeset/inline-slash-trigger-pi-tui.md delete mode 100644 .changeset/lazy-global-search-startup.md delete mode 100644 .changeset/persist-token-counting-ledger.md delete mode 100644 .changeset/queue-skill-commands-while-busy.md delete mode 100644 .changeset/sdk-upload-file.md delete mode 100644 .changeset/tower-slash-command.md delete mode 100644 .changeset/v1-mcp-management-plane.md diff --git a/.changeset/clean-staged-media.md b/.changeset/clean-staged-media.md deleted file mode 100644 index 8348647793..0000000000 --- a/.changeset/clean-staged-media.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": patch ---- - -Keep pasted image and video attachments available in session history, and clean up temporary uploads automatically. diff --git a/.changeset/daemon-file-ref-drop-path.md b/.changeset/daemon-file-ref-drop-path.md deleted file mode 100644 index 6f23742ef9..0000000000 --- a/.changeset/daemon-file-ref-drop-path.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": minor ---- - -Daemon file references no longer persist a materialization path: the daemon-file URL builder takes only a file id, and the parsed reference no longer carries a `path` field. The display path is derived from the session media store at read time, so a session fork or home relocation can no longer stale a persisted reference. Urls with a legacy `?path=` query still parse. diff --git a/.changeset/fix-utf8-text-binary-detection.md b/.changeset/fix-utf8-text-binary-detection.md deleted file mode 100644 index cb78e5ccfb..0000000000 --- a/.changeset/fix-utf8-text-binary-detection.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": patch ---- - -Fix UTF-8 text files containing Chinese or emoji being misdetected as binary, so log files preview correctly in the web UI. diff --git a/.changeset/inline-multi-skill-sdk.md b/.changeset/inline-multi-skill-sdk.md deleted file mode 100644 index f7ebe9a1b0..0000000000 --- a/.changeset/inline-multi-skill-sdk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": minor ---- - -Add `session.promptWithSkills(input, skills)` to submit one prompt with one or more skill activations bundled into the same user message — one turn, one undo unit (v2 engine only; rejects on the v1 engine). diff --git a/.changeset/inline-multi-skill-tui.md b/.changeset/inline-multi-skill-tui.md deleted file mode 100644 index 9b5d762797..0000000000 --- a/.changeset/inline-multi-skill-tui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": minor ---- - -Activate multiple skills in a single prompt. Type `/` after whitespace to insert a skill token; all referenced skills run with the prompt as one turn (and undo as one unit). diff --git a/.changeset/inline-slash-trigger-pi-tui.md b/.changeset/inline-slash-trigger-pi-tui.md deleted file mode 100644 index f17dafc9e1..0000000000 --- a/.changeset/inline-slash-trigger-pi-tui.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/pi-tui": patch ---- - -Add an opt-in inline slash autocomplete trigger that fires after whitespace mid-input and at the start of subsequent editor lines. diff --git a/.changeset/lazy-global-search-startup.md b/.changeset/lazy-global-search-startup.md deleted file mode 100644 index 8513e3af47..0000000000 --- a/.changeset/lazy-global-search-startup.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": patch ---- - -Fix several seconds of startup lag: the global search index (used only by the web UI's search) was being opened and synced in every terminal session, including ones that never search. It now loads on demand, so interactive startup stays fast. diff --git a/.changeset/persist-token-counting-ledger.md b/.changeset/persist-token-counting-ledger.md deleted file mode 100644 index 90d5306a4e..0000000000 --- a/.changeset/persist-token-counting-ledger.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": patch ---- - -Persist the token counting ledger (`token_counting.measured` / `truncated` / `rebased`) to the wire journal, so the displayed context size keeps its measured value after archiving and unarchiving a session (or any close → resume) instead of dropping to a smaller estimate until the next LLM call. diff --git a/.changeset/queue-skill-commands-while-busy.md b/.changeset/queue-skill-commands-while-busy.md deleted file mode 100644 index 3a54b1b474..0000000000 --- a/.changeset/queue-skill-commands-while-busy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": patch ---- - -Queue slash skill commands entered while the agent is busy instead of rejecting them with "Cannot / while streaming" — they now behave exactly like normal input: queued visibly by default, and Ctrl-S steers them into the running turn as real skill activations. diff --git a/.changeset/sdk-upload-file.md b/.changeset/sdk-upload-file.md deleted file mode 100644 index c00f4dd97c..0000000000 --- a/.changeset/sdk-upload-file.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": minor ---- - -Add `uploadFile` for uploading media to the engine's file store and referencing it from prompts, plus an optional `promptId` on prompt submissions for correlating them with turn-started events. Both require the v2 harness. diff --git a/.changeset/tower-slash-command.md b/.changeset/tower-slash-command.md deleted file mode 100644 index fa1e9ce02a..0000000000 --- a/.changeset/tower-slash-command.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vyl/kimi-code": minor ---- - -Add the /tower slash command to orchestrate multiple agents iterating on one repo in parallel — you act as the control tower while worker agents execute missions in their own git worktrees. Run /tower to start. diff --git a/.changeset/v1-mcp-management-plane.md b/.changeset/v1-mcp-management-plane.md deleted file mode 100644 index e30bfde1fd..0000000000 --- a/.changeset/v1-mcp-management-plane.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@vyl/kimi-code": patch -"@moonshot-ai/kimi-code-sdk": minor -"kimi-code": patch ---- - -On the legacy engine, plugin MCP server changes (install / enable / disable / remove / reload) now apply to open sessions immediately, and an MCP server OAuth sign-in or credential reset automatically refreshes the affected sessions instead of leaving them stuck until a manual reconnect; a connection that fails mid-session for auth reasons is now reported as needing sign-in rather than as a generic failure. - -`@moonshot-ai/kimi-code-sdk`: the MCP management surface is now backed by a unified, source-tagged registry — `listMcpServers` also covers plugin-declared servers (read-only, with their effective config) and returns `source` / `origin` / `mutable` markers; new `getMcpServer` for a single effective config; `testMcpServerConfig` probes an unsaved inline config; sessions can connect a server at runtime via `addMcpServer` with an optional persist flag; `reconnectMcpServer` accepts an optional replacement config and otherwise re-resolves the current config instead of reusing a stale snapshot; `listMcpServerAuthStatuses` accepts `cwd` / `verify` (online probe) and distinguishes dead grants via the new `oauth-expired` state; stored OAuth grants now record their absolute expiry and are refreshed proactively and single-flight per credential. Session status entries and read-only management entries redact secret-bearing stdio `env` / remote `headers` values to key lists, and concurrent logins for the same credential join a single browser flow. A new app-level inspection, `inspectAppMcpServers`, reports every server's effective config and real (probe-verified) authorization state — including plugin servers and runtime-name collisions — and the OAuth flow RPCs have locator-addressed variants (`authenticateAppMcpServer` / `resetAppMcpServerAuth`) so plugin servers can be signed in and reset directly. diff --git a/apps/kimi-code/CHANGELOG.md b/apps/kimi-code/CHANGELOG.md index 6d36082c24..194a2db061 100644 --- a/apps/kimi-code/CHANGELOG.md +++ b/apps/kimi-code/CHANGELOG.md @@ -1,5 +1,29 @@ # @moonshot-ai/kimi-code +## 0.37.0 + +### Minor Changes + +- [#2935](https://github.com/MoonshotAI/kimi-code/pull/2935) [`44a6c70`](https://github.com/wangyuling93/kimi-code/commit/44a6c70e66762ea9e122f8dceae16dc759086a7c) Thanks [@chengluyu](https://github.com/chengluyu)! - Activate multiple skills in a single prompt. Type `/` after whitespace to insert a skill token; all referenced skills run with the prompt as one turn (and undo as one unit). + +- [#2633](https://github.com/MoonshotAI/kimi-code/pull/2633) [`f492cd7`](https://github.com/wangyuling93/kimi-code/commit/f492cd7c9e03666ecfd10dc47ca9b48c35de2318) Thanks [@tpoisonooo](https://github.com/tpoisonooo)! - Add the /tower slash command to orchestrate multiple agents iterating on one repo in parallel — you act as the control tower while worker agents execute missions in their own git worktrees. Run /tower to start. + +### Patch Changes + +- [#2593](https://github.com/MoonshotAI/kimi-code/pull/2593) [`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0) Thanks [@7Sageer](https://github.com/7Sageer)! - Keep pasted image and video attachments available in session history, and clean up temporary uploads automatically. + +- [#2972](https://github.com/MoonshotAI/kimi-code/pull/2972) [`04d23e2`](https://github.com/wangyuling93/kimi-code/commit/04d23e2dab776c480d24cfa033c9500543c75a3b) Thanks [@sailist](https://github.com/sailist)! - Fix UTF-8 text files containing Chinese or emoji being misdetected as binary, so log files preview correctly in the web UI. + +- [#2633](https://github.com/MoonshotAI/kimi-code/pull/2633) [`f492cd7`](https://github.com/wangyuling93/kimi-code/commit/f492cd7c9e03666ecfd10dc47ca9b48c35de2318) Thanks [@tpoisonooo](https://github.com/tpoisonooo)! - Fix several seconds of startup lag: the global search index (used only by the web UI's search) was being opened and synced in every terminal session, including ones that never search. It now loads on demand, so interactive startup stays fast. + +- [#2969](https://github.com/MoonshotAI/kimi-code/pull/2969) [`ee564e5`](https://github.com/wangyuling93/kimi-code/commit/ee564e5ec90afd068123b8052928c53f1fd5a27d) Thanks [@sailist](https://github.com/sailist)! - Persist the token counting ledger (`token_counting.measured` / `truncated` / `rebased`) to the wire journal, so the displayed context size keeps its measured value after archiving and unarchiving a session (or any close → resume) instead of dropping to a smaller estimate until the next LLM call. + +- [#2633](https://github.com/MoonshotAI/kimi-code/pull/2633) [`f492cd7`](https://github.com/wangyuling93/kimi-code/commit/f492cd7c9e03666ecfd10dc47ca9b48c35de2318) Thanks [@tpoisonooo](https://github.com/tpoisonooo)! - Queue slash skill commands entered while the agent is busy instead of rejecting them with "Cannot / while streaming" — they now behave exactly like normal input: queued visibly by default, and Ctrl-S steers them into the running turn as real skill activations. + +- [#2858](https://github.com/MoonshotAI/kimi-code/pull/2858) [`59dde73`](https://github.com/wangyuling93/kimi-code/commit/59dde734f37596db5c77794060f81bfb3c1dbeb6) Thanks [@7Sageer](https://github.com/7Sageer)! - On the legacy engine, plugin MCP server changes (install / enable / disable / remove / reload) now apply to open sessions immediately, and an MCP server OAuth sign-in or credential reset automatically refreshes the affected sessions instead of leaving them stuck until a manual reconnect; a connection that fails mid-session for auth reasons is now reported as needing sign-in rather than as a generic failure. + + `@moonshot-ai/kimi-code-sdk`: the MCP management surface is now backed by a unified, source-tagged registry — `listMcpServers` also covers plugin-declared servers (read-only, with their effective config) and returns `source` / `origin` / `mutable` markers; new `getMcpServer` for a single effective config; `testMcpServerConfig` probes an unsaved inline config; sessions can connect a server at runtime via `addMcpServer` with an optional persist flag; `reconnectMcpServer` accepts an optional replacement config and otherwise re-resolves the current config instead of reusing a stale snapshot; `listMcpServerAuthStatuses` accepts `cwd` / `verify` (online probe) and distinguishes dead grants via the new `oauth-expired` state; stored OAuth grants now record their absolute expiry and are refreshed proactively and single-flight per credential. Session status entries and read-only management entries redact secret-bearing stdio `env` / remote `headers` values to key lists, and concurrent logins for the same credential join a single browser flow. A new app-level inspection, `inspectAppMcpServers`, reports every server's effective config and real (probe-verified) authorization state — including plugin servers and runtime-name collisions — and the OAuth flow RPCs have locator-addressed variants (`authenticateAppMcpServer` / `resetAppMcpServerAuth`) so plugin servers can be signed in and reset directly. + ## 0.36.6 ### Patch Changes diff --git a/apps/kimi-code/package.json b/apps/kimi-code/package.json index 5b8f61bbba..8b63a0d912 100644 --- a/apps/kimi-code/package.json +++ b/apps/kimi-code/package.json @@ -1,6 +1,6 @@ { "name": "@vyl/kimi-code", - "version": "0.36.6", + "version": "0.37.0", "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 26785df472..534eed0b3b 100644 --- a/apps/vscode/CHANGELOG.md +++ b/apps/vscode/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.7.1 + +### Patch Changes + +- [#2858](https://github.com/MoonshotAI/kimi-code/pull/2858) [`59dde73`](https://github.com/wangyuling93/kimi-code/commit/59dde734f37596db5c77794060f81bfb3c1dbeb6) Thanks [@7Sageer](https://github.com/7Sageer)! - On the legacy engine, plugin MCP server changes (install / enable / disable / remove / reload) now apply to open sessions immediately, and an MCP server OAuth sign-in or credential reset automatically refreshes the affected sessions instead of leaving them stuck until a manual reconnect; a connection that fails mid-session for auth reasons is now reported as needing sign-in rather than as a generic failure. + + `@moonshot-ai/kimi-code-sdk`: the MCP management surface is now backed by a unified, source-tagged registry — `listMcpServers` also covers plugin-declared servers (read-only, with their effective config) and returns `source` / `origin` / `mutable` markers; new `getMcpServer` for a single effective config; `testMcpServerConfig` probes an unsaved inline config; sessions can connect a server at runtime via `addMcpServer` with an optional persist flag; `reconnectMcpServer` accepts an optional replacement config and otherwise re-resolves the current config instead of reusing a stale snapshot; `listMcpServerAuthStatuses` accepts `cwd` / `verify` (online probe) and distinguishes dead grants via the new `oauth-expired` state; stored OAuth grants now record their absolute expiry and are refreshed proactively and single-flight per credential. Session status entries and read-only management entries redact secret-bearing stdio `env` / remote `headers` values to key lists, and concurrent logins for the same credential join a single browser flow. A new app-level inspection, `inspectAppMcpServers`, reports every server's effective config and real (probe-verified) authorization state — including plugin servers and runtime-name collisions — and the OAuth flow RPCs have locator-addressed variants (`authenticateAppMcpServer` / `resetAppMcpServerAuth`) so plugin servers can be signed in and reset directly. + +- Updated dependencies [[`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0), [`61591bc`](https://github.com/wangyuling93/kimi-code/commit/61591bce09f4467aa1664cb8ecb6aa6904b7accd), [`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0), [`59dde73`](https://github.com/wangyuling93/kimi-code/commit/59dde734f37596db5c77794060f81bfb3c1dbeb6)]: + - @moonshot-ai/kimi-code-sdk@0.19.0 + ## 0.7.0 ### Minor Changes diff --git a/apps/vscode/package.json b/apps/vscode/package.json index 4a1b1444d8..de2d016879 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.7.0", + "version": "0.7.1", "private": true, "license": "Apache-2.0", "type": "module", diff --git a/packages/acp-adapter/CHANGELOG.md b/packages/acp-adapter/CHANGELOG.md index b4554774bd..d7239237a9 100644 --- a/packages/acp-adapter/CHANGELOG.md +++ b/packages/acp-adapter/CHANGELOG.md @@ -1,5 +1,12 @@ # @moonshot-ai/acp-adapter +## 0.3.10 + +### Patch Changes + +- Updated dependencies [[`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0), [`61591bc`](https://github.com/wangyuling93/kimi-code/commit/61591bce09f4467aa1664cb8ecb6aa6904b7accd), [`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0), [`59dde73`](https://github.com/wangyuling93/kimi-code/commit/59dde734f37596db5c77794060f81bfb3c1dbeb6)]: + - @moonshot-ai/kimi-code-sdk@0.19.0 + ## 0.3.9 ### Patch Changes diff --git a/packages/acp-adapter/package.json b/packages/acp-adapter/package.json index 49e2fe460f..9991e0364b 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.9", + "version": "0.3.10", "private": true, "description": "Agent Client Protocol adapter for kimi-code", "license": "MIT", diff --git a/packages/node-sdk/CHANGELOG.md b/packages/node-sdk/CHANGELOG.md index 7dcb612fbc..d56456e8f1 100644 --- a/packages/node-sdk/CHANGELOG.md +++ b/packages/node-sdk/CHANGELOG.md @@ -1,5 +1,19 @@ # @moonshot-ai/kimi-code-sdk +## 0.19.0 + +### Minor Changes + +- [#2593](https://github.com/MoonshotAI/kimi-code/pull/2593) [`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0) Thanks [@7Sageer](https://github.com/7Sageer)! - Daemon file references no longer persist a materialization path: the daemon-file URL builder takes only a file id, and the parsed reference no longer carries a `path` field. The display path is derived from the session media store at read time, so a session fork or home relocation can no longer stale a persisted reference. Urls with a legacy `?path=` query still parse. + +- [#2934](https://github.com/MoonshotAI/kimi-code/pull/2934) [`61591bc`](https://github.com/wangyuling93/kimi-code/commit/61591bce09f4467aa1664cb8ecb6aa6904b7accd) Thanks [@chengluyu](https://github.com/chengluyu)! - Add `session.promptWithSkills(input, skills)` to submit one prompt with one or more skill activations bundled into the same user message — one turn, one undo unit (v2 engine only; rejects on the v1 engine). + +- [#2593](https://github.com/MoonshotAI/kimi-code/pull/2593) [`d833a1a`](https://github.com/wangyuling93/kimi-code/commit/d833a1a893c4d69d96af542f40557442992085e0) Thanks [@7Sageer](https://github.com/7Sageer)! - Add `uploadFile` for uploading media to the engine's file store and referencing it from prompts, plus an optional `promptId` on prompt submissions for correlating them with turn-started events. Both require the v2 harness. + +- [#2858](https://github.com/MoonshotAI/kimi-code/pull/2858) [`59dde73`](https://github.com/wangyuling93/kimi-code/commit/59dde734f37596db5c77794060f81bfb3c1dbeb6) Thanks [@7Sageer](https://github.com/7Sageer)! - On the legacy engine, plugin MCP server changes (install / enable / disable / remove / reload) now apply to open sessions immediately, and an MCP server OAuth sign-in or credential reset automatically refreshes the affected sessions instead of leaving them stuck until a manual reconnect; a connection that fails mid-session for auth reasons is now reported as needing sign-in rather than as a generic failure. + + `@moonshot-ai/kimi-code-sdk`: the MCP management surface is now backed by a unified, source-tagged registry — `listMcpServers` also covers plugin-declared servers (read-only, with their effective config) and returns `source` / `origin` / `mutable` markers; new `getMcpServer` for a single effective config; `testMcpServerConfig` probes an unsaved inline config; sessions can connect a server at runtime via `addMcpServer` with an optional persist flag; `reconnectMcpServer` accepts an optional replacement config and otherwise re-resolves the current config instead of reusing a stale snapshot; `listMcpServerAuthStatuses` accepts `cwd` / `verify` (online probe) and distinguishes dead grants via the new `oauth-expired` state; stored OAuth grants now record their absolute expiry and are refreshed proactively and single-flight per credential. Session status entries and read-only management entries redact secret-bearing stdio `env` / remote `headers` values to key lists, and concurrent logins for the same credential join a single browser flow. A new app-level inspection, `inspectAppMcpServers`, reports every server's effective config and real (probe-verified) authorization state — including plugin servers and runtime-name collisions — and the OAuth flow RPCs have locator-addressed variants (`authenticateAppMcpServer` / `resetAppMcpServerAuth`) so plugin servers can be signed in and reset directly. + ## 0.18.0 ### Minor Changes diff --git a/packages/node-sdk/package.json b/packages/node-sdk/package.json index 39db925226..7f42966c36 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.18.0", + "version": "0.19.0", "private": true, "description": "TypeScript SDK for the Kimi Code Agent", "license": "MIT", diff --git a/packages/pi-tui/CHANGELOG.md b/packages/pi-tui/CHANGELOG.md index 193dc6f386..3a31dcece9 100644 --- a/packages/pi-tui/CHANGELOG.md +++ b/packages/pi-tui/CHANGELOG.md @@ -1,5 +1,11 @@ # @moonshot-ai/pi-tui +## 0.84.4 + +### Patch Changes + +- [#2935](https://github.com/MoonshotAI/kimi-code/pull/2935) [`44a6c70`](https://github.com/wangyuling93/kimi-code/commit/44a6c70e66762ea9e122f8dceae16dc759086a7c) Thanks [@chengluyu](https://github.com/chengluyu)! - Add an opt-in inline slash autocomplete trigger that fires after whitespace mid-input and at the start of subsequent editor lines. + ## 0.84.3 ### Patch Changes diff --git a/packages/pi-tui/package.json b/packages/pi-tui/package.json index c774a0b06a..1a443af833 100644 --- a/packages/pi-tui/package.json +++ b/packages/pi-tui/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/pi-tui", - "version": "0.84.3", + "version": "0.84.4", "private": true, "description": "Terminal User Interface library with differential rendering for efficient text-based applications", "license": "MIT",