ci: release packages - #170
Conversation
2616415 to
27f0569
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 27f05696f3
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| @@ -1,5 +1,23 @@ | |||
| # @moonshot-ai/kimi-code | |||
|
|
|||
| ## 0.6.0 | |||
There was a problem hiding this comment.
With this release adding 0.6.0 here, the CLI update prompt still sends users to docs/en/release-notes/changelog.html (apps/kimi-code/src/cli/update/prompt.ts:17), but both docs/en/release-notes/changelog.md and docs/zh/release-notes/changelog.md still top out at 0.5.0. Users upgrading to 0.6.0 from the prompt will land on stale release notes, and docs/AGENTS.md says the docs changelog is synced from this package changelog for releases, so include the 0.6.0 docs sync with this release change.
Useful? React with 👍 / 👎.
f46c432 to
9fcfa88
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9fcfa88a69
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| { | ||
| "name": "@moonshot-ai/kimi-code-sdk", | ||
| "version": "0.3.0", | ||
| "version": "0.4.0", |
There was a problem hiding this comment.
Remove the SDK private flag before releasing
This release bumps @moonshot-ai/kimi-code-sdk to 0.4.0, and the release workflow publishes via pnpm changeset publish (.github/workflows/release.yml lines 59-64), but this package still has "private": true while .changeset/README.md lists it as a publishable public SDK. npm's package.json docs state that when "private": true is set, npm refuses to publish the package, so merging this release will leave the SDK 0.4.0 changelog/version in git without an npm artifact for users to install.
Useful? React with 👍 / 👎.
0d5fc8b to
7b3d98c
Compare
7b3d98c to
24dbe1b
Compare
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@moonshot-ai/kimi-code@0.6.0
Minor Changes
#212
2bbea75- Add aKIMI_MODEL_*environment-variable channel that lets you run Kimi Code against a specific model (provider type, base URL, API key, context size, capabilities, and thinking settings) without editingconfig.toml.#221
bab2da7- Install plugins directly from GitHub repository URLs, and surface each install's origin and trust level (kimi-official, curated, third-party) in the plugin manager.#118
8913440- Support querying sessions by sessionId or workDir in listSessions, and show a helpful cd command when resuming a session from a different working directory.#186
537cf20- Remove the default per-turn step limit of 1000. Users can still setmax_steps_per_turnin config to enforce a custom limit.Patch Changes
#197
f3269ea- Show the real terminal status of background agents in the transcript so lost, failed, and killed ones no longer appear as completed, and include the resume agent id and recovery instructions in the failure notification so the model can resume reliably.#211
54590d3- Back off failed compaction retries by a fixed slice of the model context window.#167
b5981a5- IntroduceModelProviderinterface andSingleModelProviderto decoupleAgentfromProviderManager.#213
2388f20- Handle context overflow errors consistently across provider responses.#214
caaa6d8- Fix the native self-updater reporting a successful update when the install command actually failed.#202
14a0348- Fix footer leaking onto the terminal when resuming a non-existent session.#198
8c77cfa- Fix automatic ripgrep installation when temporary files are on another filesystem.#199
588145d- Expand the footer's rotating tips to surface more commands and shortcuts, featuring newer and important ones more prominently.#192
64964a0- Improve the usage information display in the TUI.#195
3a0e060- Project persisted hook and blocked prompt messages into model context.#221
bab2da7- Restrict plugin trust badges to Kimi-hosted plugin CDN URL patterns.#207
e280f33- Recover from provider model token limit errors during long conversations.#201
3da4dae- Automatically retry when a model response stream is dropped mid-flight (aterminatederror) instead of failing the turn.#190
1873859- Slim the LLM diagnostic logs with fewer, more compact fields.#185
114777e- SplitRuntimeConfigintoKaosandToolServicesand update all references accordingly.#189
564721f- Clarify subagent and background task stop messages as user-initiated.#206
07d51e4- Relocate shared tool service typing to the tool support layer.#215
b9860e9- Align the datasource plugin with the generic two-tool workflow.#200
5159af3- Keep blocked prompt hook conversations available to subsequent model turns.@moonshot-ai/agent-core@0.5.0
Minor Changes
#212
2bbea75- Add aKIMI_MODEL_*environment-variable channel that lets you run Kimi Code against a specific model (provider type, base URL, API key, context size, capabilities, and thinking settings) without editingconfig.toml.#205
96bbc47- Add an experimental feature-flag system: a central registry (flags/registry.ts) plus an env-driven resolver. Gate a feature withflags.enabled('id'), toggled viaKIMI_CODE_EXPERIMENTAL_<NAME>or theKIMI_CODE_EXPERIMENTAL_FLAGmaster switch. No flags are defined yet.#221
bab2da7- Install plugins directly from GitHub repository URLs, and surface each install's origin and trust level (kimi-official, curated, third-party) in the plugin manager.#118
8913440- Support querying sessions by sessionId or workDir in listSessions, and show a helpful cd command when resuming a session from a different working directory.#186
537cf20- Remove the default per-turn step limit of 1000. Users can still setmax_steps_per_turnin config to enforce a custom limit.Patch Changes
#197
f3269ea- Show the real terminal status of background agents in the transcript so lost, failed, and killed ones no longer appear as completed, and include the resume agent id and recovery instructions in the failure notification so the model can resume reliably.#211
54590d3- Back off failed compaction retries by a fixed slice of the model context window.#167
b5981a5- IntroduceModelProviderinterface andSingleModelProviderto decoupleAgentfromProviderManager.#213
2388f20- Handle context overflow errors consistently across provider responses.#198
8c77cfa- Fix automatic ripgrep installation when temporary files are on another filesystem.#195
3a0e060- Project persisted hook and blocked prompt messages into model context.#221
bab2da7- Restrict plugin trust badges to Kimi-hosted plugin CDN URL patterns.#207
e280f33- Recover from provider model token limit errors during long conversations.#190
1873859- Slim the LLM diagnostic logs with fewer, more compact fields.#185
114777e- SplitRuntimeConfigintoKaosandToolServicesand update all references accordingly.#189
564721f- Clarify subagent and background task stop messages as user-initiated.#206
07d51e4- Relocate shared tool service typing to the tool support layer.#200
5159af3- Keep blocked prompt hook conversations available to subsequent model turns.Updated dependencies [
2388f20,13e0fff,e280f33,3da4dae]:@moonshot-ai/kimi-code-sdk@0.4.0
Minor Changes
#221
bab2da7- Install plugins directly from GitHub repository URLs, and surface each install's origin and trust level (kimi-official, curated, third-party) in the plugin manager.#118
8913440- Support querying sessions by sessionId or workDir in listSessions, and show a helpful cd command when resuming a session from a different working directory.Patch Changes
bab2da7- Restrict plugin trust badges to Kimi-hosted plugin CDN URL patterns.@moonshot-ai/kosong@0.2.3
Patch Changes
#213
2388f20- Handle context overflow errors consistently across provider responses.#222
13e0fff- Preserve unsigned assistant thinking when serializing history for the Anthropic provider, instead of dropping it. Anthropic-compatible backends (e.g. Kimi) stream thinking without a signature yet reject a tool-call turn whose thinking is missing ("thinking is enabled but reasoning_content is missing"). api.anthropic.com always supplies a signature, so its behavior is unchanged.#207
e280f33- Recover from provider model token limit errors during long conversations.#201
3da4dae- Automatically retry when a model response stream is dropped mid-flight (aterminatederror) instead of failing the turn.@moonshot-ai/migration-legacy@0.1.5
Patch Changes
f3269ea,54590d3,b5981a5,2388f20,2bbea75,96bbc47,8c77cfa,bab2da7,3a0e060,bab2da7,8913440,e280f33,1873859,114777e,564721f,07d51e4,537cf20,5159af3]: