ci: release packages (#2342)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-07-30 14:56:30 +08:00 committed by GitHub
parent 6d0a046488
commit bc28e9d802
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 97 additions and 74 deletions

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/agent-core": patch
---
Thread the host identity through the managed auth facades so OAuth token refreshes from inside the core carry the `X-Msh-*` device headers.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix request headers not being passed correctly on some requests.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kap-server": minor
---
Require a `hostIdentity` when starting the server and derive the default outbound identity headers (User-Agent + `X-Msh-*`) from it, replacing the hardcoded CLI fallback. The `version` option is renamed to `serverVersion`, and session export manifests now record the host product version — plus an optional desktop version for desktop exports — instead of the engine version.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code-oauth": minor
---
Rework the host identity type: rename `userAgentProduct` to `productName` and add a required `platform` field, so every host explicitly declares the `X-Msh-Platform` value it reports instead of silently inheriting the CLI's. OAuth requests now also send the product User-Agent (with the optional runtime suffix), so the OAuth host can tell client families and surfaces apart.

View file

@ -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.

View file

@ -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`).

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code-sdk": minor
---
Rename `userAgentProduct` to `productName` and require `platform` in the host identity options exposed by the SDK.

View file

@ -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.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix sessions missing from the session picker when their cached metadata predates the archived flag.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": minor
---
Support Markdown-defined custom agents on agent-core.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": minor
---
Add the /secondary_model slash command to configure the secondary model used by subagents.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/agent-core-v2": minor
---
Replace the bootstrap `clientVersion` with a required `clientIdentity` host identity object: the OAuth device-flow endpoints now send the full `X-Msh-*` device headers on every host, telemetry reads the client version from the same source, and the session export manifest gains an optional desktop version field.

View file

@ -1,5 +0,0 @@
---
"kimi-code": patch
---
Fix new users getting stranded on "Model setup required" with no way back to sign-in when the first login finishes authorization but fails to complete model setup; the screen now offers a path back to the sign-in page so login can be retried.

View file

@ -1,5 +1,25 @@
# @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
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Fix request headers not being passed correctly on some requests.
- [#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.
- [#2395](https://github.com/MoonshotAI/kimi-code/pull/2395) [`d10b1c1`](https://github.com/MoonshotAI/kimi-code/commit/d10b1c130813dbd6ee8c8599a6a98feb36aea67f) Thanks [@sailist](https://github.com/sailist)! - Fix sessions missing from the session picker when their cached metadata predates the archived flag.
## 0.30.0
### Minor Changes

View file

@ -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",

View file

@ -1,5 +1,14 @@
# Changelog
## 0.6.6
### Patch Changes
- [#2393](https://github.com/MoonshotAI/kimi-code/pull/2393) [`6d0a046`](https://github.com/MoonshotAI/kimi-code/commit/6d0a046488edda56219961b253c4787abae7a113) Thanks [@wbxl2000](https://github.com/wbxl2000)! - Fix new users getting stranded on "Model setup required" with no way back to sign-in when the first login finishes authorization but fails to complete model setup; the screen now offers a path back to the sign-in page so login can be retried.
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/kimi-code-sdk@0.15.0
## 0.6.5
### Patch Changes

View file

@ -3,7 +3,7 @@
"publisher": "moonshot-ai",
"displayName": "Kimi Code",
"description": "Official Kimi Code plugin for VS Code",
"version": "0.6.5",
"version": "0.6.6",
"private": true,
"license": "Apache-2.0",
"type": "module",

View file

@ -1,5 +1,13 @@
# @moonshot-ai/acp-adapter
## 0.3.6
### Patch Changes
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa), [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/agent-core@0.15.7
- @moonshot-ai/kimi-code-sdk@0.15.0
## 0.3.5
### Patch Changes

View file

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

View file

@ -1,5 +1,16 @@
# @moonshot-ai/agent-core-v2
## 0.3.0
### Minor Changes
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Replace the bootstrap `clientVersion` with a required `clientIdentity` host identity object: the OAuth device-flow endpoints now send the full `X-Msh-*` device headers on every host, telemetry reads the client version from the same source, and the session export manifest gains an optional desktop version field.
### Patch Changes
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/kimi-code-oauth@0.3.0
## 0.2.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/agent-core-v2",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"description": "The unified agent engine for Kimi (v2 — DI Scope architecture)",
"license": "MIT",

View file

@ -1,5 +1,14 @@
# @moonshot-ai/agent-core
## 0.15.7
### Patch Changes
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Thread the host identity through the managed auth facades so OAuth token refreshes from inside the core carry the `X-Msh-*` device headers.
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/kimi-code-oauth@0.3.0
## 0.15.6
### Patch Changes

View file

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

View file

@ -1,5 +1,17 @@
# @moonshot-ai/kap-server
## 0.2.0
### Minor Changes
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Require a `hostIdentity` when starting the server and derive the default outbound identity headers (User-Agent + `X-Msh-*`) from it, replacing the hardcoded CLI fallback. The `version` option is renamed to `serverVersion`, and session export manifests now record the host product version — plus an optional desktop version for desktop exports — instead of the engine version.
### Patch Changes
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa), [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/kimi-code-oauth@0.3.0
- @moonshot-ai/agent-core-v2@0.3.0
## 0.1.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kap-server",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"description": "Kimi Code server backed by the DI × Scope agent engine (agent-core-v2)",
"type": "module",

View file

@ -1,5 +1,12 @@
# @moonshot-ai/klient
## 0.1.1
### Patch Changes
- Updated dependencies [[`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa)]:
- @moonshot-ai/agent-core-v2@0.3.0
## 0.1.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/klient",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"description": "Kimi client SDK — contract-driven facade over agent-core-v2, routable over ipc or in-memory transports.",
"license": "MIT",

View file

@ -1,5 +1,11 @@
# @moonshot-ai/kimi-code-sdk
## 0.15.0
### Minor Changes
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Rename `userAgentProduct` to `productName` and require `platform` in the host identity options exposed by the SDK.
## 0.14.0
### Minor Changes

View file

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

View file

@ -1,5 +1,11 @@
# @moonshot-ai/kimi-code-oauth
## 0.3.0
### Minor Changes
- [#2382](https://github.com/MoonshotAI/kimi-code/pull/2382) [`40172c7`](https://github.com/MoonshotAI/kimi-code/commit/40172c7ca96ca981b043b793588dd32e898979fa) Thanks [@liruifengv](https://github.com/liruifengv)! - Rework the host identity type: rename `userAgentProduct` to `productName` and add a required `platform` field, so every host explicitly declares the `X-Msh-Platform` value it reports instead of silently inheriting the CLI's. OAuth requests now also send the product User-Agent (with the optional runtime suffix), so the OAuth host can tell client families and surfaces apart.
## 0.2.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code-oauth",
"version": "0.2.2",
"version": "0.3.0",
"private": true,
"description": "Kimi OAuth toolkit for managed Kimi Code authentication",
"license": "MIT",