Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/auth-refresh-retry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/compaction-retry-think-only.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/dispose-kaos-process-stdio.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-debug-tps-short-streams.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/resume-turn-id-counter.md

This file was deleted.

12 changes: 12 additions & 0 deletions apps/kimi-code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @moonshot-ai/kimi-code

## 0.16.1

### Patch Changes

- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level.

- [#822](https://github.com/MoonshotAI/kimi-code/pull/822) [`66b4d65`](https://github.com/MoonshotAI/kimi-code/commit/66b4d658a055e19359056fe0f2d52202c4a93c25) - Release process stdio resources after managed commands finish or are stopped.

- [#849](https://github.com/MoonshotAI/kimi-code/pull/849) [`254f946`](https://github.com/MoonshotAI/kimi-code/commit/254f946a506b01df7a559ed63bd8d705e9fa7496) - Skip debug TPS when the output stream is too short to measure reliably.

- [#833](https://github.com/MoonshotAI/kimi-code/pull/833) [`a71b2e3`](https://github.com/MoonshotAI/kimi-code/commit/a71b2e3123ff8454f725b3d24e8c985608c5c4f9) - Restore the turn counter from persisted loop events on resume so post-resume turns no longer reuse turn ids that already appear in history.

## 0.16.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/kimi-code/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code",
"version": "0.16.0",
"version": "0.16.1",
"description": "The Starting Point for Next-Gen Agents",
"license": "MIT",
"author": "Moonshot AI",
Expand Down
15 changes: 15 additions & 0 deletions packages/agent-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @moonshot-ai/agent-core

## 0.13.2

### Patch Changes

- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level.

- [#836](https://github.com/MoonshotAI/kimi-code/pull/836) [`65423c6`](https://github.com/MoonshotAI/kimi-code/commit/65423c673b675d43f379189e832f5e7d355f8920) - Recover from think-only/empty compaction summaries by shrinking the compacted prefix before retrying. Previously an `APIEmptyResponseError` (a response with only reasoning content, no summary text) was retried with an identical request, so the model reproduced the same empty result until the retry budget was exhausted and the run aborted. It is now handled like a truncated summary: each retry reduces the compacted prefix to free output headroom.

- [#822](https://github.com/MoonshotAI/kimi-code/pull/822) [`66b4d65`](https://github.com/MoonshotAI/kimi-code/commit/66b4d658a055e19359056fe0f2d52202c4a93c25) - Release process stdio resources after managed commands finish or are stopped.

- [#833](https://github.com/MoonshotAI/kimi-code/pull/833) [`a71b2e3`](https://github.com/MoonshotAI/kimi-code/commit/a71b2e3123ff8454f725b3d24e8c985608c5c4f9) - Restore the turn counter from persisted loop events on resume so post-resume turns no longer reuse turn ids that already appear in history.

- Updated dependencies [[`66b4d65`](https://github.com/MoonshotAI/kimi-code/commit/66b4d658a055e19359056fe0f2d52202c4a93c25)]:
- @moonshot-ai/kaos@0.1.7

## 0.13.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/agent-core",
"version": "0.13.1",
"version": "0.13.2",
"private": true,
"description": "The unified agent engine for Kimi",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/kaos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonshot-ai/kaos

## 0.1.7

### Patch Changes

- [#822](https://github.com/MoonshotAI/kimi-code/pull/822) [`66b4d65`](https://github.com/MoonshotAI/kimi-code/commit/66b4d658a055e19359056fe0f2d52202c4a93c25) - Release process stdio resources after managed commands finish or are stopped.

## 0.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kaos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kaos",
"version": "0.1.6",
"version": "0.1.7",
"private": true,
"description": "Execution environment abstraction for AI agent applications",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/node-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonshot-ai/kimi-code-sdk

## 0.9.4

### Patch Changes

- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level.

## 0.9.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code-sdk",
"version": "0.9.3",
"version": "0.9.4",
"private": true,
"description": "TypeScript SDK for the Kimi Code Agent",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonshot-ai/kimi-code-oauth

## 0.2.3

### Patch Changes

- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level.

## 0.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/oauth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kimi-code-oauth",
"version": "0.2.2",
"version": "0.2.3",
"private": true,
"description": "Kimi OAuth toolkit for managed Kimi Code authentication",
"license": "MIT",
Expand Down