You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/skills/release/SKILL.md
+23-1Lines changed: 23 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,29 @@ The Rust implementation (`kagent`) lives in a separate repository and is **not**
46
46
47
47
Wait for explicit user approval before proceeding. If the user flags anything, fix it and re-confirm — do not push.
48
48
49
-
10.**Open the PR.** Commit all changes, push, and open a PR with `gh` describing the version bumps.
49
+
10.**Open the PR.** Commit all changes, push, and open a PR with `gh`. The PR description must follow this structure (see https://github.com/MoonshotAI/kimi-cli/pull/2225 for reference):
50
+
51
+
```markdown
52
+
## Summary
53
+
- Bump <package> to <version>
54
+
- Move the current release notes under <version>
55
+
- (If applicable) Move breaking-change entries under <version>
After this PR lands, create and push the release tag:
66
+
67
+
```sh
68
+
git tag <tag>
69
+
git push origin <tag>
70
+
```
71
+
```
50
72
51
73
11.**Hand off the tag step.** After merge, switch to `main`, pull latest, and tell the user the exact `git tag` command for the final release tag (pick the right tag pattern from the table above — e.g. `git tag 1.43.0` for a root release, `git tag kosong-0.54.0` for a kosong release). The user will run the tag and push tags themselves.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,11 @@ Only write entries that are worth mentioning to users.
11
11
12
12
## Unreleased
13
13
14
+
## 1.44.0 (2026-05-13)
15
+
16
+
- Shell: Add slash command alias resolution — aliases such as `/h`, `?`, and `status` now resolve to their canonical commands (`/help`, `/usage`); the completer and help output display alias matches as `/name (alias)` for clarity
17
+
- Shell: Fix `/usage` alias registration — the alias was incorrectly stored as `"/status"` instead of `"status"`, causing alias lookup to fail
18
+
14
19
## 1.43.0 (2026-05-12)
15
20
16
21
- Security: Bump pillow to 12.2.0 to address CVE-2026-25990 (out-of-bounds write when loading PSD images); unblocks installs in environments that gate on the older pinned version
Copy file name to clipboardExpand all lines: docs/en/release-notes/breaking-changes.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ This page documents breaking changes in Kimi Code CLI releases and provides migr
4
4
5
5
## Unreleased
6
6
7
+
## 1.43.0
8
+
7
9
### MCP OAuth token cache moved to `~/.kimi/mcp-oauth/`
8
10
9
11
Kimi Code CLI now uses FastMCP 3's persistent OAuth storage API for MCP servers and stores MCP OAuth tokens under `~/.kimi/mcp-oauth/`. Tokens from the old FastMCP 2.x cache location are not migrated automatically.
Copy file name to clipboardExpand all lines: docs/en/release-notes/changelog.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,11 @@ This page documents the changes in each Kimi Code CLI release.
4
4
5
5
## Unreleased
6
6
7
+
## 1.44.0 (2026-05-13)
8
+
9
+
- Shell: Add slash command alias resolution — aliases such as `/h`, `?`, and `status` now resolve to their canonical commands (`/help`, `/usage`); the completer and help output display alias matches as `/name (alias)` for clarity
10
+
- Shell: Fix `/usage` alias registration — the alias was incorrectly stored as `"/status"` instead of `"status"`, causing alias lookup to fail
11
+
7
12
## 1.43.0 (2026-05-12)
8
13
9
14
- Security: Bump pillow to 12.2.0 to address CVE-2026-25990 (out-of-bounds write when loading PSD images); unblocks installs in environments that gate on the older pinned version
0 commit comments