Skip to content
Merged
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
7 changes: 0 additions & 7 deletions .changeset/adaptive-thinking-env.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/glob-truncation-and-backslash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hidden-dance-easter-egg.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/named-compaction-truncation.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/provider-management.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/refine-api-key-login-copy.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/visible-cron-reminders.md

This file was deleted.

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

## 0.7.0

### Minor Changes

- [#232](https://github.com/MoonshotAI/kimi-code/pull/232) [`a24bfb1`](https://github.com/MoonshotAI/kimi-code/commit/a24bfb1df38e58120827a1d8ed881724af2e7b23) - Add `KIMI_MODEL_ADAPTIVE_THINKING` (and a matching `adaptive_thinking` model-alias field) to force adaptive thinking (`thinking: { type: 'adaptive' }`) on or off, overriding the Anthropic model-name version inference. This lets custom-named staff endpoints that back an adaptive-capable model opt in even when the model name does not encode a parseable Claude version.

- [#264](https://github.com/MoonshotAI/kimi-code/pull/264) [`42bb914`](https://github.com/MoonshotAI/kimi-code/commit/42bb9141d8ee7023639f943dd4c6a0f6c8fa8945) - Add `/provider` command for managing AI providers, support custom registry imports, and introduce a tabbed model selector.

- [#204](https://github.com/MoonshotAI/kimi-code/pull/204) [`ee69d0a`](https://github.com/MoonshotAI/kimi-code/commit/ee69d0ac29f56bde4957c14767d7ca436697d9cf) - Render scheduled reminders distinctly in the TUI, expose cron fired events to SDK clients, and report cron fire times with local timezone offsets.

### Patch Changes

- [#282](https://github.com/MoonshotAI/kimi-code/pull/282) [`a580cd3`](https://github.com/MoonshotAI/kimi-code/commit/a580cd3a98664e18642e0e856aeaa9b71ba93516) - Fix glob pattern backslash escaping and include match count in truncation messages.

- [#260](https://github.com/MoonshotAI/kimi-code/pull/260) [`178827d`](https://github.com/MoonshotAI/kimi-code/commit/178827db47f183df783ba63bf8f1c338f2cbd7e6) - Polish a small TUI visual interaction.

- [#267](https://github.com/MoonshotAI/kimi-code/pull/267) [`e2e1728`](https://github.com/MoonshotAI/kimi-code/commit/e2e17289fca9bcb23f05cd77f7bcb9cba5db0325) - Report truncated compaction summaries clearly and apply valid completion token budgets across supported providers.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Document the user-interrupt fix in the CLI release

This CLI release is built from the current tree and bundles @moonshot-ai/agent-core, which already includes #236 changing interrupted tools/subagents from a generic abort into an explicit user-cancellation signal. The 0.7.0 CLI changelog has patch entries for other bundled agent-core fixes such as #267, but omits this user-visible interruption fix, so users upgrading the CLI will not be able to discover the changed cancellation behavior from the release notes.

Useful? React with 👍 / 👎.


- [#274](https://github.com/MoonshotAI/kimi-code/pull/274) [`a1dfbfe`](https://github.com/MoonshotAI/kimi-code/commit/a1dfbfeb16bcad0c2c8faa232d6d1ce4a2681d57) - Clarify Kimi Platform API key login labels and prompt details.

## 0.6.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.6.0",
"version": "0.7.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update the Nix pnpmDeps hash with the version bump

When this release PR changes package versions, the Nix build input changes too: flake.nix derives the derivation version from apps/kimi-code/package.json and includes the workspace package manifests in the src passed to fetchPnpmDeps, but the fixed pnpmDeps hash is not updated. I checked .github/workflows/nix-build.yml, which runs nix build .#kimi-code on PRs and explicitly fails on hash mismatches, so this release PR will trip that workflow until flake.nix is refreshed with the new hash.

Useful? React with 👍 / 👎.

"description": "The Starting Point for Next-Gen Agents",
"license": "MIT",
"author": "Moonshot AI",
Expand Down
18 changes: 18 additions & 0 deletions packages/agent-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @moonshot-ai/agent-core

## 0.6.0

### Minor Changes

- [#232](https://github.com/MoonshotAI/kimi-code/pull/232) [`a24bfb1`](https://github.com/MoonshotAI/kimi-code/commit/a24bfb1df38e58120827a1d8ed881724af2e7b23) - Add `KIMI_MODEL_ADAPTIVE_THINKING` (and a matching `adaptive_thinking` model-alias field) to force adaptive thinking (`thinking: { type: 'adaptive' }`) on or off, overriding the Anthropic model-name version inference. This lets custom-named staff endpoints that back an adaptive-capable model opt in even when the model name does not encode a parseable Claude version.

- [#204](https://github.com/MoonshotAI/kimi-code/pull/204) [`ee69d0a`](https://github.com/MoonshotAI/kimi-code/commit/ee69d0ac29f56bde4957c14767d7ca436697d9cf) - Render scheduled reminders distinctly in the TUI, expose cron fired events to SDK clients, and report cron fire times with local timezone offsets.

### Patch Changes

- [#282](https://github.com/MoonshotAI/kimi-code/pull/282) [`a580cd3`](https://github.com/MoonshotAI/kimi-code/commit/a580cd3a98664e18642e0e856aeaa9b71ba93516) - Fix glob pattern backslash escaping and include match count in truncation messages.

- [#267](https://github.com/MoonshotAI/kimi-code/pull/267) [`e2e1728`](https://github.com/MoonshotAI/kimi-code/commit/e2e17289fca9bcb23f05cd77f7bcb9cba5db0325) - Report truncated compaction summaries clearly and apply valid completion token budgets across supported providers.

- Updated dependencies [[`a24bfb1`](https://github.com/MoonshotAI/kimi-code/commit/a24bfb1df38e58120827a1d8ed881724af2e7b23), [`a580cd3`](https://github.com/MoonshotAI/kimi-code/commit/a580cd3a98664e18642e0e856aeaa9b71ba93516), [`e2e1728`](https://github.com/MoonshotAI/kimi-code/commit/e2e17289fca9bcb23f05cd77f7bcb9cba5db0325)]:
- @moonshot-ai/kosong@0.3.0
- @moonshot-ai/kaos@0.1.3

## 0.5.0

### Minor 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.5.0",
"version": "0.6.0",
"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.3

### Patch Changes

- [#282](https://github.com/MoonshotAI/kimi-code/pull/282) [`a580cd3`](https://github.com/MoonshotAI/kimi-code/commit/a580cd3a98664e18642e0e856aeaa9b71ba93516) - Fix glob pattern backslash escaping and include match count in truncation messages.

## 0.1.2

### 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.2",
"version": "0.1.3",
"private": true,
"description": "Execution environment abstraction for AI agent applications",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/kosong/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @moonshot-ai/kosong

## 0.3.0

### Minor Changes

- [#232](https://github.com/MoonshotAI/kimi-code/pull/232) [`a24bfb1`](https://github.com/MoonshotAI/kimi-code/commit/a24bfb1df38e58120827a1d8ed881724af2e7b23) - Add `KIMI_MODEL_ADAPTIVE_THINKING` (and a matching `adaptive_thinking` model-alias field) to force adaptive thinking (`thinking: { type: 'adaptive' }`) on or off, overriding the Anthropic model-name version inference. This lets custom-named staff endpoints that back an adaptive-capable model opt in even when the model name does not encode a parseable Claude version.

### Patch Changes

- [#267](https://github.com/MoonshotAI/kimi-code/pull/267) [`e2e1728`](https://github.com/MoonshotAI/kimi-code/commit/e2e17289fca9bcb23f05cd77f7bcb9cba5db0325) - Report truncated compaction summaries clearly and apply valid completion token budgets across supported providers.

## 0.2.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kosong/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/kosong",
"version": "0.2.3",
"version": "0.3.0",
"private": true,
"description": "The LLM abstraction layer for modern AI agent applications",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/migration-legacy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @moonshot-ai/migration-legacy

## 0.1.6

### Patch Changes

- Updated dependencies [[`a24bfb1`](https://github.com/MoonshotAI/kimi-code/commit/a24bfb1df38e58120827a1d8ed881724af2e7b23), [`a580cd3`](https://github.com/MoonshotAI/kimi-code/commit/a580cd3a98664e18642e0e856aeaa9b71ba93516), [`e2e1728`](https://github.com/MoonshotAI/kimi-code/commit/e2e17289fca9bcb23f05cd77f7bcb9cba5db0325), [`ee69d0a`](https://github.com/MoonshotAI/kimi-code/commit/ee69d0ac29f56bde4957c14767d7ca436697d9cf)]:
- @moonshot-ai/agent-core@0.6.0

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/migration-legacy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonshot-ai/migration-legacy",
"version": "0.1.5",
"version": "0.1.6",
"description": "Migrate kimi-cli (~/.kimi/) data into kimi-code (~/.kimi-code/).",
"license": "MIT",
"type": "module",
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.5.0

### Minor Changes

- [#204](https://github.com/MoonshotAI/kimi-code/pull/204) [`ee69d0a`](https://github.com/MoonshotAI/kimi-code/commit/ee69d0ac29f56bde4957c14767d7ca436697d9cf) - Render scheduled reminders distinctly in the TUI, expose cron fired events to SDK clients, and report cron fire times with local timezone offsets.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add the adaptive-thinking SDK release note

Fresh evidence since the earlier thread: this commit now bumps @moonshot-ai/kimi-code-sdk to 0.5.0, but the new 0.5.0 changelog only lists #204. The SDK bundle and generated types are built from the current agent-core/kosong sources (packages/node-sdk/tsdown.config.ts aliases them, and packages/node-sdk/src/types.ts re-exports ModelAlias), so SDK users will receive #232's adaptiveThinking config/type and Anthropic adaptive-thinking behavior in this release with no release note. Add the #232 entry to this section so consumers can discover the new public SDK surface.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add the SDK provider export to the release notes

This 0.5.0 SDK release is built from the current tree, which already includes #281 adding KimiForCodingProvider and KimiForCodingProviderOptions to packages/node-sdk/src/index.ts, but the new SDK changelog section only mentions #204. SDK consumers will receive a new public export in this release with no discoverable release note, so add the #281 entry here as well.

Useful? React with 👍 / 👎.


## 0.4.0

### Minor 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.4.0",
"version": "0.5.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Make the SDK publishable before bumping it

This release now versions @moonshot-ai/kimi-code-sdk, but the package is still marked "private": true immediately below, and the release workflow publishes with pnpm changeset publish. The Changesets config docs state that private: true is how to prevent a package from being published to npm, so this context will still leave the public SDK at 0.4.0 even though the changelog/package version says 0.5.0; remove the private marker or otherwise publish the SDK explicitly before merging this release.

Useful? React with 👍 / 👎.

"private": true,
"description": "TypeScript SDK for the Kimi Code Agent",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @moonshot-ai/kimi-code-oauth

## 0.2.0

### Minor Changes

- [#264](https://github.com/MoonshotAI/kimi-code/pull/264) [`42bb914`](https://github.com/MoonshotAI/kimi-code/commit/42bb9141d8ee7023639f943dd4c6a0f6c8fa8945) - Add `/provider` command for managing AI providers, support custom registry imports, and introduce a tabbed model selector.

### Patch Changes

- [#274](https://github.com/MoonshotAI/kimi-code/pull/274) [`a1dfbfe`](https://github.com/MoonshotAI/kimi-code/commit/a1dfbfeb16bcad0c2c8faa232d6d1ce4a2681d57) - Clarify Kimi Platform API key login labels and prompt details.

## 0.1.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.1.2",
"version": "0.2.0",
"private": true,
"description": "Kimi OAuth toolkit for managed Kimi Code authentication",
"license": "MIT",
Expand Down