ci: release packages (#911)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-06-22 21:39:21 +08:00 committed by GitHub
parent 4731f02ccb
commit b2d3ad0728
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 97 additions and 80 deletions

View file

@ -1,11 +0,0 @@
---
"@moonshot-ai/agent-core": minor
"@moonshot-ai/kimi-code-sdk": minor
"@moonshot-ai/kimi-code": minor
---
Added the ability to add extra workspace directories:
- Use the `/add-dir <path>` command to add extra working directories to the current session, or remember them for the project.
- Use `kimi --add-dir <path>` to add them on startup.
- Project-level local config is now managed in `.kimi-code/local.toml`; we recommend adding it to your `.gitignore`.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix provider requests failing when restored conversation history contains empty text content blocks.

View file

@ -1,6 +0,0 @@
---
"@moonshot-ai/server": minor
"@moonshot-ai/kimi-code": minor
---
Speed up session snapshot loading with a direct disk reader and a request timeout safeguard, keeping the previous path as a legacy fallback.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Surface provider safety-policy blocks instead of silently treating them as completed turns, and prevent the context token count from dropping to zero after a filtered response.

View file

@ -1,6 +0,0 @@
---
"@moonshot-ai/agent-core": patch
"@moonshot-ai/kimi-code": patch
---
Detect the real image format from file contents when reading media, so a mismatched filename extension no longer produces a data URL the model API rejects.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Stop showing unread dots on cancelled or failed sessions in the web sidebar.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix commands flashing an empty console window on Windows.

View file

@ -1,6 +0,0 @@
---
"@moonshot-ai/kimi-code-sdk": patch
"@moonshot-ai/kimi-code": patch
---
Allow long-running foreground commands and subagents to be moved into background tasks with Ctrl+B, and inspect them via the `/tasks` panel.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Polish file mention UX.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Unify image format detection when sniffing fails.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Show longer branch names in the web chat header and expose the full name on hover.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Keep the web page title fixed instead of changing with the session or workspace name.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Consolidate web client localStorage access and decouple appearance/notification state into dedicated modules.

View file

@ -1,5 +1,41 @@
# @moonshot-ai/kimi-code
## 0.19.0
### Minor Changes
- [#812](https://github.com/MoonshotAI/kimi-code/pull/812) [`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f) - Added the ability to add extra workspace directories:
- Use the `/add-dir <path>` command to add extra working directories to the current session, or remember them for the project.
- Use `kimi --add-dir <path>` to add them on startup.
- Project-level local config is now managed in `.kimi-code/local.toml`; we recommend adding it to your `.gitignore`.
- [#975](https://github.com/MoonshotAI/kimi-code/pull/975) [`c5c1834`](https://github.com/MoonshotAI/kimi-code/commit/c5c18347251221fab74e4f452ac4910116c4224d) - Speed up session snapshot loading with a direct disk reader and a request timeout safeguard, keeping the previous path as a legacy fallback.
### Patch Changes
- [#910](https://github.com/MoonshotAI/kimi-code/pull/910) [`7644f10`](https://github.com/MoonshotAI/kimi-code/commit/7644f1036ca1079e4527c0b1c825ec5384d6d8da) - Fix provider requests failing when restored conversation history contains empty text content blocks.
- [#963](https://github.com/MoonshotAI/kimi-code/pull/963) [`4292ae9`](https://github.com/MoonshotAI/kimi-code/commit/4292ae9f9bc49e9edaaaeae50dbddabbd4b9bb25) - Surface provider safety-policy blocks instead of silently treating them as completed turns, and prevent the context token count from dropping to zero after a filtered response.
- [#970](https://github.com/MoonshotAI/kimi-code/pull/970) [`2730079`](https://github.com/MoonshotAI/kimi-code/commit/27300797f2149900219b05dda49dce65e71fa85a) - Detect the real image format from file contents when reading media, so a mismatched filename extension no longer produces a data URL the model API rejects.
- [#977](https://github.com/MoonshotAI/kimi-code/pull/977) [`d521932`](https://github.com/MoonshotAI/kimi-code/commit/d521932c3e99a0c5fa1d5d658cf1cd64f0306a75) - Stop showing unread dots on cancelled or failed sessions in the web sidebar.
- [#957](https://github.com/MoonshotAI/kimi-code/pull/957) [`b57fc90`](https://github.com/MoonshotAI/kimi-code/commit/b57fc905fe480aac07839dd0213768dbeb2a8002) - Fix commands flashing an empty console window on Windows.
- [#821](https://github.com/MoonshotAI/kimi-code/pull/821) [`ba64072`](https://github.com/MoonshotAI/kimi-code/commit/ba64072559c1e9bb3447ede39991ac2e8bdb7645) - Allow long-running foreground commands and subagents to be moved into background tasks with Ctrl+B, and inspect them via the `/tasks` panel.
- [#812](https://github.com/MoonshotAI/kimi-code/pull/812) [`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f) - Polish file mention UX.
- [#974](https://github.com/MoonshotAI/kimi-code/pull/974) [`d434d8f`](https://github.com/MoonshotAI/kimi-code/commit/d434d8f0d809599f4ae7de77b58e337bfd4ebcc9) - Unify image format detection when sniffing fails.
- [#958](https://github.com/MoonshotAI/kimi-code/pull/958) [`98905eb`](https://github.com/MoonshotAI/kimi-code/commit/98905eb409ec643fd916a13beecec85212f834bd) - Show longer branch names in the web chat header and expose the full name on hover.
- [#964](https://github.com/MoonshotAI/kimi-code/pull/964) [`4223739`](https://github.com/MoonshotAI/kimi-code/commit/42237392ddc3a0816c045da23e77c4875cc692e5) - Keep the web page title fixed instead of changing with the session or workspace name.
- [#973](https://github.com/MoonshotAI/kimi-code/pull/973) [`3b9938b`](https://github.com/MoonshotAI/kimi-code/commit/3b9938b4c3a386394ed4d35c7b89b48878476977) - Consolidate web client localStorage access and decouple appearance/notification state into dedicated modules.
## 0.18.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code",
"version": "0.18.0",
"version": "0.19.0",
"description": "The Starting Point for Next-Gen Agents",
"license": "MIT",
"author": "Moonshot AI",

View file

@ -1,5 +1,13 @@
# @moonshot-ai/acp-adapter
## 0.3.1
### Patch Changes
- Updated dependencies [[`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f), [`2730079`](https://github.com/MoonshotAI/kimi-code/commit/27300797f2149900219b05dda49dce65e71fa85a), [`ba64072`](https://github.com/MoonshotAI/kimi-code/commit/ba64072559c1e9bb3447ede39991ac2e8bdb7645)]:
- @moonshot-ai/agent-core@0.14.0
- @moonshot-ai/kimi-code-sdk@0.10.0
## 0.3.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/acp-adapter",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"description": "Agent Client Protocol adapter for kimi-code",
"license": "MIT",

View file

@ -1,5 +1,19 @@
# @moonshot-ai/agent-core
## 0.14.0
### Minor Changes
- [#812](https://github.com/MoonshotAI/kimi-code/pull/812) [`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f) - Added the ability to add extra workspace directories:
- Use the `/add-dir <path>` command to add extra working directories to the current session, or remember them for the project.
- Use `kimi --add-dir <path>` to add them on startup.
- Project-level local config is now managed in `.kimi-code/local.toml`; we recommend adding it to your `.gitignore`.
### Patch Changes
- [#970](https://github.com/MoonshotAI/kimi-code/pull/970) [`2730079`](https://github.com/MoonshotAI/kimi-code/commit/27300797f2149900219b05dda49dce65e71fa85a) - Detect the real image format from file contents when reading media, so a mismatched filename extension no longer produces a data URL the model API rejects.
## 0.13.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/agent-core",
"version": "0.13.1",
"version": "0.14.0",
"private": true,
"description": "The unified agent engine for Kimi",
"license": "MIT",

View file

@ -1,5 +1,12 @@
# @moonshot-ai/migration-legacy
## 0.1.14
### Patch Changes
- Updated dependencies [[`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f), [`2730079`](https://github.com/MoonshotAI/kimi-code/commit/27300797f2149900219b05dda49dce65e71fa85a)]:
- @moonshot-ai/agent-core@0.14.0
## 0.1.13
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/migration-legacy",
"version": "0.1.13",
"version": "0.1.14",
"description": "Migrate kimi-cli (~/.kimi/) data into kimi-code (~/.kimi-code/).",
"license": "MIT",
"type": "module",

View file

@ -1,5 +1,19 @@
# @moonshot-ai/kimi-code-sdk
## 0.10.0
### Minor Changes
- [#812](https://github.com/MoonshotAI/kimi-code/pull/812) [`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f) - Added the ability to add extra workspace directories:
- Use the `/add-dir <path>` command to add extra working directories to the current session, or remember them for the project.
- Use `kimi --add-dir <path>` to add them on startup.
- Project-level local config is now managed in `.kimi-code/local.toml`; we recommend adding it to your `.gitignore`.
### Patch Changes
- [#821](https://github.com/MoonshotAI/kimi-code/pull/821) [`ba64072`](https://github.com/MoonshotAI/kimi-code/commit/ba64072559c1e9bb3447ede39991ac2e8bdb7645) - Allow long-running foreground commands and subagents to be moved into background tasks with Ctrl+B, and inspect them via the `/tasks` panel.
## 0.9.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code-sdk",
"version": "0.9.4",
"version": "0.10.0",
"private": true,
"description": "TypeScript SDK for the Kimi Code Agent",
"license": "MIT",

View file

@ -0,0 +1,12 @@
# @moonshot-ai/server
## 0.2.0
### Minor Changes
- [#975](https://github.com/MoonshotAI/kimi-code/pull/975) [`c5c1834`](https://github.com/MoonshotAI/kimi-code/commit/c5c18347251221fab74e4f452ac4910116c4224d) - Speed up session snapshot loading with a direct disk reader and a request timeout safeguard, keeping the previous path as a legacy fallback.
### Patch Changes
- Updated dependencies [[`c0eeca2`](https://github.com/MoonshotAI/kimi-code/commit/c0eeca24692edd736eecd3c2541d7566bac9f80f), [`2730079`](https://github.com/MoonshotAI/kimi-code/commit/27300797f2149900219b05dda49dce65e71fa85a)]:
- @moonshot-ai/agent-core@0.14.0

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/server",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"description": "Local REST + WebSocket server exposing kimi-code SDK over a stable wire protocol.",
"license": "MIT",