From 36b4d78cd203d2fa00fff1f27cbab58a1b193acf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 17:30:07 +0000 Subject: [PATCH] ci: release packages --- .changeset/plugin-custom-agents.md | 5 ----- .changeset/plugin-system-prompt-section.md | 5 ----- .changeset/task-output-nonblocking.md | 5 ----- .changeset/v1-custom-agent-files.md | 5 ----- .changeset/v1-secondary-model.md | 5 ----- apps/kimi-code/CHANGELOG.md | 16 ++++++++++++++++ apps/kimi-code/package.json | 2 +- 7 files changed, 17 insertions(+), 26 deletions(-) delete mode 100644 .changeset/plugin-custom-agents.md delete mode 100644 .changeset/plugin-system-prompt-section.md delete mode 100644 .changeset/task-output-nonblocking.md delete mode 100644 .changeset/v1-custom-agent-files.md delete mode 100644 .changeset/v1-secondary-model.md diff --git a/.changeset/plugin-custom-agents.md b/.changeset/plugin-custom-agents.md deleted file mode 100644 index d4c819fc1..000000000 --- a/.changeset/plugin-custom-agents.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": minor ---- - -Add support for plugin-contributed custom agents, discovered automatically and available for sub-agent delegation. Ship an `agents/` directory in the plugin (or declare `agents` paths in the plugin manifest) to provide them. diff --git a/.changeset/plugin-system-prompt-section.md b/.changeset/plugin-system-prompt-section.md deleted file mode 100644 index 21869deec..000000000 --- a/.changeset/plugin-system-prompt-section.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": minor ---- - -Allow enabled plugins to contribute agent system-prompt instructions through `systemPrompt` or `systemPromptPath` in `kimi.plugin.json`, effective on both agent engines (the TUI, `kimi -p`, and `kimi web`). diff --git a/.changeset/task-output-nonblocking.md b/.changeset/task-output-nonblocking.md deleted file mode 100644 index 4a95c93e1..000000000 --- a/.changeset/task-output-nonblocking.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Remove the blocking `block`/`timeout` wait from the TaskOutput tool so checking a background task can no longer stall the conversation; it now always returns an immediate snapshot, and completion still arrives via automatic notification. diff --git a/.changeset/v1-custom-agent-files.md b/.changeset/v1-custom-agent-files.md deleted file mode 100644 index 94b79e89a..000000000 --- a/.changeset/v1-custom-agent-files.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": minor ---- - -Support Markdown-defined custom agents on agent-core. diff --git a/.changeset/v1-secondary-model.md b/.changeset/v1-secondary-model.md deleted file mode 100644 index 181ba6978..000000000 --- a/.changeset/v1-secondary-model.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": minor ---- - -Add the /secondary_model slash command to configure the secondary model used by subagents. diff --git a/apps/kimi-code/CHANGELOG.md b/apps/kimi-code/CHANGELOG.md index 8b17b4c2f..7a501c5f1 100644 --- a/apps/kimi-code/CHANGELOG.md +++ b/apps/kimi-code/CHANGELOG.md @@ -1,5 +1,21 @@ # @moonshot-ai/kimi-code +## 0.31.0 + +### Minor Changes + +- [#2365](https://github.com/MoonshotAI/kimi-code/pull/2365) [`fa2c5ce`](https://github.com/MoonshotAI/kimi-code/commit/fa2c5ce18b70577fa3ada4eb8bdd4993891994ce) Thanks [@7Sageer](https://github.com/7Sageer)! - Add support for plugin-contributed custom agents, discovered automatically and available for sub-agent delegation. Ship an `agents/` directory in the plugin (or declare `agents` paths in the plugin manifest) to provide them. + +- [#2314](https://github.com/MoonshotAI/kimi-code/pull/2314) [`02d77b2`](https://github.com/MoonshotAI/kimi-code/commit/02d77b20d941873563f14890e049ffe40cec76e4) Thanks [@7Sageer](https://github.com/7Sageer)! - Allow enabled plugins to contribute agent system-prompt instructions through `systemPrompt` or `systemPromptPath` in `kimi.plugin.json`, effective on both agent engines (the TUI, `kimi -p`, and `kimi web`). + +- [#2232](https://github.com/MoonshotAI/kimi-code/pull/2232) [`efac96c`](https://github.com/MoonshotAI/kimi-code/commit/efac96c8a95a3c3ca4e1ae9bce38082498a02b2e) Thanks [@7Sageer](https://github.com/7Sageer)! - Support Markdown-defined custom agents on agent-core. + +- [#2232](https://github.com/MoonshotAI/kimi-code/pull/2232) [`efac96c`](https://github.com/MoonshotAI/kimi-code/commit/efac96c8a95a3c3ca4e1ae9bce38082498a02b2e) Thanks [@7Sageer](https://github.com/7Sageer)! - Add the /secondary_model slash command to configure the secondary model used by subagents. + +### Patch Changes + +- [#2379](https://github.com/MoonshotAI/kimi-code/pull/2379) [`691ec46`](https://github.com/MoonshotAI/kimi-code/commit/691ec4679ea19d6be8ac18f359088384ed3e446d) Thanks [@RealKai42](https://github.com/RealKai42)! - Remove the blocking `block`/`timeout` wait from the TaskOutput tool so checking a background task can no longer stall the conversation; it now always returns an immediate snapshot, and completion still arrives via automatic notification. + ## 0.30.0 ### Minor Changes diff --git a/apps/kimi-code/package.json b/apps/kimi-code/package.json index cf6ae7f62..f78eac615 100644 --- a/apps/kimi-code/package.json +++ b/apps/kimi-code/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code", - "version": "0.30.0", + "version": "0.31.0", "description": "The Starting Point for Next-Gen Agents", "license": "MIT", "author": "Moonshot AI",