ci: release packages (#1224)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-07-01 10:51:54 +08:00 committed by GitHub
parent 4d936d98b8
commit f2c7ec75d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 88 additions and 95 deletions

View file

@ -1,7 +0,0 @@
---
"@moonshot-ai/protocol": patch
"@moonshot-ai/server": patch
"@moonshot-ai/kimi-code": patch
---
Add a server-side key-value store API for persisting web UI preferences to the user's data directory.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Add a double-Esc shortcut to open the undo selector. Press Esc twice while idle to undo.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix @ file mentions not opening when typed inside a slash command argument.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Force-exit headless runs (`kimi -p`) so a stray ref'd handle left over from the run can't keep a completed run alive until an external timeout, and bound prompt cleanup so a wedged shutdown step can't hang shutdown.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Show file path completions when typing `/` in shell mode (`!`).

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix adding a workspace by path in the web UI failing silently when the daemon rejects the path; it now shows an error instead of a broken workspace.

View file

@ -1,6 +0,0 @@
---
"@moonshot-ai/agent-core": patch
"@moonshot-ai/kimi-code": patch
---
Fix duplicate workspaces showing in the web sidebar when the same folder is registered more than once.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Stop a malformed message history from permanently bricking a session on strict providers (Anthropic). The request is repaired before sending — orphaned tool calls are closed and empty/whitespace-only text blocks dropped — and if the provider still rejects its structure, it is resent once with a wire-compliant rebuild.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": minor
---
Plugins can now provide slash commands via a `commands` field in their manifest, registered as `<plugin>:<command>` and invoked with `$ARGUMENTS` expansion.

View file

@ -1,10 +0,0 @@
---
"@moonshot-ai/kimi-code": minor
---
Rework conversation compaction:
- Keep only recent user prompts plus a single user-role summary; drop assistant and tool messages.
- Repair tool_use/tool_result adjacency before sending, fixing a strict-provider HTTP 400 when a tool call and its result became non-adjacent.
- Merge consecutive user turns for strict providers (Gemini/Vertex), fixing an HTTP 400 ("roles must alternate") after compaction or when a turn is steered in right after a tool result.
- Micro-compaction now defaults off.

View file

@ -1,6 +0,0 @@
---
"@moonshot-ai/kimi-code": minor
"@moonshot-ai/kimi-code-sdk": minor
---
Refactor the thinking effort system

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Split LLM streaming timing in the session log and `KIMI_CODE_DEBUG=1` output into client vs. API-server portions, so slow turns can be attributed without parsing the wire log. Time-to-first-token splits into the API-server portion (network + server) and the client portion (in-process request building); the decode window splits into time awaiting tokens from the server and time the client spends processing each streamed chunk.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Hide the provider management dialog in the web UI until the server supports it.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Add Mermaid diagram rendering to the web chat. Fenced `mermaid` blocks in assistant responses now render as diagrams. KaTeX math and Mermaid diagram parsing also run in Web Workers to keep the UI responsive during live streaming.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Always show the usage-data opt-out toggle in the web settings with a clearer label and description.

View file

@ -1,5 +0,0 @@
---
"@moonshot-ai/kimi-code": patch
---
Fix the web workspace rename not persisting after a page refresh.