diff --git a/CHANGELOG.md b/CHANGELOG.md index 50adfc7a1..cd8acb506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ Only write entries that are worth mentioning to users. ## Unreleased +## 0.81 (2026-01-21) + - Skills: Add flow skill type with embedded Agent Flow (Mermaid/D2) in SKILL.md, invoked via `/flow:` commands - CLI: Remove `--prompt-flow` option; use flow skills instead - Core: Replace `/begin` command with `/flow:` commands for flow skills diff --git a/docs/en/release-notes/breaking-changes.md b/docs/en/release-notes/breaking-changes.md index c65f19885..c39b77763 100644 --- a/docs/en/release-notes/breaking-changes.md +++ b/docs/en/release-notes/breaking-changes.md @@ -4,6 +4,22 @@ This page documents breaking changes in Kimi CLI releases and provides migration ## Unreleased +## 0.81 - Prompt Flow replaced by Flow Skills + +### `--prompt-flow` option removed + +The `--prompt-flow` CLI option has been removed. Use flow skills instead. + +- **Affected**: Scripts and automation using `--prompt-flow` to load Mermaid/D2 flowcharts +- **Migration**: Create a flow skill with embedded Agent Flow in `SKILL.md` and invoke via `/flow:` + +### `/begin` command replaced + +The `/begin` slash command has been replaced with `/flow:` commands. + +- **Affected**: Users who used `/begin` to start a loaded Prompt Flow +- **Migration**: Use `/flow:` to invoke flow skills directly + ## 0.77 - Thinking mode and CLI option changes ### Thinking mode setting migration change diff --git a/docs/en/release-notes/changelog.md b/docs/en/release-notes/changelog.md index 3e61eb57c..a4924e7cc 100644 --- a/docs/en/release-notes/changelog.md +++ b/docs/en/release-notes/changelog.md @@ -4,6 +4,8 @@ This page documents the changes in each Kimi CLI release. ## Unreleased +## 0.81 (2026-01-21) + - Skills: Add flow skill type with embedded Agent Flow (Mermaid/D2) in SKILL.md, invoked via `/flow:` commands - CLI: Remove `--prompt-flow` option; use flow skills instead - Core: Replace `/begin` command with `/flow:` commands for flow skills diff --git a/docs/zh/release-notes/breaking-changes.md b/docs/zh/release-notes/breaking-changes.md index d7aa00cbc..72970616c 100644 --- a/docs/zh/release-notes/breaking-changes.md +++ b/docs/zh/release-notes/breaking-changes.md @@ -4,6 +4,22 @@ ## 未发布 +## 0.81 - Prompt Flow 被 Flow Skills 取代 + +### `--prompt-flow` 选项移除 + +`--prompt-flow` CLI 选项已移除,请改用 flow skills。 + +- **受影响**:使用 `--prompt-flow` 加载 Mermaid/D2 流程图的脚本和自动化 +- **迁移**:创建包含嵌入式 Agent Flow 的 flow skill(在 `SKILL.md` 中),并通过 `/flow:` 调用 + +### `/begin` 命令被替换 + +`/begin` 斜杠命令已被 `/flow:` 命令替换。 + +- **受影响**:使用 `/begin` 启动已加载 Prompt Flow 的用户 +- **迁移**:使用 `/flow:` 直接调用 flow skills + ## 0.77 - Thinking 模式与 CLI 选项变更 ### Thinking 模式设置迁移调整 diff --git a/docs/zh/release-notes/changelog.md b/docs/zh/release-notes/changelog.md index 24ce5b1d0..002b38a9b 100644 --- a/docs/zh/release-notes/changelog.md +++ b/docs/zh/release-notes/changelog.md @@ -4,6 +4,8 @@ ## 未发布 +## 0.81 (2026-01-21) + - Skills:添加 Flow Skill 类型,在 SKILL.md 中内嵌 Agent Flow(Mermaid/D2),通过 `/flow:` 命令调用 - CLI:移除 `--prompt-flow` 选项,改用 Flow Skills - Core:用 `/flow:` 命令替代原来的 `/begin` 命令 diff --git a/packages/kimi-code/pyproject.toml b/packages/kimi-code/pyproject.toml index 8351a0e97..b1ea3e8e6 100644 --- a/packages/kimi-code/pyproject.toml +++ b/packages/kimi-code/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "kimi-code" -version = "0.80" +version = "0.81" description = "Kimi Code is a CLI agent that lives in your terminal." readme = "README.md" requires-python = ">=3.12" -dependencies = ["kimi-cli==0.80"] +dependencies = ["kimi-cli==0.81"] [project.scripts] kimi = "kimi_cli.cli:cli" diff --git a/pyproject.toml b/pyproject.toml index e7f4b112a..012099aaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kimi-cli" -version = "0.80" +version = "0.81" description = "Kimi CLI is your next CLI agent." readme = "README.md" requires-python = ">=3.12" diff --git a/uv.lock b/uv.lock index 328e8eedf..faccb64d2 100644 --- a/uv.lock +++ b/uv.lock @@ -1105,7 +1105,7 @@ wheels = [ [[package]] name = "kimi-cli" -version = "0.80" +version = "0.81" source = { editable = "." } dependencies = [ { name = "agent-client-protocol" }, @@ -1183,7 +1183,7 @@ dev = [ [[package]] name = "kimi-code" -version = "0.80" +version = "0.81" source = { editable = "packages/kimi-code" } dependencies = [ { name = "kimi-cli" },