@spaceflow/core 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1176 -0
- package/README.md +105 -0
- package/nest-cli.json +10 -0
- package/package.json +128 -0
- package/rspack.config.mjs +62 -0
- package/src/__mocks__/@opencode-ai/sdk.js +9 -0
- package/src/__mocks__/c12.ts +3 -0
- package/src/app.module.ts +18 -0
- package/src/config/ci.config.ts +29 -0
- package/src/config/config-loader.ts +101 -0
- package/src/config/config-reader.module.ts +16 -0
- package/src/config/config-reader.service.ts +133 -0
- package/src/config/feishu.config.ts +35 -0
- package/src/config/git-provider.config.ts +29 -0
- package/src/config/index.ts +29 -0
- package/src/config/llm.config.ts +110 -0
- package/src/config/schema-generator.service.ts +129 -0
- package/src/config/spaceflow.config.ts +292 -0
- package/src/config/storage.config.ts +33 -0
- package/src/extension-system/extension.interface.ts +221 -0
- package/src/extension-system/index.ts +1 -0
- package/src/index.ts +80 -0
- package/src/locales/en/translation.json +11 -0
- package/src/locales/zh-cn/translation.json +11 -0
- package/src/shared/claude-setup/claude-setup.module.ts +8 -0
- package/src/shared/claude-setup/claude-setup.service.ts +131 -0
- package/src/shared/claude-setup/index.ts +2 -0
- package/src/shared/editor-config/index.ts +23 -0
- package/src/shared/feishu-sdk/feishu-sdk.module.ts +77 -0
- package/src/shared/feishu-sdk/feishu-sdk.service.ts +130 -0
- package/src/shared/feishu-sdk/fieshu-card.service.ts +139 -0
- package/src/shared/feishu-sdk/index.ts +4 -0
- package/src/shared/feishu-sdk/types/card-action.ts +132 -0
- package/src/shared/feishu-sdk/types/card.ts +64 -0
- package/src/shared/feishu-sdk/types/common.ts +22 -0
- package/src/shared/feishu-sdk/types/index.ts +46 -0
- package/src/shared/feishu-sdk/types/message.ts +35 -0
- package/src/shared/feishu-sdk/types/module.ts +21 -0
- package/src/shared/feishu-sdk/types/user.ts +77 -0
- package/src/shared/git-provider/adapters/gitea.adapter.spec.ts +473 -0
- package/src/shared/git-provider/adapters/gitea.adapter.ts +499 -0
- package/src/shared/git-provider/adapters/github.adapter.spec.ts +341 -0
- package/src/shared/git-provider/adapters/github.adapter.ts +830 -0
- package/src/shared/git-provider/adapters/gitlab.adapter.ts +839 -0
- package/src/shared/git-provider/adapters/index.ts +3 -0
- package/src/shared/git-provider/detect-provider.spec.ts +195 -0
- package/src/shared/git-provider/detect-provider.ts +112 -0
- package/src/shared/git-provider/git-provider.interface.ts +188 -0
- package/src/shared/git-provider/git-provider.module.ts +73 -0
- package/src/shared/git-provider/git-provider.service.spec.ts +282 -0
- package/src/shared/git-provider/git-provider.service.ts +309 -0
- package/src/shared/git-provider/index.ts +7 -0
- package/src/shared/git-provider/parse-repo-url.spec.ts +221 -0
- package/src/shared/git-provider/parse-repo-url.ts +155 -0
- package/src/shared/git-provider/types.ts +434 -0
- package/src/shared/git-sdk/git-sdk-diff.utils.spec.ts +344 -0
- package/src/shared/git-sdk/git-sdk-diff.utils.ts +151 -0
- package/src/shared/git-sdk/git-sdk.module.ts +8 -0
- package/src/shared/git-sdk/git-sdk.service.ts +235 -0
- package/src/shared/git-sdk/git-sdk.types.ts +25 -0
- package/src/shared/git-sdk/index.ts +4 -0
- package/src/shared/i18n/i18n.spec.ts +96 -0
- package/src/shared/i18n/i18n.ts +86 -0
- package/src/shared/i18n/index.ts +1 -0
- package/src/shared/i18n/locale-detect.ts +134 -0
- package/src/shared/llm-jsonput/index.ts +94 -0
- package/src/shared/llm-jsonput/types.ts +17 -0
- package/src/shared/llm-proxy/adapters/claude-code.adapter.spec.ts +131 -0
- package/src/shared/llm-proxy/adapters/claude-code.adapter.ts +208 -0
- package/src/shared/llm-proxy/adapters/index.ts +4 -0
- package/src/shared/llm-proxy/adapters/llm-adapter.interface.ts +23 -0
- package/src/shared/llm-proxy/adapters/open-code.adapter.ts +342 -0
- package/src/shared/llm-proxy/adapters/openai.adapter.spec.ts +215 -0
- package/src/shared/llm-proxy/adapters/openai.adapter.ts +153 -0
- package/src/shared/llm-proxy/index.ts +6 -0
- package/src/shared/llm-proxy/interfaces/config.interface.ts +32 -0
- package/src/shared/llm-proxy/interfaces/index.ts +4 -0
- package/src/shared/llm-proxy/interfaces/message.interface.ts +48 -0
- package/src/shared/llm-proxy/interfaces/session.interface.ts +28 -0
- package/src/shared/llm-proxy/llm-proxy.module.ts +140 -0
- package/src/shared/llm-proxy/llm-proxy.service.spec.ts +303 -0
- package/src/shared/llm-proxy/llm-proxy.service.ts +132 -0
- package/src/shared/llm-proxy/llm-session.spec.ts +111 -0
- package/src/shared/llm-proxy/llm-session.ts +109 -0
- package/src/shared/llm-proxy/stream-logger.ts +97 -0
- package/src/shared/logger/index.ts +11 -0
- package/src/shared/logger/logger.interface.ts +93 -0
- package/src/shared/logger/logger.spec.ts +178 -0
- package/src/shared/logger/logger.ts +175 -0
- package/src/shared/logger/renderers/plain.renderer.ts +116 -0
- package/src/shared/logger/renderers/tui.renderer.ts +162 -0
- package/src/shared/mcp/index.ts +332 -0
- package/src/shared/output/index.ts +2 -0
- package/src/shared/output/output.module.ts +9 -0
- package/src/shared/output/output.service.ts +97 -0
- package/src/shared/package-manager/index.ts +115 -0
- package/src/shared/parallel/index.ts +1 -0
- package/src/shared/parallel/parallel-executor.ts +169 -0
- package/src/shared/rspack-config/index.ts +1 -0
- package/src/shared/rspack-config/rspack-config.ts +157 -0
- package/src/shared/source-utils/index.ts +130 -0
- package/src/shared/spaceflow-dir/index.ts +158 -0
- package/src/shared/storage/adapters/file.adapter.ts +113 -0
- package/src/shared/storage/adapters/index.ts +3 -0
- package/src/shared/storage/adapters/memory.adapter.ts +50 -0
- package/src/shared/storage/adapters/storage-adapter.interface.ts +48 -0
- package/src/shared/storage/index.ts +4 -0
- package/src/shared/storage/storage.module.ts +150 -0
- package/src/shared/storage/storage.service.ts +293 -0
- package/src/shared/storage/types.ts +51 -0
- package/src/shared/verbose/index.ts +73 -0
- package/test/app.e2e-spec.ts +22 -0
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +25 -0
- package/tsconfig.skill.json +18 -0
- package/vitest.config.ts +58 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1176 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.0](https://git.bjxgj.com/xgj/spaceflow/compare/v1.1.0...@spaceflow/core@0.1.0) (2026-02-15)
|
|
4
|
+
|
|
5
|
+
### 新特性
|
|
6
|
+
|
|
7
|
+
* add clear command ([4555769](https://git.bjxgj.com/xgj/spaceflow/commit/455576915ef3944a045459926bbcfa2969a1fc7d))
|
|
8
|
+
* **ci-publish:** 优化ci-publish配置字段的可选性 ([55e93c7](https://git.bjxgj.com/xgj/spaceflow/commit/55e93c71ffd7de00100799bd33af0b4a827aafe5))
|
|
9
|
+
* **ci-publish:** 增强 ci-publish 命令功能 ([f8890b5](https://git.bjxgj.com/xgj/spaceflow/commit/f8890b5f332a9ad873b53bb442dd9f86b510b16b))
|
|
10
|
+
* **ci-publish:** 支持pnpm包管理器和publishArgs配置 ([8ba878b](https://git.bjxgj.com/xgj/spaceflow/commit/8ba878b6cd8ad5a92e97a18020432170d41d1adf))
|
|
11
|
+
* **ci:** 在分支保护测试中添加 token 调试功能 ([424e3a3](https://git.bjxgj.com/xgj/spaceflow/commit/424e3a37536b0c4d6f2eaeb395ae9f83fd8ae248))
|
|
12
|
+
* **ci:** 添加分支保护测试工作流 ([eb819c5](https://git.bjxgj.com/xgj/spaceflow/commit/eb819c5f56d3bab9eb5130c3cec763fee0e4bce2))
|
|
13
|
+
* **cli:** 新增 MCP Server 命令并集成 review 扩展的 MCP 工具 ([b794b36](https://git.bjxgj.com/xgj/spaceflow/commit/b794b36d90788c7eb4cbb253397413b4a080ae83))
|
|
14
|
+
* **cli:** 新增 MCP Server 导出类型支持 ([9568cbd](https://git.bjxgj.com/xgj/spaceflow/commit/9568cbd14d4cfbdedaf2218379c72337af6db271))
|
|
15
|
+
* **commit:** 添加 commit 命令支持自动生成规范 commit message ([3d2e0aa](https://git.bjxgj.com/xgj/spaceflow/commit/3d2e0aa3c0fd48589c25269fb603bdc74d698ce7))
|
|
16
|
+
* **core:** 为 CLI 入口文件添加 Node shebang 支持 ([0d787d3](https://git.bjxgj.com/xgj/spaceflow/commit/0d787d329e69f2b53d26ba04720d60625ca51efd))
|
|
17
|
+
* **core:** 为 npm 包添加 npx 直接执行支持 ([e67a7da](https://git.bjxgj.com/xgj/spaceflow/commit/e67a7da34c4e41408760da4de3a499495ce0df2f))
|
|
18
|
+
* **core:** 为所有命令添加 i18n 国际化支持 ([867c5d3](https://git.bjxgj.com/xgj/spaceflow/commit/867c5d3eccc285c8a68803b8aa2f0ffb86a94285))
|
|
19
|
+
* **core:** 优化 commit message 的 scope 处理逻辑 ([42869dd](https://git.bjxgj.com/xgj/spaceflow/commit/42869dd4bde0a3c9bf8ffb827182775e2877a57b))
|
|
20
|
+
* **core:** 优化 commit 消息生成器中的 scope 处理逻辑 ([1592079](https://git.bjxgj.com/xgj/spaceflow/commit/1592079edde659fe94a02bb6e2dea555c80d3b6b))
|
|
21
|
+
* **core:** 优化 npm 包名处理逻辑 ([ae23ebd](https://git.bjxgj.com/xgj/spaceflow/commit/ae23ebdc3144b611e1aa8c4e66bf0db074d09798))
|
|
22
|
+
* **core:** 优化commit命令的scope处理逻辑 ([04d00fa](https://git.bjxgj.com/xgj/spaceflow/commit/04d00fae55f445b148c5d8a84187cc3d7e6e7313))
|
|
23
|
+
* **core:** 优化commit拆分分析,按包路径提取scope ([2b9a74d](https://git.bjxgj.com/xgj/spaceflow/commit/2b9a74dcf109f39cc679313392ede8c3ab53f255))
|
|
24
|
+
* **core:** 优化pnpm包安装逻辑,检测是否为workspace ([6555daf](https://git.bjxgj.com/xgj/spaceflow/commit/6555dafe1f08a244525be3a0345cc585f2552086))
|
|
25
|
+
* **core:** 优化包管理器检测与 npm 包处理逻辑 ([63f7fa4](https://git.bjxgj.com/xgj/spaceflow/commit/63f7fa4f55cb41583009b2ea313b5ad327615e52))
|
|
26
|
+
* **core:** 在 Gitea SDK 中新增编辑 Pull Request 的方法 ([a586bf1](https://git.bjxgj.com/xgj/spaceflow/commit/a586bf110789578f23b39d64511229a1e5635dc4))
|
|
27
|
+
* **core:** 在 Gitea SDK 中新增获取 reactions 的方法 ([9324cf2](https://git.bjxgj.com/xgj/spaceflow/commit/9324cf2550709b8302171e5522d0792c08bc1415))
|
|
28
|
+
* **core:** 增强setup命令的配置初始化功能 ([dd37123](https://git.bjxgj.com/xgj/spaceflow/commit/dd371234bd6d38ea37709cccf1f3011975c3bb36))
|
|
29
|
+
* **core:** 完成剩余内置命令的插件化迁移 ([4e04d37](https://git.bjxgj.com/xgj/spaceflow/commit/4e04d37c274a30ea6acdc58906a7c0a6b1e86291))
|
|
30
|
+
* **core:** 实现commit命令的插件化架构 ([1e7c090](https://git.bjxgj.com/xgj/spaceflow/commit/1e7c090e0c6b77c82b5b47fbeff1856aeaac0bd9))
|
|
31
|
+
* **core:** 支持处理未跟踪文件的 commit 命令优化 ([180865b](https://git.bjxgj.com/xgj/spaceflow/commit/180865bca8f2cbff7548c73f6f80124bcbe0d955))
|
|
32
|
+
* **core:** 新增 Git diff 行号映射工具并优化 Claude 配置 ([88ef340](https://git.bjxgj.com/xgj/spaceflow/commit/88ef3400127fac3ad52fc326ad79fdc7bd058e98))
|
|
33
|
+
* **core:** 新增 GitLab 平台适配器并完善配置支持 ([47be9ad](https://git.bjxgj.com/xgj/spaceflow/commit/47be9adfa90944a9cb183e03286a7a96fec747f1))
|
|
34
|
+
* **core:** 新增 Logger 全局日志工具并支持 plain/tui 双模式渲染 ([8baae7c](https://git.bjxgj.com/xgj/spaceflow/commit/8baae7c24139695a0e379e1c874023cd61dfc41b))
|
|
35
|
+
* **core:** 新增内部插件注册文件 ([68d6129](https://git.bjxgj.com/xgj/spaceflow/commit/68d6129bfb10b97f2faa54ca857082f63e197233))
|
|
36
|
+
* **core:** 添加 commit 命令自动拆分多个 commit 支持 ([fce2075](https://git.bjxgj.com/xgj/spaceflow/commit/fce2075c0f92b629c5d57b3896823150456f1210))
|
|
37
|
+
* **core:** 添加 setup 命令支持配置初始化 ([31a94d1](https://git.bjxgj.com/xgj/spaceflow/commit/31a94d1da8c307d8662509dbe64c476ffd4891dc))
|
|
38
|
+
* **core:** 添加commit scope分组策略配置支持 ([f38445a](https://git.bjxgj.com/xgj/spaceflow/commit/f38445a35b6214bf56c1a3f3093c1dca565c40cc))
|
|
39
|
+
* **core:** 添加依赖更新功能 ([1a544eb](https://git.bjxgj.com/xgj/spaceflow/commit/1a544eb5e2b64396a0187d4518595e9dcb51d73e))
|
|
40
|
+
* **core:** 添加内部插件注册功能并支持动态模块 ([9e8671d](https://git.bjxgj.com/xgj/spaceflow/commit/9e8671d4fbd2ad293bd2b00aead28e415d2a288e))
|
|
41
|
+
* **core:** 添加同步解锁分支方法用于进程退出清理 ([cbec480](https://git.bjxgj.com/xgj/spaceflow/commit/cbec480511e074de3ccdc61226f3baa317cff907))
|
|
42
|
+
* **core:** 添加多级详细日志支持 ([a7d75cf](https://git.bjxgj.com/xgj/spaceflow/commit/a7d75cf7726869a5e6ce6260223ad9abe2bff510))
|
|
43
|
+
* **core:** 重构 commit 服务并添加结构化 commit message 支持 ([22b4db8](https://git.bjxgj.com/xgj/spaceflow/commit/22b4db8619b0ce038667ab42dea1362706887fc9))
|
|
44
|
+
* **core:** 重构插件加载机制支持内部插件注册 ([add83ec](https://git.bjxgj.com/xgj/spaceflow/commit/add83ecfb7efcc6e63a5ed82f308aa566ee45974))
|
|
45
|
+
* **docs:** 新增 VitePress 文档站点并完善项目文档 ([a79d620](https://git.bjxgj.com/xgj/spaceflow/commit/a79d6208e60390a44fa4c94621eb41ae20159e98))
|
|
46
|
+
* **mcp:** 新增 MCP Inspector 交互式调试支持并优化工具日志输出 ([05fd2ee](https://git.bjxgj.com/xgj/spaceflow/commit/05fd2ee941c5f6088b769d1127cb7c0615626f8c))
|
|
47
|
+
* **publish:** 优化发布流程:支持跳过私有包和指定包发布 ([4540f62](https://git.bjxgj.com/xgj/spaceflow/commit/4540f624574bfba1dcc03565a5711eb8a377c0b3))
|
|
48
|
+
* **publish:** 优化变更检测逻辑,支持按包最新tag单独检测 ([c0db601](https://git.bjxgj.com/xgj/spaceflow/commit/c0db601550b0d2fdecaeb49b8791d9838790e1e1))
|
|
49
|
+
* **publish:** 增强包变更检测的日志输出 ([b89c5cc](https://git.bjxgj.com/xgj/spaceflow/commit/b89c5cc0654713b6482ee591325d4f92ad773600))
|
|
50
|
+
* **publish:** 新增CI发布插件用于分支锁定解锁 ([3ab9f2e](https://git.bjxgj.com/xgj/spaceflow/commit/3ab9f2e2fedf1590ee2d2851463e2244e20cada7))
|
|
51
|
+
* **publish:** 添加CI环境自动获取Git tags功能 ([89e3936](https://git.bjxgj.com/xgj/spaceflow/commit/89e393647ca1c317b26cce63e68fdd64cd1eed28))
|
|
52
|
+
* **publish:** 添加分支锁定开关配置 ([542bec0](https://git.bjxgj.com/xgj/spaceflow/commit/542bec05a132446eaffeeca5ba8dd945c1399f9f))
|
|
53
|
+
* **publish:** 添加分支锁定推送白名单功能 ([7073039](https://git.bjxgj.com/xgj/spaceflow/commit/7073039599984e28f3ac9068deceee5bd7773079))
|
|
54
|
+
* **publish:** 添加进程退出时自动解锁分支的保护机制 ([b92438d](https://git.bjxgj.com/xgj/spaceflow/commit/b92438d461695b38ff671f571b9577b97119233f))
|
|
55
|
+
* **review:** 为 execute 方法添加文档注释 ([a21f582](https://git.bjxgj.com/xgj/spaceflow/commit/a21f58290c873fb07789e70c8c5ded2b5874a29d))
|
|
56
|
+
* **review:** 为 getPrNumberFromEvent 方法添加文档注释 ([54d1586](https://git.bjxgj.com/xgj/spaceflow/commit/54d1586f4558b5bfde81b926c7b513a32e5caf89))
|
|
57
|
+
* **review:** 为 MCP 服务添加 i18n 国际化支持 ([a749054](https://git.bjxgj.com/xgj/spaceflow/commit/a749054eb73b775a5f5973ab1b86c04f2b2ddfba))
|
|
58
|
+
* **review:** 为删除影响分析添加文件过滤功能 ([7304293](https://git.bjxgj.com/xgj/spaceflow/commit/73042937c5271ff4b0dcb6cd6d823e5aa0c03e7b))
|
|
59
|
+
* **review:** 优化 commit author 获取逻辑,支持 committer 作为备选 ([b75b613](https://git.bjxgj.com/xgj/spaceflow/commit/b75b6133e5b8c95580516480315bc979fc6eb59b))
|
|
60
|
+
* **review:** 优化 commit author 获取逻辑,支持从 Git 原始作者信息中提取 ([10ac821](https://git.bjxgj.com/xgj/spaceflow/commit/10ac8210a4457e0356c3bc1645f54f6f3d8c904c))
|
|
61
|
+
* **review:** 优化 commit author 获取逻辑,通过 Gitea API 搜索用户以关联 Git 原始作者 ([daa274b](https://git.bjxgj.com/xgj/spaceflow/commit/daa274bba2255e92d1e9a6e049e20846a69e8df7))
|
|
62
|
+
* **review:** 优化 PR 标题生成的格式要求 ([a4d807d](https://git.bjxgj.com/xgj/spaceflow/commit/a4d807d0a4feee4ccc88c6096e069c6dbb650a03))
|
|
63
|
+
* **review:** 优化 verbose 参数支持多级别累加,将日志级别扩展为 0-3 级 ([fe4c830](https://git.bjxgj.com/xgj/spaceflow/commit/fe4c830cac137c5502d700d2cd5f22b52a629e5f))
|
|
64
|
+
* **review:** 优化review配置字段的可选性 ([7d9123d](https://git.bjxgj.com/xgj/spaceflow/commit/7d9123dc74f793cf0e58a98d86751b36bf9507eb))
|
|
65
|
+
* **review:** 优化历史问题的 author 信息填充逻辑 ([b18d171](https://git.bjxgj.com/xgj/spaceflow/commit/b18d171c9352fe5815262d43ffd9cd7751f03a4e))
|
|
66
|
+
* **review:** 优化审查报告中回复消息的格式显示 ([f478c8d](https://git.bjxgj.com/xgj/spaceflow/commit/f478c8da4c1d7494819672006e3230dbc8e0924d))
|
|
67
|
+
* **review:** 优化审查报告中的消息展示格式 ([0996c2b](https://git.bjxgj.com/xgj/spaceflow/commit/0996c2b45c9502c84308f8a7f9186e4dbd4164fb))
|
|
68
|
+
* **review:** 优化行号更新统计,分别统计更新和标记无效的问题数量 ([892b8be](https://git.bjxgj.com/xgj/spaceflow/commit/892b8bed8913531a9440579f777b1965fec772e5))
|
|
69
|
+
* **review:** 优化问题 author 信息填充时机,统一在所有问题合并后填充 ([ea8c586](https://git.bjxgj.com/xgj/spaceflow/commit/ea8c586fc60061ffd339e85c6c298b905bdfdcd8))
|
|
70
|
+
* **review:** 优化问题展示和无效标记逻辑 ([e2b45e1](https://git.bjxgj.com/xgj/spaceflow/commit/e2b45e1ec594488bb79f528911fd6009a3213eca))
|
|
71
|
+
* **review:** 在 fillIssueAuthors 方法中添加详细的调试日志 ([42ab288](https://git.bjxgj.com/xgj/spaceflow/commit/42ab288933296abdeeb3dbbedbb2aecedbea2251))
|
|
72
|
+
* **review:** 在 syncReactionsToIssues 中添加详细日志并修复团队成员获取逻辑 ([91f166a](https://git.bjxgj.com/xgj/spaceflow/commit/91f166a07c2e43dabd4dd4ac186ec7b5f03dfc71))
|
|
73
|
+
* **review:** 在审查报告的回复中为用户名添加 @ 前缀 ([bc6186b](https://git.bjxgj.com/xgj/spaceflow/commit/bc6186b97f0764f6335690eca1f8af665f9b7629))
|
|
74
|
+
* **review:** 在审查问题中添加作者信息填充功能 ([8332dba](https://git.bjxgj.com/xgj/spaceflow/commit/8332dba4bb826cd358dc96db5f9b9406fb23df9b))
|
|
75
|
+
* **review:** 将审查命令的详细日志参数从 --verbose 简化为 -vv ([5eb320b](https://git.bjxgj.com/xgj/spaceflow/commit/5eb320b92d1f7165052730b2e90eee52367391dd))
|
|
76
|
+
* **review:** 扩展评审人收集逻辑,支持从 PR 指定的评审人和团队中获取 ([bbd61af](https://git.bjxgj.com/xgj/spaceflow/commit/bbd61af9d3e2b9e1dcf28c5e3867645fdda52e6f))
|
|
77
|
+
* **review:** 支持 AI 自动生成和更新 PR 标题 ([e02fb02](https://git.bjxgj.com/xgj/spaceflow/commit/e02fb027d525dd3e794d649e6dbc53c99a3a9a59))
|
|
78
|
+
* **review:** 支持 PR 关闭事件触发审查并自动传递事件类型参数 ([03967d9](https://git.bjxgj.com/xgj/spaceflow/commit/03967d9e860af7da06e3c04539f16c7bb31557ff))
|
|
79
|
+
* **review:** 支持在审查报告中展示评论的 reactions 和回复记录 ([f4da31a](https://git.bjxgj.com/xgj/spaceflow/commit/f4da31adf6ce412cb0ce27bfe7a1e87e5350e915))
|
|
80
|
+
* **review:** 支持绝对路径转换为相对路径 ([9050f64](https://git.bjxgj.com/xgj/spaceflow/commit/9050f64b8ef67cb2c8df9663711a209523ae9d18))
|
|
81
|
+
* **review:** 新增 override 作用域测试,验证 includes 对 override 过滤的影响 ([820e0cb](https://git.bjxgj.com/xgj/spaceflow/commit/820e0cb0f36783dc1c7e1683ad08501e91f094b2))
|
|
82
|
+
* **review:** 新增规则级 includes 解析测试并修复文件级/规则级 includes 过滤逻辑 ([4baca71](https://git.bjxgj.com/xgj/spaceflow/commit/4baca71c17782fb92a95b3207f9c61e0b410b9ff))
|
|
83
|
+
* **review:** 新增过滤无commit问题的选项 ([7a4c458](https://git.bjxgj.com/xgj/spaceflow/commit/7a4c458da03ae4a4646abca7e5f03abc849dc405))
|
|
84
|
+
* **review:** 移除 handleReview 中的重复 author 填充逻辑 ([e458bfd](https://git.bjxgj.com/xgj/spaceflow/commit/e458bfd0d21724c37fdd4023265d6a2dd1700404))
|
|
85
|
+
* **review:** 限制 PR 标题自动更新仅在第一轮审查时执行 ([1891cbc](https://git.bjxgj.com/xgj/spaceflow/commit/1891cbc8d85f6eaef9e7107a7f1003bdc654d3a3))
|
|
86
|
+
* **review:** 默认启用 PR 标题自动更新功能 ([fda6656](https://git.bjxgj.com/xgj/spaceflow/commit/fda6656efaf6479bb398ddc5cb1955142f31f369))
|
|
87
|
+
* 为 ClaudeSetupCommand 添加 dry-run 和 ci 命令行选项 ([00369f0](https://git.bjxgj.com/xgj/spaceflow/commit/00369f0586893a8f3d6af07eab2c4bab21ff2b46))
|
|
88
|
+
* 为 PR 审查任务清单中的文件名添加反引号标记 ([74ff94f](https://git.bjxgj.com/xgj/spaceflow/commit/74ff94fb4597acac2512b666eb10fb73bf90d26f))
|
|
89
|
+
* 为 PR 审查提示词中 commit 消息的首行添加引号包裹 ([edf08ac](https://git.bjxgj.com/xgj/spaceflow/commit/edf08ac574d174b935d36b3796b8a7c772fdf8a2))
|
|
90
|
+
* 从 action 中移除 Claude CLI 安装步骤 ([beba37d](https://git.bjxgj.com/xgj/spaceflow/commit/beba37d63b61c39f0cc9d5ab9900d257dae53e2c))
|
|
91
|
+
* 优化 Gitea Token 获取优先级并在开发模式下添加 Claude CLI 全局安装 ([cc092dc](https://git.bjxgj.com/xgj/spaceflow/commit/cc092dc57b96254e35ee74b413d6360907199ab5))
|
|
92
|
+
* 优化 GitHub Action 构建流程,统一使用 pnpm 和仓库根目录 ([8f95a12](https://git.bjxgj.com/xgj/spaceflow/commit/8f95a129c44a991029b45abc96b1e50e2490a609))
|
|
93
|
+
* 优化 JS/TS 审查规范的标题表述并调整单文件代码行数限制 ([c236754](https://git.bjxgj.com/xgj/spaceflow/commit/c2367549801a0765c0b048fc17f230e8f117351d))
|
|
94
|
+
* 优化 OpenAI 审查输出格式,从 JSON Schema 改为文本提示 ([cbf88c1](https://git.bjxgj.com/xgj/spaceflow/commit/cbf88c1b12152d2c4e5bc3a24826068647a67407))
|
|
95
|
+
* 优化 PR 审查任务清单,添加回归审查步骤并简化任务描述 ([68ae475](https://git.bjxgj.com/xgj/spaceflow/commit/68ae4756ba681f756ac0625adc11964afaf986fc))
|
|
96
|
+
* 优化 PR 审查提示词中 commit 消息的多行格式化处理 ([f13bc81](https://git.bjxgj.com/xgj/spaceflow/commit/f13bc8176dd1ae05be9fd6703e6e5e66bfd4fa59))
|
|
97
|
+
* 优化 PR 审查提示词的规范展示格式 ([b261c24](https://git.bjxgj.com/xgj/spaceflow/commit/b261c2469e29d88292daf35e5e98a88f14908021))
|
|
98
|
+
* 优化 PR 审查系统提示词,强调全面严格审查规范的要求 ([9503ca4](https://git.bjxgj.com/xgj/spaceflow/commit/9503ca42ea2972917474ace88fa9f05827adf7c9))
|
|
99
|
+
* 优化 PR 审查系统提示词,添加逐步审查的指导说明 ([b5ee377](https://git.bjxgj.com/xgj/spaceflow/commit/b5ee377b876f756e00e459a705df139faee7a1c0))
|
|
100
|
+
* 优化 PR 审查系统提示词的格式和表述,提升可读性 ([70eda36](https://git.bjxgj.com/xgj/spaceflow/commit/70eda369571dcda3a87919d8029e46c035ec764c))
|
|
101
|
+
* 优化 PR 审查系统提示词的表述,提升审查要求的明确性 ([03187df](https://git.bjxgj.com/xgj/spaceflow/commit/03187df34f98dad10e5a09f92dcd8c123966980c))
|
|
102
|
+
* 优化 PR 审查系统提示词的规范引用和问题描述表述 ([6a50064](https://git.bjxgj.com/xgj/spaceflow/commit/6a5006459b6fe845ad9e2ad2f056d73ec58db839))
|
|
103
|
+
* 优化审查结果 Schema,将 commit 字段改为可选并调整字段顺序 ([aec675a](https://git.bjxgj.com/xgj/spaceflow/commit/aec675a8ac6fd751fcc02b804c477e8991c8b569))
|
|
104
|
+
* 优化审查结果总结格式,在总结标题和内容之间添加换行符 ([e94981a](https://git.bjxgj.com/xgj/spaceflow/commit/e94981a4284ae999e6c8c9b96c6dc8bd2311f6b9))
|
|
105
|
+
* 优化工具调用输入的日志格式并添加未知类型块的日志输出 ([d9a1d40](https://git.bjxgj.com/xgj/spaceflow/commit/d9a1d40bffd7e07adc05e331318049512a797710))
|
|
106
|
+
* 优化开发模式构建流程并改进依赖管理 ([313963a](https://git.bjxgj.com/xgj/spaceflow/commit/313963a7e624f8c5c196a0a396f045dac7dc8f45))
|
|
107
|
+
* 使用容器用户选项替代手动用户切换步骤 ([adcaa46](https://git.bjxgj.com/xgj/spaceflow/commit/adcaa46e8ffd83eba145e809d51fe0c4a800f235))
|
|
108
|
+
* 切换 PR 审查工作流从 Claude 到 OpenAI(豆包模型) ([f339227](https://git.bjxgj.com/xgj/spaceflow/commit/f3392275f2041727e28bee4abf324109cd6ecb49))
|
|
109
|
+
* 升级 ci-publish action 运行时从 node20 到 node24 ([45c2f8b](https://git.bjxgj.com/xgj/spaceflow/commit/45c2f8bb35c9a50b827f2411a390ffd89dac301b))
|
|
110
|
+
* 在 Claude CLI 安装后添加版本检查步骤 ([36b3f7f](https://git.bjxgj.com/xgj/spaceflow/commit/36b3f7f8e1d898784958d3665febc26b8d059f9e))
|
|
111
|
+
* 在 PR 审查工作流中启用 verbose 模式并禁用 Claude 权限跳过选项 ([3d9df75](https://git.bjxgj.com/xgj/spaceflow/commit/3d9df75a13cfea7211114d603886bb85b1d36c98))
|
|
112
|
+
* 在 PR 审查工作流中添加 claude-setup 步骤并移除 pr-review 的 --ci 参数 ([0d1d6ea](https://git.bjxgj.com/xgj/spaceflow/commit/0d1d6ea8a6042d1dcca0fffd05362536e4cbbfa1))
|
|
113
|
+
* 在 PR 审查工作流中添加非 root 用户创建步骤并移除 Claude 权限跳过配置 ([d76352b](https://git.bjxgj.com/xgj/spaceflow/commit/d76352b73c3e3bd910d2ab9fa0d6c5839b18aca0))
|
|
114
|
+
* 在 PR 审查提示词中添加审查任务清单 ([4ed1012](https://git.bjxgj.com/xgj/spaceflow/commit/4ed1012cd79ceb9d81febabb5b58c1498fefcb06))
|
|
115
|
+
* 在 PR 审查服务中添加允许工具列表配置 ([7940003](https://git.bjxgj.com/xgj/spaceflow/commit/79400038531c5e18643c7eb83f1efb5c5f8e5a0f))
|
|
116
|
+
* 在 PR 审查系统提示词中强调严格审查和问题发现 ([0e16043](https://git.bjxgj.com/xgj/spaceflow/commit/0e160437a8a965fa7dfaef526a685c64769c9f82))
|
|
117
|
+
* 在 PR 审查系统提示词中添加 JSON 输出格式要求 ([7705b50](https://git.bjxgj.com/xgj/spaceflow/commit/7705b50a2d3f8e3bc07debd4b25ef7cd0df43c88))
|
|
118
|
+
* 在 PR 审查系统提示词中添加"全面"关键词以强调审查完整性 ([bbf5b51](https://git.bjxgj.com/xgj/spaceflow/commit/bbf5b5168280daee7d5ad0aa047061bc185fd1c3))
|
|
119
|
+
* 在 PR 审查系统提示词中添加审查范围限制说明 ([cf947ea](https://git.bjxgj.com/xgj/spaceflow/commit/cf947ea6c7c535bd8ba6458fb70ed8ee2d73f8f2))
|
|
120
|
+
* 在 PR 审查系统提示词中添加工具使用限制说明 ([bd6570c](https://git.bjxgj.com/xgj/spaceflow/commit/bd6570c24bf969564bd5703a63fc02711cc63cd7))
|
|
121
|
+
* 在 review.includes 中排除测试文件和配置文件 ([64a19c9](https://git.bjxgj.com/xgj/spaceflow/commit/64a19c9f9369d818ff20e82fd14b48e9ee19bd3f))
|
|
122
|
+
* 在开发模式下添加 Claude CLI 版本检查步骤 ([a388332](https://git.bjxgj.com/xgj/spaceflow/commit/a388332689901687132e469ce24053ccc05e295a))
|
|
123
|
+
* 增强 Claude API 调用的诊断信息和错误处理 ([8a9709d](https://git.bjxgj.com/xgj/spaceflow/commit/8a9709d4d00d60da0682750a820f1cd2f6c97c05))
|
|
124
|
+
* 将 Claude CLI 全局安装步骤从 action 移至工作流配置阶段 ([98f85a9](https://git.bjxgj.com/xgj/spaceflow/commit/98f85a95e64bcc6275e3b69cc7dfa77066c076b5))
|
|
125
|
+
* 将 Claude Code Router 启动命令从 npx 改为 pnpx ([dc138e3](https://git.bjxgj.com/xgj/spaceflow/commit/dc138e35fff678f7c0f28855d0563335e2c492a7))
|
|
126
|
+
* 将 Claude Code Router 启动命令从 pnpx 改为 pnpm dlx ([c776e54](https://git.bjxgj.com/xgj/spaceflow/commit/c776e5490632589cd8da1a0676143fdac1f0bd89))
|
|
127
|
+
* 将 Claude Code Router 启动方式从 pnpm dlx 改为 bunx ([3c4e3d7](https://git.bjxgj.com/xgj/spaceflow/commit/3c4e3d7f3defd814b1df0016ac0163fd548aa72b))
|
|
128
|
+
* 将 Claude 进程调试日志改为仅在 verbose 模式下输出 ([241b08b](https://git.bjxgj.com/xgj/spaceflow/commit/241b08bbd96e1eb96e891cb1626bf7eb225ec9fa))
|
|
129
|
+
* 将 PR 审查任务清单从系统提示词移至用户提示词 ([8582c1b](https://git.bjxgj.com/xgj/spaceflow/commit/8582c1b9898f666240f0fdfbc70ba427c50c91b1))
|
|
130
|
+
* 将 pr-review 命令参数从 command 字段移至 args 字段 ([5e05d88](https://git.bjxgj.com/xgj/spaceflow/commit/5e05d889ca7d3b40f5143af751eced6ed7d0a977))
|
|
131
|
+
* 将 review-spec 作为 Git 子模块集成到 .claude/skills 目录 ([7ef06d0](https://git.bjxgj.com/xgj/spaceflow/commit/7ef06d0ef019462010b5ef27a4e160cc0a6bbbb8))
|
|
132
|
+
* 提取 spawnClaudeCodeProcess 函数并添加 allowDangerouslySkipPermissions 选项 ([6164571](https://git.bjxgj.com/xgj/spaceflow/commit/616457104646a830cec9387cdd42c56562cd3949))
|
|
133
|
+
* 支持从 git remote 自动获取仓库信息 ([2991cb8](https://git.bjxgj.com/xgj/spaceflow/commit/2991cb8a5f87978831b3e68781bcf51f6ec76b18))
|
|
134
|
+
* 支持从环境变量获取 Gitea 服务器地址和令牌 ([5b30aba](https://git.bjxgj.com/xgj/spaceflow/commit/5b30aba76323a20f6e5077c561629cbbfe07130f))
|
|
135
|
+
* 支持从配置文件读取 Claude 模型名称 ([b29b128](https://git.bjxgj.com/xgj/spaceflow/commit/b29b128baefb0fad1ebc5288d89cc6dfcace4af1))
|
|
136
|
+
* 支持基于 includes 模式过滤 commits 并从配置文件读取默认 includes ([607fb78](https://git.bjxgj.com/xgj/spaceflow/commit/607fb78a26ce7dac0f1c52d67c3fd9e9142c6adb))
|
|
137
|
+
* 支持本地模式下的 PR 审查功能 ([a8cf6b7](https://git.bjxgj.com/xgj/spaceflow/commit/a8cf6b7f63b4bfa61e630330e4e29d2875394513))
|
|
138
|
+
* 支持通过环境变量覆盖 Claude 配置参数 ([35207c7](https://git.bjxgj.com/xgj/spaceflow/commit/35207c7f84e06d69053418460deae9fd716c236a))
|
|
139
|
+
* 支持通过配置文件自动配置 Claude CLI 设置 ([bb60d3c](https://git.bjxgj.com/xgj/spaceflow/commit/bb60d3c9e015a007492592bcdb78bfec3ae1a09c))
|
|
140
|
+
* 新增 LLM 代理适配器架构,支持 Claude 和 OpenAI 两种 LLM 提供商 ([a92910a](https://git.bjxgj.com/xgj/spaceflow/commit/a92910aacf2ce411f2849edf72555a1b9f05dc37))
|
|
141
|
+
* 新增 PR 评论指令触发功能,支持从评论中解析 /ai-review 命令 ([ac95860](https://git.bjxgj.com/xgj/spaceflow/commit/ac95860a2edfbb7b988f564b17af401ec93f2231))
|
|
142
|
+
* 新增CI发布工作流和monorepo配置 ([19860b0](https://git.bjxgj.com/xgj/spaceflow/commit/19860b04c0578f87af2c758a17f7ceb5a17b3165))
|
|
143
|
+
* 新增删除代码影响分析功能,支持通过 --analyze-deletions 选项分析删除代码可能带来的影响 ([e286938](https://git.bjxgj.com/xgj/spaceflow/commit/e2869387239949d4af4ecb2686c4189a90f9c59c))
|
|
144
|
+
* 更新 JS/TS 审查规范,放宽魔法字符串和数字规则的适用范围 ([b5d17bb](https://git.bjxgj.com/xgj/spaceflow/commit/b5d17bb285b200e0eea9194a4b69ad5d888cd77f))
|
|
145
|
+
* 更新 PR 审查使用的 AI 模型版本 ([ed7664e](https://git.bjxgj.com/xgj/spaceflow/commit/ed7664e8900d663e72ce8f091b919f307db50b58))
|
|
146
|
+
* 更新 PR 审查使用的 AI 模型版本 ([33c4b72](https://git.bjxgj.com/xgj/spaceflow/commit/33c4b727241886a3b53a393f98c4d1b4fedf4ef7))
|
|
147
|
+
* 更新 PR 审查工作流中用户切换步骤的名称 ([5de92da](https://git.bjxgj.com/xgj/spaceflow/commit/5de92da95d89c8c2f611d13aa6c5e99a293e3d33))
|
|
148
|
+
* 注释掉 PR 审查工作流中的 claude setup 步骤 ([735e6ac](https://git.bjxgj.com/xgj/spaceflow/commit/735e6acb0b0b68f3816b00a580edb413996aab5b))
|
|
149
|
+
* 添加 --ignore-error 参数 ([46beca6](https://git.bjxgj.com/xgj/spaceflow/commit/46beca6ae4174e00448b7e9eec8831bb02feb10e))
|
|
150
|
+
* 添加 ci-review 命令用于 PR 代码自动审查 ([c6c5b19](https://git.bjxgj.com/xgj/spaceflow/commit/c6c5b1937756da422e4eb1067302f0c7f60281dd))
|
|
151
|
+
* 添加 ci-script 命令用于在分支锁定/解锁之间执行脚本 ([216a22e](https://git.bjxgj.com/xgj/spaceflow/commit/216a22e20406d66b3994ba342dece7a942b0c9e3))
|
|
152
|
+
* 添加 ci-shell 命令用于在分支锁定/解锁之间执行 Shell 命令 ([3275be5](https://git.bjxgj.com/xgj/spaceflow/commit/3275be514230bd1e2726653c98458b277684568d))
|
|
153
|
+
* 添加 Claude CLI 安装支持并优化错误处理 ([c397c72](https://git.bjxgj.com/xgj/spaceflow/commit/c397c72ad31a623c52c8960ab1ba6942dc2470c6))
|
|
154
|
+
* 添加 Claude CLI 进程调试日志和错误输出捕获 ([bfd3b45](https://git.bjxgj.com/xgj/spaceflow/commit/bfd3b45c8b7a8a523d457b52071f740b1892cf42))
|
|
155
|
+
* 添加 Claude Code Router 环境准备和启动步骤 ([cade327](https://git.bjxgj.com/xgj/spaceflow/commit/cade3271c25bc441b179f40b6cc7f4e0dc4b719d))
|
|
156
|
+
* 添加 Claude 配置并优化代码格式 ([ae8d247](https://git.bjxgj.com/xgj/spaceflow/commit/ae8d2477b062e10b7be829375ad9b76e605ba758))
|
|
157
|
+
* 添加 dev-mode 参数支持开发模式运行 Actions ([31a217d](https://git.bjxgj.com/xgj/spaceflow/commit/31a217d875ed2d1bde632bd86ffa40086f9efed6))
|
|
158
|
+
* 添加 Gitea Actions 工作流用于测试和运行命令 ([0a1d102](https://git.bjxgj.com/xgj/spaceflow/commit/0a1d102cf1a8aeb061a69c2c6fd7b854ce2ef5aa))
|
|
159
|
+
* 添加 GitHub/Gitea Actions 支持和输出服务 ([320a0aa](https://git.bjxgj.com/xgj/spaceflow/commit/320a0aab13a9725d418b1c631f2ef9b6cc0177fc))
|
|
160
|
+
* 添加 LLM 类型必填校验,在执行 PR 审查前检查参数有效性 ([717b80d](https://git.bjxgj.com/xgj/spaceflow/commit/717b80dc723921ed5e48a1c726b11e21fd03d209))
|
|
161
|
+
* 添加 OpenAI LLM 支持,允许在 PR 审查中选择不同的 AI 模型 ([1c7427e](https://git.bjxgj.com/xgj/spaceflow/commit/1c7427eca4de3884d877d1c874005a133fb97fb7))
|
|
162
|
+
* 添加 OpenAI 配置支持,允许通过环境变量自定义 API 端点和模型 ([62929db](https://git.bjxgj.com/xgj/spaceflow/commit/62929db9fd2f5edf9ac53c1e434dc993bc97a87b))
|
|
163
|
+
* 添加 PR 审查详细输出模式 ([888732c](https://git.bjxgj.com/xgj/spaceflow/commit/888732c12530a1d3ef1238bc29d72567d8b53bac))
|
|
164
|
+
* 添加ci参数 ([4141e99](https://git.bjxgj.com/xgj/spaceflow/commit/4141e999d31276cbc7db3d52b37dd183946d2b51))
|
|
165
|
+
* 添加文件过滤功能支持 glob 模式匹配 ([21a4732](https://git.bjxgj.com/xgj/spaceflow/commit/21a4732fb84a496cc6bd0f87de24af54b9526c93))
|
|
166
|
+
* 添加规范严重程度(severity)机制,支持在规范文件和配置中自定义问题级别 ([a077797](https://git.bjxgj.com/xgj/spaceflow/commit/a07779702cd4204395f7e168454654da2fc7696c))
|
|
167
|
+
* 添加规范覆盖(override)机制,支持在 Nest.js 规范中覆盖基础规范 ([32c0ea3](https://git.bjxgj.com/xgj/spaceflow/commit/32c0ea3d316e919932aaf92f38fd02d9e173acf7))
|
|
168
|
+
* 移除 Claude Code Router 本地服务,直接使用火山引擎 API ([b25efa1](https://git.bjxgj.com/xgj/spaceflow/commit/b25efa1964ab8c5fc5ae3dcbab94cfea6ba3cf7f))
|
|
169
|
+
* 简化 PR 审查任务清单,将具体文件列表改为统一描述 ([7b397a9](https://git.bjxgj.com/xgj/spaceflow/commit/7b397a97217ad741c32d63a70c3587d7ae92ab3f))
|
|
170
|
+
* 统一文件审查日志格式,在所有审查日志前添加双换行符 ([4e72b59](https://git.bjxgj.com/xgj/spaceflow/commit/4e72b59773b7f56244f032435221fa2cca8a8bcd))
|
|
171
|
+
* 调整 PR 审查提示词结构,将 commits 信息移至变更文件之前 ([3585a3c](https://git.bjxgj.com/xgj/spaceflow/commit/3585a3c01ff6e9ecbaf24de3d98cea24076cc976))
|
|
172
|
+
* 调整 PR 审查系统提示词中"审查任务"章节的位置 ([147f508](https://git.bjxgj.com/xgj/spaceflow/commit/147f508211a38b082435999b14c00aecdea8af25))
|
|
173
|
+
* 配置 PR 审查工作流并添加 Claude 认证 ([1983526](https://git.bjxgj.com/xgj/spaceflow/commit/19835263be8b28e674fc5eef7321575d34ab4442))
|
|
174
|
+
* 配置 PR 工作流权限并添加 CI 模式支持 ([4eb6ab2](https://git.bjxgj.com/xgj/spaceflow/commit/4eb6ab2169cf36d4f649f683d13721f646e6e179))
|
|
175
|
+
* 重构 LLM JSON 输出处理,引入 LlmJsonPut 工具类统一管理 JSON 解析和修复 ([44e2bd9](https://git.bjxgj.com/xgj/spaceflow/commit/44e2bd95c6f7f8aaf7b1e95740c580ed37384cde))
|
|
176
|
+
* 重构 PR 审查为按文件逐个审查,提升审查精度和错误处理能力 ([4a46a4d](https://git.bjxgj.com/xgj/spaceflow/commit/4a46a4d9261548652365b4e362bac4afdd0f4839))
|
|
177
|
+
* 重构 PR 审查提示词结构,将系统提示和用户提示分离 ([a2474bc](https://git.bjxgj.com/xgj/spaceflow/commit/a2474bc46f346593edfe9e9d40aa33794d508243))
|
|
178
|
+
* 重构 PR 审查服务,引入 LlmProxyService 统一管理多 LLM 适配器调用 ([d1e01f6](https://git.bjxgj.com/xgj/spaceflow/commit/d1e01f6c0ebf1c1155ca9cb2a5802d61c2e34673))
|
|
179
|
+
|
|
180
|
+
### 修复BUG
|
|
181
|
+
|
|
182
|
+
* **actions:** 修复日志输出中的 emoji 显示问题,将 � 替换为 ℹ️ ([d3cd94a](https://git.bjxgj.com/xgj/spaceflow/commit/d3cd94afa9c6893b923d316fdcb5904f42ded632))
|
|
183
|
+
* **actions:** 修正 pnpm setup 命令调用方式 ([8f014fa](https://git.bjxgj.com/xgj/spaceflow/commit/8f014fa90b74e20de4c353804d271b3ef6f1288f))
|
|
184
|
+
* **core:** 从 PR diff 填充缺失的 patch 字段 ([24bfaa7](https://git.bjxgj.com/xgj/spaceflow/commit/24bfaa76f3bd56c8ead307e73e0623a2221c69cf))
|
|
185
|
+
* **core:** 修复 resolveRef 方法未处理空 ref 参数的问题 ([0824c83](https://git.bjxgj.com/xgj/spaceflow/commit/0824c8392482263036888b2fec95935371d67d4d))
|
|
186
|
+
* **core:** 修复CI配置类型定义错误 ([7162dd3](https://git.bjxgj.com/xgj/spaceflow/commit/7162dd3acf1f2b5e81c3b8bb63071ebd4e2d58ae))
|
|
187
|
+
* **core:** 修复commit命令分组分析的防御性检查 ([62c9d47](https://git.bjxgj.com/xgj/spaceflow/commit/62c9d475ec76d885927bdb1bb9c3bcd9ae5f9f68))
|
|
188
|
+
* **core:** 修复commit命令拆分时重复打印信息的问题 ([c1d343a](https://git.bjxgj.com/xgj/spaceflow/commit/c1d343a70858513e0fa6fd530e6f9244840d721b))
|
|
189
|
+
* **core:** 修复全局配置文件存储路径 ([b04361d](https://git.bjxgj.com/xgj/spaceflow/commit/b04361d59a5904b5e92e3ba850ea4ad54cf0a87c))
|
|
190
|
+
* **core:** 统一所有命令的错误处理,添加堆栈信息输出 ([31224a1](https://git.bjxgj.com/xgj/spaceflow/commit/31224a16ce7155402504bd8d3e386e59e47949df))
|
|
191
|
+
* dryRun 模式优化 ([5dd545b](https://git.bjxgj.com/xgj/spaceflow/commit/5dd545b544664e4d46aca92b1edd2dc104a65f50))
|
|
192
|
+
* **mcp:** 添加 -y 选项确保 Inspector 自动安装依赖 ([a9201f7](https://git.bjxgj.com/xgj/spaceflow/commit/a9201f74bd9ddc5eba92beaaa676f377842863e0))
|
|
193
|
+
* **publish:** 修复分支锁定时未捕获异常处理器的资源泄漏问题 ([ae326e9](https://git.bjxgj.com/xgj/spaceflow/commit/ae326e95c0cea033893cf084cbf7413fb252bd33))
|
|
194
|
+
* **publish:** 修复预演模式下的交互式提示问题 ([0b785bf](https://git.bjxgj.com/xgj/spaceflow/commit/0b785bfddb9f35e844989bd3891817dc502302f8))
|
|
195
|
+
* **review:** 修复删除代码影响分析的防御性检查 ([06e073f](https://git.bjxgj.com/xgj/spaceflow/commit/06e073f59c68ade187ff989f850a312880a1961f))
|
|
196
|
+
* **review:** 修复参数空值检查,增强代码健壮性 ([792a192](https://git.bjxgj.com/xgj/spaceflow/commit/792a192fd5dd80ed1e6d85cd61f6ce997bcc9dd9))
|
|
197
|
+
* **review:** 修复审查完成日志中的乱码 emoji ([36c1c48](https://git.bjxgj.com/xgj/spaceflow/commit/36c1c48faecda3cc02b9e0b097aebba0a85ea5f8))
|
|
198
|
+
* **review:** 修复按指定提交过滤时未处理空值导致的潜在问题 ([5d4d3e0](https://git.bjxgj.com/xgj/spaceflow/commit/5d4d3e0390a50c01309bb09e01c7328b211271b8))
|
|
199
|
+
* **review:** 增强错误处理,添加堆栈信息输出 ([e0fb5de](https://git.bjxgj.com/xgj/spaceflow/commit/e0fb5de6bc877d8f0b3dc3c03f8d614320427bf3))
|
|
200
|
+
* **review:** 将 UserInfo 的 id 字段类型从 number 改为 string ([505e019](https://git.bjxgj.com/xgj/spaceflow/commit/505e019c85d559ce1def1350599c1de218f7516a))
|
|
201
|
+
* **review:** 新增 getFileContents、getChangedFilesBetweenRefs 和 filterIssuesByValidCommits 方法的单元测试 ([7618c91](https://git.bjxgj.com/xgj/spaceflow/commit/7618c91bc075d218b9f51b862e5161d15a306bf8))
|
|
202
|
+
* Update install command and service ([92b9fcf](https://git.bjxgj.com/xgj/spaceflow/commit/92b9fcf3e3ffb0fac7411ff2a799d52587c8dbec))
|
|
203
|
+
* 优化PR输出 ([7bb19e4](https://git.bjxgj.com/xgj/spaceflow/commit/7bb19e4628b2e7cbf9c36415d617396dc68fde76))
|
|
204
|
+
* 修复 verbose 级别判断逻辑,确保 true 值仅对应 level 1 ([f1a3847](https://git.bjxgj.com/xgj/spaceflow/commit/f1a38470cb91590e0be85ed3c2be2bad04b40eeb))
|
|
205
|
+
* 修复review问题 ([7c417ed](https://git.bjxgj.com/xgj/spaceflow/commit/7c417ed556e33b470132449b7fc05b89ee098100))
|
|
206
|
+
* 修复子目录扫描问题 ([ea20ad9](https://git.bjxgj.com/xgj/spaceflow/commit/ea20ad939bd915c90e2fbbb6f3d860c683f51c36))
|
|
207
|
+
* 修正 release-it 配置中的 dryRun 参数名称 ([c0518e9](https://git.bjxgj.com/xgj/spaceflow/commit/c0518e9d895821000d79fb0ff1d7e9dbe0dc433d))
|
|
208
|
+
* 修正 release-it 配置参数格式并移除 dryRun 条件判断 ([7b08904](https://git.bjxgj.com/xgj/spaceflow/commit/7b089049e973e96e331e3ac2cb62fddb79b2ba84))
|
|
209
|
+
* 修正配置文件中 review.include 字段名为 review.includes ([c4a4504](https://git.bjxgj.com/xgj/spaceflow/commit/c4a4504224bb6e3c1efabf05253fc0a39f0d4d67))
|
|
210
|
+
* 尝试运行不执行 release-it-gitea 插件 ([bf20e12](https://git.bjxgj.com/xgj/spaceflow/commit/bf20e12271d858af0b2a6c4778f9838016a8a210))
|
|
211
|
+
* 支持只审核某个文件的功能 ([920493a](https://git.bjxgj.com/xgj/spaceflow/commit/920493adad78a0f7429bde4b3c73491c63903690))
|
|
212
|
+
* 添加 CLI 进程退出码处理 ([2ceb262](https://git.bjxgj.com/xgj/spaceflow/commit/2ceb262a4b56e8d3e3bd320c9a8860f51a3b05ab))
|
|
213
|
+
* 补充d参数 ([ff32dc8](https://git.bjxgj.com/xgj/spaceflow/commit/ff32dc849a9034ba5da64009523f2a5ff0b92b2f))
|
|
214
|
+
|
|
215
|
+
### 性能优化
|
|
216
|
+
|
|
217
|
+
* **core:** 优化commit命令的消息生成性能 ([43b1239](https://git.bjxgj.com/xgj/spaceflow/commit/43b12397a91507b9473526fedab4049b73bf661b))
|
|
218
|
+
|
|
219
|
+
### 代码重构
|
|
220
|
+
|
|
221
|
+
* **ci:** 优化 publish 工作流配置 ([d898d28](https://git.bjxgj.com/xgj/spaceflow/commit/d898d289027665c267af4e85b22c352b32c75a08))
|
|
222
|
+
* **ci:** 优化分支保护测试的 token 调试功能 ([1acadc9](https://git.bjxgj.com/xgj/spaceflow/commit/1acadc99213b02627983f5613fccc14910f24f83))
|
|
223
|
+
* **ci:** 优化工作流配置和 token 权限调试功能 ([807b384](https://git.bjxgj.com/xgj/spaceflow/commit/807b384a95ae887ae3bb8124859c76e01338c398))
|
|
224
|
+
* **ci:** 将 Git 用户名从 "gitea-actions" 改回 "GiteaActions" 并为 checkout 添加 token ([f494fb8](https://git.bjxgj.com/xgj/spaceflow/commit/f494fb8d4f9718b2b3b93b4610b8199e4e21f927))
|
|
225
|
+
* **ci:** 将分支保护测试文件从 ci.log 改为 ci.md ([145696a](https://git.bjxgj.com/xgj/spaceflow/commit/145696a498d79de37abfddebd45e4b769e213f00))
|
|
226
|
+
* **ci:** 将分支保护测试的 contents 权限改为只读 ([8e924b9](https://git.bjxgj.com/xgj/spaceflow/commit/8e924b941e12b4c21caac8bdb946e563b520f1be))
|
|
227
|
+
* **ci:** 恢复 publish 工作流的 push 触发器并调整 Git 配置 ([3b0d2fe](https://git.bjxgj.com/xgj/spaceflow/commit/3b0d2fe5d85971a5ffbefd2fd48b26d30bec0341))
|
|
228
|
+
* **ci:** 更新 npm registry 配置从 [@xgjlib](https://git.bjxgj.com/xgjlib) 到 [@spaceflow](https://git.bjxgj.com/spaceflow) ([7b5ac21](https://git.bjxgj.com/xgj/spaceflow/commit/7b5ac21950e64d89c9432a3bd84bbcfcb5015eb2))
|
|
229
|
+
* **ci:** 调整 publish 工作流步骤顺序 ([f6a92f2](https://git.bjxgj.com/xgj/spaceflow/commit/f6a92f28d137323230e603982c623c2fff46e524))
|
|
230
|
+
* **claude:** 移除 .claude 目录及其 .gitignore 配置文件 ([91916a9](https://git.bjxgj.com/xgj/spaceflow/commit/91916a99f65da31c1d34e6f75b5cbea1d331ba35))
|
|
231
|
+
* **cli:** 优化依赖安装流程并支持 .spaceflow 目录配置 ([5977631](https://git.bjxgj.com/xgj/spaceflow/commit/597763183eaa61bb024bba2703d75239650b54fb))
|
|
232
|
+
* **cli:** 拆分 CLI 为独立包并重构扩展加载机制 ([b385d28](https://git.bjxgj.com/xgj/spaceflow/commit/b385d281575f29b823bb6dc4229a396a29c0e226))
|
|
233
|
+
* **cli:** 移除 ExtensionModule 并优化扩展加载机制 ([8f7077d](https://git.bjxgj.com/xgj/spaceflow/commit/8f7077deaef4e5f4032662ff5ac925cd3c07fdb6))
|
|
234
|
+
* **cli:** 调整依赖顺序并格式化导入语句 ([32a9c1c](https://git.bjxgj.com/xgj/spaceflow/commit/32a9c1cf834725a20f93b1f8f60b52692841a3e5))
|
|
235
|
+
* **cli:** 重构 getPluginConfigFromPackageJson 方法以提高代码可读性 ([f5f6ed9](https://git.bjxgj.com/xgj/spaceflow/commit/f5f6ed9858cc4ca670e30fac469774bdc8f7b005))
|
|
236
|
+
* **cli:** 重构扩展配置格式,支持 flow/command/skill 三种导出类型 ([958dc13](https://git.bjxgj.com/xgj/spaceflow/commit/958dc130621f78bbcc260224da16a5f16ae0b2b1))
|
|
237
|
+
* **config:** 实现多层级配置文件合并机制 ([bce517f](https://git.bjxgj.com/xgj/spaceflow/commit/bce517f8541679e26c21926dc19f868ef525b2ec))
|
|
238
|
+
* **config:** 降低并发数以优化 AI 审查性能 ([052dd72](https://git.bjxgj.com/xgj/spaceflow/commit/052dd728f759da0a31e86a0ad480e9bb35052781))
|
|
239
|
+
* **core:** 为 build/clear/commit 命令添加国际化支持 ([de82cb2](https://git.bjxgj.com/xgj/spaceflow/commit/de82cb2f1ed8cef0e446a2d42a1bf1f091e9c421))
|
|
240
|
+
* **core:** 优化 list 命令输出格式并修复 MCP Inspector 包管理器兼容性 ([a019829](https://git.bjxgj.com/xgj/spaceflow/commit/a019829d3055c083aeb86ed60ce6629d13012d91))
|
|
241
|
+
* **core:** 优化配置合并逻辑,添加字段覆盖策略 ([18680e6](https://git.bjxgj.com/xgj/spaceflow/commit/18680e69b0d6e9e05c843ed3f07766830955d658))
|
|
242
|
+
* **core:** 将 rspack 配置和工具函数中的 @spaceflow/cli 引用改为 @spaceflow/core ([3c301c6](https://git.bjxgj.com/xgj/spaceflow/commit/3c301c60f3e61b127db94481f5a19307f5ef00eb))
|
|
243
|
+
* **core:** 将扩展依赖从 @spaceflow/cli 迁移到 @spaceflow/core ([6f9ffd4](https://git.bjxgj.com/xgj/spaceflow/commit/6f9ffd4061cecae4faaf3d051e3ca98a0b42b01f))
|
|
244
|
+
* **core:** 提取 source 处理和包管理器工具函数到共享模块 ([ab3ff00](https://git.bjxgj.com/xgj/spaceflow/commit/ab3ff003d1cd586c0c4efc7841e6a93fe3477ace))
|
|
245
|
+
* **core:** 新增 getEnvFilePaths 工具函数统一管理 .env 文件路径优先级 ([809fa18](https://git.bjxgj.com/xgj/spaceflow/commit/809fa18f3d0b8eabcb068988bab53d548eaf03ea))
|
|
246
|
+
* **core:** 新增远程仓库规则拉取功能并支持 Git API 获取目录内容 ([69ade16](https://git.bjxgj.com/xgj/spaceflow/commit/69ade16c9069f9e1a90b3ef56dc834e33a3c0650))
|
|
247
|
+
* **core:** 统一 LogLevel 类型定义并支持字符串/数字双模式 ([557f6b0](https://git.bjxgj.com/xgj/spaceflow/commit/557f6b0bc39fcfb0e3f773836cbbf08c1a8790ae))
|
|
248
|
+
* **core:** 重构Gitea SDK分支保护逻辑 ([df5b491](https://git.bjxgj.com/xgj/spaceflow/commit/df5b49141a4f146e74a37a72c9faf03b959d97c1))
|
|
249
|
+
* **core:** 重构publish配置项命名 ([18c68da](https://git.bjxgj.com/xgj/spaceflow/commit/18c68daab474eb69eb61a7103831c02f43341e38))
|
|
250
|
+
* **core:** 重构安装服务目录结构和命名 ([50cc900](https://git.bjxgj.com/xgj/spaceflow/commit/50cc900eb864b23f20c5f48dec20d1a754238286))
|
|
251
|
+
* **core:** 重构配置管理系统,引入统一配置加载器 ([992a661](https://git.bjxgj.com/xgj/spaceflow/commit/992a66108ae808140e8e4d18ab402f924a2479aa))
|
|
252
|
+
* **core:** 重构配置管理逻辑,集中配置操作到 spaceflow.config.ts ([f1f2ade](https://git.bjxgj.com/xgj/spaceflow/commit/f1f2ade6fe032303403d8a942e3f937b4b24d9b6))
|
|
253
|
+
* **core:** 重构配置读取逻辑,新增 ConfigReaderService 并支持 .spaceflowrc 配置文件 ([72e88ce](https://git.bjxgj.com/xgj/spaceflow/commit/72e88ced63d03395923cdfb113addf4945162e54))
|
|
254
|
+
* **i18n:** 将 locales 导入从命令文件迁移至扩展入口文件 ([0da5d98](https://git.bjxgj.com/xgj/spaceflow/commit/0da5d9886296c4183b24ad8c56140763f5a870a4))
|
|
255
|
+
* **i18n:** 移除扩展元数据中的 locales 字段并改用 side-effect 自动注册 ([2c7d488](https://git.bjxgj.com/xgj/spaceflow/commit/2c7d488a9dfa59a99b95e40e3c449c28c2d433d8))
|
|
256
|
+
* **mcp:** 使用 DTO + Swagger 装饰器替代手动 JSON Schema 定义 ([87ec262](https://git.bjxgj.com/xgj/spaceflow/commit/87ec26252dd295536bb090ae8b7e418eec96e1bd))
|
|
257
|
+
* **mcp:** 升级 MCP SDK API 并优化 Inspector 调试配置 ([176d04a](https://git.bjxgj.com/xgj/spaceflow/commit/176d04a73fbbb8d115520d922f5fedb9a2961aa6))
|
|
258
|
+
* **mcp:** 将 MCP 元数据存储从 Reflect Metadata 改为静态属性以支持跨模块访问 ([cac0ea2](https://git.bjxgj.com/xgj/spaceflow/commit/cac0ea2029e1b504bc4278ce72b3aa87fff88c84))
|
|
259
|
+
* **publish:** 优化 monorepo 模式下的路径处理逻辑 ([a563174](https://git.bjxgj.com/xgj/spaceflow/commit/a5631742e12e6c3f55962b8259de9b2d2b21bfce))
|
|
260
|
+
* **publish:** 修正 pnpm publish 命令执行目录 ([8bf2897](https://git.bjxgj.com/xgj/spaceflow/commit/8bf2897493c315a5356c8e29393c2806dc1300be))
|
|
261
|
+
* **publish:** 切换到包目录执行 release-it 以确保读取正确的 package.json ([0e49e67](https://git.bjxgj.com/xgj/spaceflow/commit/0e49e6764b269616756a71fe3b7ec41d43bc819c))
|
|
262
|
+
* **publish:** 改进错误处理和 npm 配置逻辑 ([fe11eb1](https://git.bjxgj.com/xgj/spaceflow/commit/fe11eb1326cdbeced6b3b7cf67e00dc0205b9f39))
|
|
263
|
+
* **publish:** 更新 Git 配置和推送白名单逻辑 ([9f992d3](https://git.bjxgj.com/xgj/spaceflow/commit/9f992d31d6adc30f964d66a932ebd06b0c26df19))
|
|
264
|
+
* **publish:** 禁用分支锁定功能 ([b2f8423](https://git.bjxgj.com/xgj/spaceflow/commit/b2f84233165d1ceab314667094b9e4d2d0df6e6b))
|
|
265
|
+
* **publish:** 简化发布命令,移除 pkgName 参数 ([31ab468](https://git.bjxgj.com/xgj/spaceflow/commit/31ab4689e0aefd4843bfc6b8d65b38ecd5e288f7))
|
|
266
|
+
* **publish:** 调整zod依赖的导入来源 ([574eef1](https://git.bjxgj.com/xgj/spaceflow/commit/574eef1910809a72a4b13acd4cb070e12dc42ce8))
|
|
267
|
+
* **publish:** 调整包变更检测的日志输出格式 ([df35e92](https://git.bjxgj.com/xgj/spaceflow/commit/df35e92d614ce59e202643cf34a0fef2803412a1))
|
|
268
|
+
* **review:** 优化 Markdown 格式化器的代码风格和 JSON 数据输出逻辑 ([ca1b0c9](https://git.bjxgj.com/xgj/spaceflow/commit/ca1b0c96d9d0663a8b8dc93b4a9f63d4e5590df0))
|
|
269
|
+
* **review:** 优化 override 和变更行过滤的日志输出,增强调试信息的可读性 ([9a7c6f5](https://git.bjxgj.com/xgj/spaceflow/commit/9a7c6f5b4ef2b8ae733fa499a0e5ec82feebc1d2))
|
|
270
|
+
* **review:** 优化历史 issue commit 匹配逻辑,支持短 SHA 与完整 SHA 的前缀匹配 ([e30c6dd](https://git.bjxgj.com/xgj/spaceflow/commit/e30c6ddefb14ec6631ce341f1d45c59786e94a46))
|
|
271
|
+
* **review:** 使用 Base64 编码存储审查数据,避免 JSON 格式在 Markdown 中被转义 ([fb91e30](https://git.bjxgj.com/xgj/spaceflow/commit/fb91e30d0979cfe63ed8e7657c578db618b5e783))
|
|
272
|
+
* **review:** 基于 fileContents 实际 commit hash 验证问题归属,替代依赖 LLM 填写的 commit 字段 ([de3e377](https://git.bjxgj.com/xgj/spaceflow/commit/de3e3771eb85ff93200c63fa9feb38941914a07d))
|
|
273
|
+
* **review:** 新增测试方法用于验证 PR 审查功能 ([5c57833](https://git.bjxgj.com/xgj/spaceflow/commit/5c578332cedffb7fa7e5ad753a788bcd55595c68))
|
|
274
|
+
* **review:** 移除 filterNoCommit 配置项,统一使用基于 commit hash 的问题过滤逻辑 ([82429b1](https://git.bjxgj.com/xgj/spaceflow/commit/82429b1072affb4f2b14d52f99887e12184d8218))
|
|
275
|
+
* **review:** 移除测试方法 testMethod ([21e9938](https://git.bjxgj.com/xgj/spaceflow/commit/21e9938100c5dd7d4eada022441c565b5c41a55a))
|
|
276
|
+
* **review:** 简化历史问题处理策略,将行号更新改为标记变更文件问题为无效 ([5df7f00](https://git.bjxgj.com/xgj/spaceflow/commit/5df7f0087c493e104fe0dc054fd0b6c19ebe3500))
|
|
277
|
+
* **review:** 简化行号更新逻辑,使用最新 commit diff 替代增量 diff ([6de7529](https://git.bjxgj.com/xgj/spaceflow/commit/6de7529c90ecbcee82149233fc01c393c5c4e7f7))
|
|
278
|
+
* **review:** 统一使用 parseLineRange 方法解析行号,避免重复的正则匹配逻辑 ([c64f96a](https://git.bjxgj.com/xgj/spaceflow/commit/c64f96aa2e1a8e22dcd3e31e1a2acc1bb338a1a8))
|
|
279
|
+
* **review:** 调整 filterIssuesByValidCommits 逻辑,保留无 commit 的 issue 交由 filterNoCommit 配置处理 ([e9c5d47](https://git.bjxgj.com/xgj/spaceflow/commit/e9c5d47aebef42507fd9fcd67e5eab624437e81a))
|
|
280
|
+
* **review:** 调整zod依赖的导入路径 ([02014cd](https://git.bjxgj.com/xgj/spaceflow/commit/02014cdab9829df583f0f621150573b8c45a3ad7))
|
|
281
|
+
* **review:** 过滤 merge commits,避免在代码审查中处理合并提交 ([d7c647c](https://git.bjxgj.com/xgj/spaceflow/commit/d7c647c33156a58b42bfb45a67417723b75328c6))
|
|
282
|
+
* **review:** 过滤非 PR commits 的问题,避免 merge commit 引入的代码被审查 ([9e20f54](https://git.bjxgj.com/xgj/spaceflow/commit/9e20f54d57e71725432dfb9e7c943946aa6677d4))
|
|
283
|
+
* **review:** 重构review模块LLM配置获取方式 ([ec7346f](https://git.bjxgj.com/xgj/spaceflow/commit/ec7346f3dd3e367015e63df7191d0e06ef15e0ef))
|
|
284
|
+
* **review:** 重构行号更新逻辑,使用增量 diff 替代全量 diff ([d4f4304](https://git.bjxgj.com/xgj/spaceflow/commit/d4f4304e1e41614f7be8946d457eea1cf4e202fb))
|
|
285
|
+
* **test:** 迁移测试框架从 Jest 到 Vitest ([308f9d4](https://git.bjxgj.com/xgj/spaceflow/commit/308f9d49089019530588344a5e8880f5b6504a6a))
|
|
286
|
+
* **verbose:** 扩展 verbose 级别支持至 3 ([c1a0808](https://git.bjxgj.com/xgj/spaceflow/commit/c1a080859e5d25ca1eb3dc7e00a67b32eb172635))
|
|
287
|
+
* 为 cursor 和 windsurf 编辑器新增插件命令文档和 skills 符号链接 ([2a08f4d](https://git.bjxgj.com/xgj/spaceflow/commit/2a08f4dfdc56bb09c736d762e221498729c12a55))
|
|
288
|
+
* 为代码审查提示添加文件目录树上下文,帮助 LLM 理解文件所在位置 ([0d66dd6](https://git.bjxgj.com/xgj/spaceflow/commit/0d66dd69736194a682b2570554cf90596d21f390))
|
|
289
|
+
* 为建议代码块添加可折叠的 details 标签,优化长代码建议的展示效果 ([376a3cd](https://git.bjxgj.com/xgj/spaceflow/commit/376a3cd54b9db343d83d8bfa5c1f1b3e4bdb8791))
|
|
290
|
+
* 为问题验证功能新增有效性判断,支持识别误报并在提示词中包含规则定义 ([6a3fe7b](https://git.bjxgj.com/xgj/spaceflow/commit/6a3fe7b82e6e8aa017b9accb6168eb1eb7884fad))
|
|
291
|
+
* 从 core 模块中移除 ReviewModule 导入,完成 review 命令插件化迁移 ([9a65fc7](https://git.bjxgj.com/xgj/spaceflow/commit/9a65fc7096c037df9049ec6893614e53036ee23f))
|
|
292
|
+
* 优化 AI Review 发布逻辑,将主评论与行级评论合并为单个 PR Review 提交 ([1ea0ee0](https://git.bjxgj.com/xgj/spaceflow/commit/1ea0ee08378ed1735da4f7ab195f168b7014e5d8))
|
|
293
|
+
* 优化 AI Review 审查流程,支持增量审查和分阶段报告提交 ([7ccbcbc](https://git.bjxgj.com/xgj/spaceflow/commit/7ccbcbca93e4cca86e749ba4b2ce50ef309a5de5))
|
|
294
|
+
* 优化 AI Review 输出格式处理逻辑,避免重复格式化并隐藏终端输出中的评审数据 ([c77d886](https://git.bjxgj.com/xgj/spaceflow/commit/c77d88648fe1de7c6d7b071eea0f17f38a3f696b))
|
|
295
|
+
* 优化 Claude Agent 模式的删除代码影响分析提示词和工具日志 ([ef59329](https://git.bjxgj.com/xgj/spaceflow/commit/ef59329a9865dab2220946ec94cc04afd0a3afc3))
|
|
296
|
+
* 优化 Claude Agent 模式的删除代码影响分析提示词和工具配置 ([fb02bcc](https://git.bjxgj.com/xgj/spaceflow/commit/fb02bcc75f5466c3e6e29e3ae6007f5149efde11))
|
|
297
|
+
* 优化 getFileBlame 方法的 git blame 命令实现,使用 awk 替代 grep 和 cut 组合 ([9274601](https://git.bjxgj.com/xgj/spaceflow/commit/9274601c68cfce7e9c1b7bbd80d7da287460a819))
|
|
298
|
+
* 优化 getFileBlame 方法的 git blame 输出解析,使用 TypeScript 原生字符串处理替代 awk 命令 ([7931b47](https://git.bjxgj.com/xgj/spaceflow/commit/7931b47388a090d96a6a61bb85199b88d210c73a))
|
|
299
|
+
* 优化 Markdown 格式化器的审查报告布局,调整章节结构并压缩 JSON 数据输出 ([d79373c](https://git.bjxgj.com/xgj/spaceflow/commit/d79373c67632659a856f72e08783d7206f9cd423))
|
|
300
|
+
* 优化 normalizeIssues 方法,为拆分后的多行 issue 添加建议引用逻辑 ([9fc25a4](https://git.bjxgj.com/xgj/spaceflow/commit/9fc25a4f30989ad25e5d0f8985ac7e122d45db3a))
|
|
301
|
+
* 优化 OpenCode 适配器服务器生命周期管理,支持动态端口分配和进程退出清理 ([5a11e36](https://git.bjxgj.com/xgj/spaceflow/commit/5a11e3625ead0aa1e5266eadb1223a7d3cffb14e))
|
|
302
|
+
* 优化 postOrUpdateReviewComment 方法参数,将 comment 字符串改为 ReviewResult 对象并在方法内部格式化 ([b225cfa](https://git.bjxgj.com/xgj/spaceflow/commit/b225cfa662512c5f836b7833a0c0b2f1915f8a0e))
|
|
303
|
+
* 优化 PR commits 获取和文件关联逻辑,使用行号映射精确匹配相关 commits ([9f7bdc3](https://git.bjxgj.com/xgj/spaceflow/commit/9f7bdc310f6101e38504133c491870f9eecc97e9))
|
|
304
|
+
* 优化 PR Review 发布逻辑,过滤已修复问题并移除评论标记 ([ce4e49c](https://git.bjxgj.com/xgj/spaceflow/commit/ce4e49cc5dfaa3d7e13a52190005515b7ce28236))
|
|
305
|
+
* 优化 review-spec 服务错误处理,目录不存在时静默跳过而非警告 ([584b878](https://git.bjxgj.com/xgj/spaceflow/commit/584b8783b75fa398d70d43bca8a1337c15c4e7eb))
|
|
306
|
+
* 优化CI发布工作流的GITEA_TOKEN配置 ([c5a6e2f](https://git.bjxgj.com/xgj/spaceflow/commit/c5a6e2f60b1679c9eed96a169b48430a2d0e7a92))
|
|
307
|
+
* 优化CI发布工作流的GITEA_TOKEN配置 ([ae69ead](https://git.bjxgj.com/xgj/spaceflow/commit/ae69eadc4ce76c453b552c829281acd99070b7e9))
|
|
308
|
+
* 优化publish工作流环境变量配置 ([3d83e9f](https://git.bjxgj.com/xgj/spaceflow/commit/3d83e9f559d9cf0fac9d46b06b9a22e2ab9590d7))
|
|
309
|
+
* 优化代码审查提示中的 commit hash 标注逻辑,在浅克隆场景下回退到 patch diff 模式 ([84bf231](https://git.bjxgj.com/xgj/spaceflow/commit/84bf23187cf7ba3bcf493f681d9a38e1fa9a5919))
|
|
310
|
+
* 优化分支保护操作的返回消息文案 ([3e3dade](https://git.bjxgj.com/xgj/spaceflow/commit/3e3dadeb06dafac61a7141432d85d0b51de8f842))
|
|
311
|
+
* 优化删除代码影响分析,支持通过 PR diff API 获取差异并新增 diff 文本解析方法 ([3814887](https://git.bjxgj.com/xgj/spaceflow/commit/3814887c34ab9e16df96260fc5252fb19cf00248))
|
|
312
|
+
* 优化删除代码影响分析报告的折叠展示,将整个详情区域改为可折叠 ([fa5ba3e](https://git.bjxgj.com/xgj/spaceflow/commit/fa5ba3e3ef7079fcec7da754894d2b6fcc482e14))
|
|
313
|
+
* 优化删除代码影响分析的分支引用解析,支持自动 fetch 远程分支并添加详细日志 ([905122e](https://git.bjxgj.com/xgj/spaceflow/commit/905122e4ed9f89eecb62db9586c32437b27242cf))
|
|
314
|
+
* 优化审查报告格式,支持区分有效问题和无效问题的展示 ([1b2a7be](https://git.bjxgj.com/xgj/spaceflow/commit/1b2a7be5923dace2603f7bf35b645318bfcab211))
|
|
315
|
+
* 优化审查提示词构建逻辑,支持按文件过滤规则并为每个文件生成独立的 systemPrompt ([9181b55](https://git.bjxgj.com/xgj/spaceflow/commit/9181b55212c74f92ce1bd61be75aead6322321e8))
|
|
316
|
+
* 优化审查结果展示格式,统一文件摘要和总结部分的 Markdown 样式 ([94a3bc2](https://git.bjxgj.com/xgj/spaceflow/commit/94a3bc289018c595036baf8884b69ceff2085145))
|
|
317
|
+
* 优化审查结果展示格式,调整严重程度图标和行号类型 ([28a8172](https://git.bjxgj.com/xgj/spaceflow/commit/28a817276f2a3ef061050fb2606f6727375e84bf))
|
|
318
|
+
* 优化建议代码块展示逻辑,仅对超过 3 行的代码使用折叠标签 ([6b86b74](https://git.bjxgj.com/xgj/spaceflow/commit/6b86b7427efc6777b20713d7afcd640dac3aea9e))
|
|
319
|
+
* 优化建议代码块格式化,自动清理嵌套的代码块标记 ([393292a](https://git.bjxgj.com/xgj/spaceflow/commit/393292a82457d90f737ffb3458226034616d843e))
|
|
320
|
+
* 优化建议代码块清理的正则表达式,支持更多边界情况 ([354cff3](https://git.bjxgj.com/xgj/spaceflow/commit/354cff30311d22da0f6fad134abb47e8053f9d32))
|
|
321
|
+
* 优化文件内容存储结构,将行号到 commit 映射集成到文件内容中 ([b98a044](https://git.bjxgj.com/xgj/spaceflow/commit/b98a044e5f941d84c02bbb1a567c801b39ae1646))
|
|
322
|
+
* 优化文件摘要格式,支持多行摘要的缩进展示 ([e57327a](https://git.bjxgj.com/xgj/spaceflow/commit/e57327a5f4737e01d6f555437e680b26a9d55bcc))
|
|
323
|
+
* 优化构建流程并调整 MCP/review 日志输出级别 ([74072c0](https://git.bjxgj.com/xgj/spaceflow/commit/74072c04be7a45bfc0ab53b636248fe5c0e1e42a))
|
|
324
|
+
* 优化构建脚本执行顺序,确保 spaceflow 核心包优先构建 ([18de03e](https://git.bjxgj.com/xgj/spaceflow/commit/18de03e9dd03081404b3cdf78213d20bceeec8a5))
|
|
325
|
+
* 优化细节的逻辑 ([4aa2a91](https://git.bjxgj.com/xgj/spaceflow/commit/4aa2a916b4b9287df73845db4420e5b31a3d97f7))
|
|
326
|
+
* 优化行号映射构建的日志输出控制和多行问题建议的文件路径显示 ([6e8c2a0](https://git.bjxgj.com/xgj/spaceflow/commit/6e8c2a0c5fe6b8441a88565c3ed39ec724a8d0c3))
|
|
327
|
+
* 优化行号映射构建过程的日志输出和错误处理 ([f699ccc](https://git.bjxgj.com/xgj/spaceflow/commit/f699ccc614840f49ee1c77d73e4cc288ba129aec))
|
|
328
|
+
* 优化行号映射构建逻辑,新增浅克隆场景下的回退机制和 diff 文本解析方法 ([a1a5912](https://git.bjxgj.com/xgj/spaceflow/commit/a1a5912b5e9db7f4cce0a83ef02261703fbb5e36))
|
|
329
|
+
* 优化行级评论格式,与 markdown.formatter.ts 保持一致的样式布局 ([9ddf9f6](https://git.bjxgj.com/xgj/spaceflow/commit/9ddf9f61bc7a2080a3f4f6f8ee6f823e3d77993e))
|
|
330
|
+
* 优化问题去重和验证逻辑,支持无效问题的覆盖和跳过复查 ([ef45dff](https://git.bjxgj.com/xgj/spaceflow/commit/ef45dffa38f5bec1c30f5ea3d5d7dfc077cb6b57))
|
|
331
|
+
* 优化问题验证提示词,明确 fixed 字段的判断标准和输出要求 ([c39e93d](https://git.bjxgj.com/xgj/spaceflow/commit/c39e93df4c56172710cdffc7949776e795e6d6fc))
|
|
332
|
+
* 使用 Claude Agent SDK 替代 CLI 调用方式 ([3d704ce](https://git.bjxgj.com/xgj/spaceflow/commit/3d704ce303293374f0378711c1bb22bff9c989bf))
|
|
333
|
+
* 使用 parallel 库重构问题验证流程,优化并发控制和进度反馈 ([ed15099](https://git.bjxgj.com/xgj/spaceflow/commit/ed15099b06439c17f2357fc8aa544ec0b3f2a415))
|
|
334
|
+
* 修复 OpenCode 适配器 provider 配置,使用自定义 provider ID 避免 SDK 方法冲突 ([32a5927](https://git.bjxgj.com/xgj/spaceflow/commit/32a5927f28d4c75685c6580bf889177faa6504fb))
|
|
335
|
+
* 修复问题标题中的严重性图标显示逻辑,避免有效问题同时显示✅和严重性图标 ([caa5998](https://git.bjxgj.com/xgj/spaceflow/commit/caa59983691df56c657b333aff1e946753397948))
|
|
336
|
+
* 修复问题标题中的图标显示逻辑,将 valid 字段改为 fixed 字段判断 ([1f93b4f](https://git.bjxgj.com/xgj/spaceflow/commit/1f93b4f840291cb951d2a4cf07a5442bd8b0e455))
|
|
337
|
+
* 修改 git diff 语法从三点改为两点,避免浅克隆时找不到 merge base ([965786e](https://git.bjxgj.com/xgj/spaceflow/commit/965786eec9f9071c69029c942c1782a3bac11d91))
|
|
338
|
+
* 修改名称 ([0247e73](https://git.bjxgj.com/xgj/spaceflow/commit/0247e7347c7726671048a1c20dd464eff92d83f2))
|
|
339
|
+
* 删除 ci-publish 命令相关文件 ([a4713ee](https://git.bjxgj.com/xgj/spaceflow/commit/a4713ee120d840e85a04dcf529fd192fc589a241))
|
|
340
|
+
* 升级 pr-review 工作流运行环境至 ubuntu-node-24 并移除容器用户配置 ([0c4c840](https://git.bjxgj.com/xgj/spaceflow/commit/0c4c840ff2c44648866f6b0d4e91a6f3ed128929))
|
|
341
|
+
* 在 actions-test 工作流中新增 LLM 服务环境变量配置 ([d9651a2](https://git.bjxgj.com/xgj/spaceflow/commit/d9651a26d295f9852a351fbb73d6b52b4d964d52))
|
|
342
|
+
* 在 actions-test 工作流中新增 pnpm 环境配置步骤 ([e8377e7](https://git.bjxgj.com/xgj/spaceflow/commit/e8377e73ab21d6162d99708fe082e9579ac1aceb))
|
|
343
|
+
* 在 AI Review 流程中新增 fillIssueCode 方法,自动填充问题对应的代码片段 ([bb7cd9b](https://git.bjxgj.com/xgj/spaceflow/commit/bb7cd9b8a5a9e2dd1b62ca3265c18ab0064fe073))
|
|
344
|
+
* 在 AI 代码审查配置中新增删除代码分析模式为 claude-code ([2ece119](https://git.bjxgj.com/xgj/spaceflow/commit/2ece1190bb3e1f06f87ea62fbc77d08c69c1f1ef))
|
|
345
|
+
* 在 claude-setup 服务中新增 authToken 必填校验,未配置时抛出错误 ([8283b5c](https://git.bjxgj.com/xgj/spaceflow/commit/8283b5c4c453cb770d4ac1e2f8ef6a11078c6dbf))
|
|
346
|
+
* 在 claude-setup 服务中新增详细日志输出,显示即将写入的配置内容 ([69f95a3](https://git.bjxgj.com/xgj/spaceflow/commit/69f95a3dda8edfe4f4caaadd75fe5000d57c0a58))
|
|
347
|
+
* 在 JS/TS 基础规范中明确魔法值检查范围,排除布尔和日期类型 ([df65aa8](https://git.bjxgj.com/xgj/spaceflow/commit/df65aa82e12863d139d8953b095b740da04b06fc))
|
|
348
|
+
* 在 normalizeIssues 中为问题添加发现时间,并在 Markdown 格式化器中展示发现时间和修复时间 ([224679c](https://git.bjxgj.com/xgj/spaceflow/commit/224679cbca9315d0c7730bf7d5fce4a520329829))
|
|
349
|
+
* 在 normalizeIssues 方法中新增 line 字段类型转换,确保 LLM 返回的数字类型被转为字符串 ([18e61db](https://git.bjxgj.com/xgj/spaceflow/commit/18e61dbe5326dd7d5a185ab731af24cc1eec6dc4))
|
|
350
|
+
* 在 PR 审查和命令测试工作流中新增 Git 凭证配置和子模块递归克隆支持 ([d544828](https://git.bjxgj.com/xgj/spaceflow/commit/d544828f09ee2e8c1626539e695fd2ed76afdf41))
|
|
351
|
+
* 在 PR 评论指令工作流中新增 claude-code 全局依赖安装 ([c103696](https://git.bjxgj.com/xgj/spaceflow/commit/c103696e01d8b97ec85f598f54ff12d79e9e3d99))
|
|
352
|
+
* 在 TODO 列表中新增 skills 自动修复 BUG 功能项 ([a153c6f](https://git.bjxgj.com/xgj/spaceflow/commit/a153c6f89ca617c21ecc8c7384620ee0e090393a))
|
|
353
|
+
* 在 Vue 代码审查规范中新增文件匹配规则,明确适用于 *.vue 文件 ([431ff38](https://git.bjxgj.com/xgj/spaceflow/commit/431ff38903f5b1ab81757ed5de86a4fc90f4afe1))
|
|
354
|
+
* 在代码审查提示中添加 git blame 信息,为每行代码标注对应的 commit hash ([e400acd](https://git.bjxgj.com/xgj/spaceflow/commit/e400acd155d24b74160b056cc64c0873f62aca23))
|
|
355
|
+
* 在全局和本地安装模式下为 commands 生成文档到 .claude/commands 目录 ([c99a61a](https://git.bjxgj.com/xgj/spaceflow/commit/c99a61ae8d6dd5088f3c1641a068171111ec4dbb))
|
|
356
|
+
* 在全局安装模式下将 skills 链接到 ~/.claude/skills 目录,并在目标路径生成 SKILL.md ([c92c0ca](https://git.bjxgj.com/xgj/spaceflow/commit/c92c0cac206e9526c61da444930a7fa5ce0c5940))
|
|
357
|
+
* 在历史问题修复验证中新增 valid 字段过滤,排除已标记为无效的问题 ([939fd19](https://git.bjxgj.com/xgj/spaceflow/commit/939fd19a851a5ac4bd23501547b98df4a8383dbb))
|
|
358
|
+
* 在命令测试工作流中新增环境变量配置,支持 Claude Code 和 OpenAI API 调用 ([0ae9b4c](https://git.bjxgj.com/xgj/spaceflow/commit/0ae9b4c5e1b066de77e53febae3d1f9f4463e90a))
|
|
359
|
+
* 在审查结果中新增 round 字段,记录问题发现的审查轮次 ([a079c37](https://git.bjxgj.com/xgj/spaceflow/commit/a079c3779ee7fe8fea4212172723c3adb7af64e4))
|
|
360
|
+
* 在所有命令中新增 --verbose 选项支持控制日志输出详细程度 ([d98fa88](https://git.bjxgj.com/xgj/spaceflow/commit/d98fa88e24657bda1edd9227ee57e7b511a30a86))
|
|
361
|
+
* 在文件审查结果中为问题添加发现时间戳,确保所有问题都有 date 字段 ([be748c7](https://git.bjxgj.com/xgj/spaceflow/commit/be748c70fe6508c4cf598376a6c69c87e27a2236))
|
|
362
|
+
* 在文件摘要统计中过滤无效问题,避免统计已确认无效的问题 ([432ced9](https://git.bjxgj.com/xgj/spaceflow/commit/432ced90466c9d0cba07ef41d7b256fbabe0b416))
|
|
363
|
+
* 在构建流程中新增 pnpm install 步骤,确保核心包构建后依赖正确安装 ([378c649](https://git.bjxgj.com/xgj/spaceflow/commit/378c64947da55c59dcdd1f1183e156d3c1b74263))
|
|
364
|
+
* 在行级评论中新增文件路径和行号信息展示 ([78abaae](https://git.bjxgj.com/xgj/spaceflow/commit/78abaae270be466f427f0020f3b1abd9c884a2a3))
|
|
365
|
+
* 在规范示例标题中添加英文标注,将"推荐做法"改为"推荐做法 (Good)","不推荐做法"改为"不推荐做法 (Bad)" ([8a51866](https://git.bjxgj.com/xgj/spaceflow/commit/8a51866bfb522a9f3b256f2a57a495de9b8fd542))
|
|
366
|
+
* 在魔法值检查规则中新增说明,明确无需检查单词拼写完整性 ([04d0485](https://git.bjxgj.com/xgj/spaceflow/commit/04d048521206c89795678a4f68f31bf066491121))
|
|
367
|
+
* 实现插件系统核心功能,支持 npm 包和 git 子模块两种技能包安装方式 ([65a413a](https://git.bjxgj.com/xgj/spaceflow/commit/65a413afaca40f524af532ada29edb1d14e7078d))
|
|
368
|
+
* 将 .spaceflow/package.json 纳入版本控制并自动添加到根项目依赖 ([ab83d25](https://git.bjxgj.com/xgj/spaceflow/commit/ab83d2579cb5414ee3d78a9768fac2147a3d1ad9))
|
|
369
|
+
* 将 AI Review 历史结果获取从 Issue Comment 改为 PR Review API ([6bf04ad](https://git.bjxgj.com/xgj/spaceflow/commit/6bf04adc5deaa7f3bfeca2b51e65e9aefee33857))
|
|
370
|
+
* 将 AI 代码审查模型从 doubao-seed-code-preview-251028 切换为 deepseek-v3-2-251201 ([f0844a4](https://git.bjxgj.com/xgj/spaceflow/commit/f0844a45f6313b4c1fbf5c4bd8f9d5e374959141))
|
|
371
|
+
* 将 AI 代码审查模式从 claude-code 切换回 openai,并同时保留两种 LLM 配置的环境变量 ([7bc231e](https://git.bjxgj.com/xgj/spaceflow/commit/7bc231eb4b05cf1f22d03dc6d62522c851f6ea43))
|
|
372
|
+
* 将 AI 代码审查模式从 openai 切换为 claude-code ([6ea1764](https://git.bjxgj.com/xgj/spaceflow/commit/6ea17641ac4754ce23ae52bae2f189a7ec74c083))
|
|
373
|
+
* 将 AI 代码审查默认模式从 openai 切换为 claude-code ([8b09765](https://git.bjxgj.com/xgj/spaceflow/commit/8b097657a4506d2d98396ce6f1f592ab526e59ef))
|
|
374
|
+
* 将 ai-review 命令重命名为 review,统一代码审查功能命名 ([12c4051](https://git.bjxgj.com/xgj/spaceflow/commit/12c40512d281159a6c0c9a25e480610810fd412e))
|
|
375
|
+
* 将 buildSpecsSection 方法移至 ReviewSpecService,统一规则格式化逻辑并优化问题验证提示词 ([6b5897e](https://git.bjxgj.com/xgj/spaceflow/commit/6b5897e6cb7e1739a710dd6d1f73b30a32d39e55))
|
|
376
|
+
* 将 ci-scripts 和 ci-shell 从 core 迁移到独立插件包,统一配置字段命名 ([5f79954](https://git.bjxgj.com/xgj/spaceflow/commit/5f799544a8bbe0f06f609af980539fc649118793))
|
|
377
|
+
* 将 Claude 配置逻辑提取为独立模块 ([8b3096c](https://git.bjxgj.com/xgj/spaceflow/commit/8b3096c14b7ab8c3737818eeed1f1e09d606ffda))
|
|
378
|
+
* 将 claude-setup 从 commands 目录迁移到 shared 目录,并新增配置备份恢复功能 ([a940a4f](https://git.bjxgj.com/xgj/spaceflow/commit/a940a4f4e5461bd2518908cd6c6e75cba00f57a5))
|
|
379
|
+
* 将 ensureGitHistory 调用提前至获取文件内容之前,确保 git blame 所需历史在文件读取前已补充完成 ([3a87a94](https://git.bjxgj.com/xgj/spaceflow/commit/3a87a945ddbec93cbbce232a3740f88b7d38e070))
|
|
380
|
+
* 将 Git 操作抽取为独立的 GitSdkService 模块 ([63a2a5c](https://git.bjxgj.com/xgj/spaceflow/commit/63a2a5c0f334adc61d2eb74a159f5bfba5ec7ca4))
|
|
381
|
+
* 将 GiteaSdkModule/GiteaSdkService 重命名为 GitProviderModule/GitProviderService ([462f492](https://git.bjxgj.com/xgj/spaceflow/commit/462f492bc2607cf508c5011d181c599cf17e00c9))
|
|
382
|
+
* 将 LLM 流式事件日志功能抽取为独立的 stream-logger 工具模块 ([5c81b9e](https://git.bjxgj.com/xgj/spaceflow/commit/5c81b9e821b5db9e6741142d4e5d361d8bce93c9))
|
|
383
|
+
* 将 LLM 配置移至 review 配置下,并将 claude 重命名为 claudeCode ([90d6bae](https://git.bjxgj.com/xgj/spaceflow/commit/90d6baefd03612e7636ab9c3de06aecfd1321ac4))
|
|
384
|
+
* 将 llmType 配置从顶层移至 review 配置块,新增 rules 字段支持规则级别覆盖 ([151ef9e](https://git.bjxgj.com/xgj/spaceflow/commit/151ef9e4a2baddee60b00c858ca2153091b0819e))
|
|
385
|
+
* 将 llmType 重命名为 llmMode,并新增删除代码分析模式配置 ([08d5c47](https://git.bjxgj.com/xgj/spaceflow/commit/08d5c47f471f3478f2686f1b8e465a11f74b4b48))
|
|
386
|
+
* 将 period-summary 命令从 core 迁移到独立插件包,实现插件化架构 ([ea349f4](https://git.bjxgj.com/xgj/spaceflow/commit/ea349f4329dc2e80eb0b8c6a9376505732c1055c))
|
|
387
|
+
* 将 PR 审查工作流的 AI 模型从 doubao-seed-code-preview-251028 切换为 glm-4-7-251222 ([6a7d465](https://git.bjxgj.com/xgj/spaceflow/commit/6a7d4650835a5b347ad4bc5935278ee887224d0d))
|
|
388
|
+
* 将 pr-review 命令重命名为 ai-review,统一代码审查功能的命名规范 ([152e8ed](https://git.bjxgj.com/xgj/spaceflow/commit/152e8ed58420bd497b0dadc760270871b90d950e))
|
|
389
|
+
* 将 Review Spec 相关配置和路径统一重命名为 references ([4e69b77](https://git.bjxgj.com/xgj/spaceflow/commit/4e69b779afc03e0ee404e57873e81d3fb9a7019f))
|
|
390
|
+
* 将 review 命令从 core 迁移到独立插件包,实现插件化架构 ([225bcf4](https://git.bjxgj.com/xgj/spaceflow/commit/225bcf4397b82f7d9834840be06a1f64da2fd8df))
|
|
391
|
+
* 将 review-spec 和 review-report 模块从 core 迁移到 review 插件包,完善类型导入路径 ([e24a99d](https://git.bjxgj.com/xgj/spaceflow/commit/e24a99d76bee96e7cad3d996aff426089a14c0df))
|
|
392
|
+
* 将 Rspack 配置文件从 CommonJS 迁移至 ESM 并移除 webpack-node-externals 依赖 ([2dfdc82](https://git.bjxgj.com/xgj/spaceflow/commit/2dfdc827f15d5d139f1179ac273e842423ef19b1))
|
|
393
|
+
* 将审查总结从字符串改为结构化的文件摘要数组,优化报告格式化逻辑 ([8adc314](https://git.bjxgj.com/xgj/spaceflow/commit/8adc314a8d4003ee34141dddfa04f658ef792504))
|
|
394
|
+
* 将所有服务和命令类的私有成员改为受保护成员,提升可扩展性 ([b0734e2](https://git.bjxgj.com/xgj/spaceflow/commit/b0734e264395be37045044195276ce082778daff))
|
|
395
|
+
* 将文件摘要格式从列表改为表格,提升审查报告的可读性 ([8b0010d](https://git.bjxgj.com/xgj/spaceflow/commit/8b0010d43a20ae8c8b579e50152f11d4990127c5))
|
|
396
|
+
* 将构建工具从 Nest CLI 迁移至 Rspack 并优化 TypeScript 导入语句 ([1b1b287](https://git.bjxgj.com/xgj/spaceflow/commit/1b1b2876fe768d340853203bb4475ecbebcb0257))
|
|
397
|
+
* 将项目名称从 gitea-flows 重命名为 spaceflow ([7b9fd8e](https://git.bjxgj.com/xgj/spaceflow/commit/7b9fd8e8293dea209f0a6996115e0c93f5638e63))
|
|
398
|
+
* 将项目级 references 目录中的代码规范文件全部删除 ([0ffe25f](https://git.bjxgj.com/xgj/spaceflow/commit/0ffe25f89334fa375e65d51fd2325f3ae6386ff7))
|
|
399
|
+
* 将项目级 review-spec 目录重命名为 references,与全局配置目录保持一致 ([ad81d78](https://git.bjxgj.com/xgj/spaceflow/commit/ad81d78d02c9882dfd33d283091f094132f4cc3d))
|
|
400
|
+
* 将默认 LLM 适配器从 Claude 改为 OpenAI,同时更新审查 Schema 中行号字段描述 ([749afb3](https://git.bjxgj.com/xgj/spaceflow/commit/749afb35942a63b7397e94d9d094c55ef548f53e))
|
|
401
|
+
* 恢复 pnpm catalog 配置并移除 .spaceflow 工作区导入器 ([217387e](https://git.bjxgj.com/xgj/spaceflow/commit/217387e2e8517a08162e9bcaf604893fd9bca736))
|
|
402
|
+
* 扩展 NestJS 代码规范,新增 proxy 和 model 文件类型及职责定义 ([f5127cc](https://git.bjxgj.com/xgj/spaceflow/commit/f5127cc8a4b6dae69901a6544ed7d5a2b1d0f956))
|
|
403
|
+
* 扩展 OpenCode 适配器流式事件处理,支持 agent、subtask、step 和 reasoning 类型 ([cc3a5ce](https://git.bjxgj.com/xgj/spaceflow/commit/cc3a5ce3e24b99a8fcfabc2e7bb24683107b5d1a))
|
|
404
|
+
* 扩展 Review Spec 加载路径,支持全局配置目录和配置文件指定 ([2ac27f7](https://git.bjxgj.com/xgj/spaceflow/commit/2ac27f7bdddf4a6cd71821c02386b78e9bb36c8f))
|
|
405
|
+
* 扩展删除代码分析配置,支持 ci、pr、terminal 三种环境模式 ([f43c842](https://git.bjxgj.com/xgj/spaceflow/commit/f43c8424829b1e45e855c6a59d1764d90fff3649))
|
|
406
|
+
* 扩展删除影响分析支持 open-code 模式,统一 Claude Agent 适配器配置 ([2d2f1e7](https://git.bjxgj.com/xgj/spaceflow/commit/2d2f1e767e5c5587b25d2c521319eefc8510a1c9))
|
|
407
|
+
* 提取审查报告格式化逻辑到独立模块,支持 Markdown、JSON 和 Terminal 多种输出格式 ([b590221](https://git.bjxgj.com/xgj/spaceflow/commit/b590221f89ccd6da6fd71502bb8fded5755c81cf))
|
|
408
|
+
* 支持从 issue_comment 事件中获取 PR 编号 ([e568afc](https://git.bjxgj.com/xgj/spaceflow/commit/e568afcb2088ffac1857115d04af0db28c0b1fde))
|
|
409
|
+
* 支持从配置文件读取删除代码影响分析选项,优化 PR 模式下的分支引用获取 ([ac5b725](https://git.bjxgj.com/xgj/spaceflow/commit/ac5b725898050902951de5abb376d72b26cb7348))
|
|
410
|
+
* 支持在 gitea-flows 配置中自定义 Gitea 主机地址 ([b430d06](https://git.bjxgj.com/xgj/spaceflow/commit/b430d06067fbc10fe5e2114c318d47b1131e3283))
|
|
411
|
+
* 新增 --show-all 选项支持显示所有问题,不过滤非变更行的问题 ([27c4b73](https://git.bjxgj.com/xgj/spaceflow/commit/27c4b73c4f626b4c69875e633f519d0f864c4d5a))
|
|
412
|
+
* 新增 AI 生成 PR 功能描述功能,支持通过 commit 记录和代码变更自动总结 PR 实现的功能 ([972cd8f](https://git.bjxgj.com/xgj/spaceflow/commit/972cd8ffff4ee6efc4166e0b3cda979d7de952ce))
|
|
413
|
+
* 新增 ci-publish 命令符号链接,更新 review-spec 子模块,并统一项目名称为 spaceflow ([688d729](https://git.bjxgj.com/xgj/spaceflow/commit/688d729814e4e55f7567b9b8772f48ec927650ab))
|
|
414
|
+
* 新增 create 命令支持从远程 Git 仓库获取模板,实现模板缓存机制 ([92dab7e](https://git.bjxgj.com/xgj/spaceflow/commit/92dab7eb481f3003435a8bc53f778e16916865ae))
|
|
415
|
+
* 新增 create 命令支持基于模板创建插件,实现命令型和技能型两种模板 ([3aff44f](https://git.bjxgj.com/xgj/spaceflow/commit/3aff44ffe0005cf9208435c20411c82063ed8365))
|
|
416
|
+
* 新增 deletionOnly 选项,支持仅执行删除代码分析模式 ([ee9d21f](https://git.bjxgj.com/xgj/spaceflow/commit/ee9d21f7d48e20713bb151b123760af3687348e5))
|
|
417
|
+
* 新增 filterIssuesByRuleExistence 方法,过滤不存在于规范中的问题 ([d3e0d60](https://git.bjxgj.com/xgj/spaceflow/commit/d3e0d609604c308897e9815e3f48d27582675e33))
|
|
418
|
+
* 新增 normalizeIssues 方法,自动拆分包含逗号的行号为多个独立 issue ([617ed4e](https://git.bjxgj.com/xgj/spaceflow/commit/617ed4e552771c0280a9966d1265b0b0927e8e0a))
|
|
419
|
+
* 新增 OpenCode LLM 适配器并启用 ESM 模块系统 ([d6ec569](https://git.bjxgj.com/xgj/spaceflow/commit/d6ec569c4c45198216071ba5f85b1285bcec5a30))
|
|
420
|
+
* 新增 OpenCode 适配器配置支持,实现 API Key 自动继承和模型格式标准化 ([cef2bfb](https://git.bjxgj.com/xgj/spaceflow/commit/cef2bfb7e7a932ceb71439e38eed60d7d09d1566))
|
|
421
|
+
* 新增 outputFormat 选项,支持指定审查报告输出格式 ([c89442a](https://git.bjxgj.com/xgj/spaceflow/commit/c89442a49a90cdcbb486c0d2717d2093b7bb2d04))
|
|
422
|
+
* 新增 resolveRef 方法支持智能解析 Git 引用,优化删除代码影响分析的分支引用处理 ([615fc2d](https://git.bjxgj.com/xgj/spaceflow/commit/615fc2db05020b9c9745c2df55b36f2ea80d302b))
|
|
423
|
+
* 新增 resolveRef 方法支持自动解析 Git 引用,优化 diff 和 log 命令的分支处理 ([e70fbbf](https://git.bjxgj.com/xgj/spaceflow/commit/e70fbbff58821ec63242a02b9befaa2479cde30e))
|
|
424
|
+
* 新增 review 命令符号链接,建立 .claude/commands 到 .spaceflow 的双向链接结构 ([df237e3](https://git.bjxgj.com/xgj/spaceflow/commit/df237e39db9b6e9e52e3088f66a9c2fd7dc0ce12))
|
|
425
|
+
* 新增 review 技能符号链接,完善插件配置,统一 JSON 格式化风格 ([87486d5](https://git.bjxgj.com/xgj/spaceflow/commit/87486d59792ec9cbae42de64731b5b5e0fa43830))
|
|
426
|
+
* 新增 runx 命令支持全局安装并运行依赖,重构 CLI 模块结构 ([ad9ae09](https://git.bjxgj.com/xgj/spaceflow/commit/ad9ae0900c470ac00d9a8c1527510ccd93515be5))
|
|
427
|
+
* 新增从 PR 标题解析命令参数功能,支持在标题中指定 ai-review 选项 ([916acf8](https://git.bjxgj.com/xgj/spaceflow/commit/916acf835fd0c638261458e66eacb8e443d2d3f3))
|
|
428
|
+
* 新增历史问题修复验证功能,使用 LLM 自动判断已有问题是否已被修复 ([c8b7352](https://git.bjxgj.com/xgj/spaceflow/commit/c8b7352f4cba260f2433677675fbd442a8c4d73d))
|
|
429
|
+
* 新增周期统计命令,支持按时间范围统计 PR 贡献并生成报告 ([a958d50](https://git.bjxgj.com/xgj/spaceflow/commit/a958d50855d6becb0801b10b20fa85ee6436536c))
|
|
430
|
+
* 新增审查数据持久化和增量更新机制,支持跳过重复问题并在评论中存储历史审查结果 ([4a3b3ea](https://git.bjxgj.com/xgj/spaceflow/commit/4a3b3eaa58bc890c25e1e268c7971ea1a85244bc))
|
|
431
|
+
* 新增已解决评论同步功能,在删除旧 review 前保留已修复问题的状态 ([7b04257](https://git.bjxgj.com/xgj/spaceflow/commit/7b042570c4fe00a96119e541394a880d62342f2b))
|
|
432
|
+
* 新增并行执行器支持文件并发审查,优化 AI 审查性能和错误处理 ([f240566](https://git.bjxgj.com/xgj/spaceflow/commit/f240566ea0fcf63565dc7214995953405dc5c2ef))
|
|
433
|
+
* 新增浅克隆检测和历史补充逻辑,优化 git blame 回退机制 ([dce40a2](https://git.bjxgj.com/xgj/spaceflow/commit/dce40a2784fbce268ed79926a9e987b0d7aaea1c))
|
|
434
|
+
* 新增行级 review 评论功能,支持在 PR 文件变更中按行定位显示审查问题 ([b4f6005](https://git.bjxgj.com/xgj/spaceflow/commit/b4f6005e40253c080c918909b71d25ea53f2d2d2))
|
|
435
|
+
* 新增进程退出码常量,统一错误退出码的使用 ([88a3c1c](https://git.bjxgj.com/xgj/spaceflow/commit/88a3c1c6e2f37baf130aa2835abe100f65eae736))
|
|
436
|
+
* 更新 GitHub Action 配置,优化开发模式构建流程并统一包名为 spaceflow ([7ca623e](https://git.bjxgj.com/xgj/spaceflow/commit/7ca623ee4de419d221f5c499ad6c5ecac37c1624))
|
|
437
|
+
* 更新审查 Schema 中行号字段描述,明确仅支持单行或多行格式 ([9c97758](https://git.bjxgj.com/xgj/spaceflow/commit/9c97758b57632265c182b783e9f7845655a5d526))
|
|
438
|
+
* 注释掉 claude-setup 服务中写入配置前的详细日志输出 ([965763a](https://git.bjxgj.com/xgj/spaceflow/commit/965763a056d62e361f07df6979d0a556ecf179ec))
|
|
439
|
+
* 清理 .gitmodules 中的冗余子模块配置,统一使用 HTTPS 协议访问 review-spec 仓库 ([ec897fc](https://git.bjxgj.com/xgj/spaceflow/commit/ec897fc655a42ab0a8dc3715901544d7cfdd2b5a))
|
|
440
|
+
* 移除 .claude/skills/review 符号链接,完成 review 技能路径清理 ([b19cbdd](https://git.bjxgj.com/xgj/spaceflow/commit/b19cbdd2e305cdb967ae89528177f08caefe25d6))
|
|
441
|
+
* 移除 allIssues 参数,统一使用 ReviewResult 中的 issues 字段 ([4d7b5dd](https://git.bjxgj.com/xgj/spaceflow/commit/4d7b5dd4361c180a208ba3ec247808e4ad651ed6))
|
|
442
|
+
* 移除 Commit 信息的代码块格式标记,改为纯文本显示 ([cd07504](https://git.bjxgj.com/xgj/spaceflow/commit/cd0750419d7277829064396342e538cadaec0f95))
|
|
443
|
+
* 移除 Git 子模块机制,改用直接克隆和符号链接管理依赖 ([cc46dd4](https://git.bjxgj.com/xgj/spaceflow/commit/cc46dd43902a546aac874c80d9525175d02f9820))
|
|
444
|
+
* 移除 git.lockBranch 配置项 ([a1758c9](https://git.bjxgj.com/xgj/spaceflow/commit/a1758c9610f744fbc83106174a130b9ae7e4ec35))
|
|
445
|
+
* 移除 Markdown 格式化器中 Commit 字段的代码块标记 ([be336a5](https://git.bjxgj.com/xgj/spaceflow/commit/be336a53fa5436a3604a3f91aaaba3617f2400db))
|
|
446
|
+
* 移除 review-spec 外部依赖配置,改用本地命令模块 ([9fa32e4](https://git.bjxgj.com/xgj/spaceflow/commit/9fa32e4e8756431fbdef29a6b26e0a1138ec4515))
|
|
447
|
+
* 移除工作流中的子模块递归克隆配置,注释掉手动初始化子模块步骤 ([de1fec1](https://git.bjxgj.com/xgj/spaceflow/commit/de1fec128fc9255fc88967849c4cf46b5967de34))
|
|
448
|
+
* 简化 JSON 格式化器并在 Markdown 报告中新增 PR 功能描述展示 ([fc594f1](https://git.bjxgj.com/xgj/spaceflow/commit/fc594f1e85019993f7a24e94b9f6b24a3ebf7d30))
|
|
449
|
+
* 简化建议代码块清理逻辑,将反引号替换为注释符号 ([d45540a](https://git.bjxgj.com/xgj/spaceflow/commit/d45540ae558a068b9785a4dd6a10f5e5608971c5))
|
|
450
|
+
* 简化文件摘要表格的列标题,移除"已解决"和"未解决"文字说明 ([1579db2](https://git.bjxgj.com/xgj/spaceflow/commit/1579db214e97fb043e5c4162b0359618e71c76d4))
|
|
451
|
+
* 简化预发布版本的 tag 匹配逻辑 ([51a1de2](https://git.bjxgj.com/xgj/spaceflow/commit/51a1de211598bdd1a0e2e02973fbe35cbf85e065))
|
|
452
|
+
* 简化魔法值检查规则说明,移除冗余的类型示例 ([f452edd](https://git.bjxgj.com/xgj/spaceflow/commit/f452eddb2ddc8905ee9587e3cf7233111675b727))
|
|
453
|
+
* 统一 Markdown 格式化器中的 emoji 样式,使用圆形图标替代表情符号 ([02c8dd5](https://git.bjxgj.com/xgj/spaceflow/commit/02c8dd59fa997765f01536cde8b418d3c8ed4350))
|
|
454
|
+
* 统一 README 中的术语格式和组件命名 ([5ceaeca](https://git.bjxgj.com/xgj/spaceflow/commit/5ceaecaac3645569bbd0c96e9e50d63721d7dea3))
|
|
455
|
+
* 统一插件文档命名规范,将 SKILL.md 重命名为 README.md ([e8342c1](https://git.bjxgj.com/xgj/spaceflow/commit/e8342c152058b4412c1b437bfedf9a2a84cfa2e5))
|
|
456
|
+
* 统一时间格式为 ISO 8601 并在展示时转换为 UTC+8 时区 ([b408781](https://git.bjxgj.com/xgj/spaceflow/commit/b4087812f7be09c27596cc4cd09f5038a985c3ed))
|
|
457
|
+
* 调整 commit 文件变更日志输出级别,从 verbose 1 提升至 verbose 2 ([e5180d5](https://git.bjxgj.com/xgj/spaceflow/commit/e5180d51e9a09b9f46dd7aada39dd113e4bcf2c7))
|
|
458
|
+
* 调整 Markdown 格式化器中问题详情的展示顺序,将发现时间和修复时间移至建议代码块之前 ([5848b03](https://git.bjxgj.com/xgj/spaceflow/commit/5848b039ae3ab102f2579952a32668b793a87b76))
|
|
459
|
+
* 调整 NestJS 代码规范结构,将业务代码编写位置要求独立为新章节 ([41df56e](https://git.bjxgj.com/xgj/spaceflow/commit/41df56e53ebb0458b2df511a663d60294738ae43))
|
|
460
|
+
* 调整功能概述中的 Markdown 标题层级,避免与主报告标题冲突 ([190cc38](https://git.bjxgj.com/xgj/spaceflow/commit/190cc38edc4127e3c35310d1d72dc8b1cc713e4d))
|
|
461
|
+
* 调整问题验证功能的默认配置,将核心配置默认关闭并在项目配置中启用 ([0e430c9](https://git.bjxgj.com/xgj/spaceflow/commit/0e430c911381f87d5fe2a2b146356c0af9a3488f))
|
|
462
|
+
* 调整问题验证跳过逻辑,仅跳过已确认无效的问题 ([8d78fa6](https://git.bjxgj.com/xgj/spaceflow/commit/8d78fa6710848a19dab084cd4bfb50dbf2580bde))
|
|
463
|
+
* 迁移扩展依赖到 .spaceflow 工作区并移除 pnpm catalog ([c457c0f](https://git.bjxgj.com/xgj/spaceflow/commit/c457c0f8918171f1856b88bc007921d76c508335))
|
|
464
|
+
* 重命名 ci-publish 命令为 publish ([804b821](https://git.bjxgj.com/xgj/spaceflow/commit/804b82175784987d7fa776e926de1bf35ee83eb2))
|
|
465
|
+
* 重命名 ClaudeConfig 模块为 ClaudeSetup ([c665825](https://git.bjxgj.com/xgj/spaceflow/commit/c6658257b85933ee898849e756781534c0e8e952))
|
|
466
|
+
* 重命名工作流文件并优化命令测试流程,统一构建和执行方式 ([01176de](https://git.bjxgj.com/xgj/spaceflow/commit/01176de3447343ea7cb21da608a9ab49efdcc9c3))
|
|
467
|
+
* 重命名核心包从 spaceflow 到 @spaceflow/cli ([69e04e8](https://git.bjxgj.com/xgj/spaceflow/commit/69e04e8d4ed93c2e9b84b18cb211cf17c2940ef3))
|
|
468
|
+
* 重构 Extension 安装机制为 pnpm workspace 模式 ([469b12e](https://git.bjxgj.com/xgj/spaceflow/commit/469b12eac28f747b628e52a5125a3d5a538fba39))
|
|
469
|
+
* 重构 LLM JSON Schema 处理逻辑,统一在 LlmProxyService 中管理 JSON 格式指令注入 ([e2fffeb](https://git.bjxgj.com/xgj/spaceflow/commit/e2fffeb2a1b0cb8f12ffb3847876107e1bbae593))
|
|
470
|
+
* 重构 LLM 配置结构,将 claude 和 openai 配置移至 review 配置下,并统一命名为 claudeCode ([4e07e8e](https://git.bjxgj.com/xgj/spaceflow/commit/4e07e8e8e60abf5c0b622d640d9407ae23720e33))
|
|
471
|
+
* 重构 OpenCode 适配器实现,使用 createOpencode 替代 createOpencodeClient 并移除配置文件管理 ([ee6bfff](https://git.bjxgj.com/xgj/spaceflow/commit/ee6bfffc12573a1ceadd91f7accfe0214cb16109))
|
|
472
|
+
* 重构 OpenCode 适配器配置,支持动态 provider 配置和统一方法命名 ([f1f50b6](https://git.bjxgj.com/xgj/spaceflow/commit/f1f50b6e2c256f338681ed3936d82b41095faaff))
|
|
473
|
+
* 重构 PR 审查服务,引入 ReviewSpecService 统一管理规范加载和过滤逻辑 ([d09ecea](https://git.bjxgj.com/xgj/spaceflow/commit/d09ecead6ce2ae2374bf44caeeee4f0591d1aeb7))
|
|
474
|
+
* 重构 runx 命令参数解析逻辑,支持自动补全命令名和动态加载插件模块 ([1938bc0](https://git.bjxgj.com/xgj/spaceflow/commit/1938bc05ac5920932defd6c8895a3eeab7c7612d))
|
|
475
|
+
* 重构代码审查流程,使用 commit 遍历替代 git blame 构建行号映射 ([bf75665](https://git.bjxgj.com/xgj/spaceflow/commit/bf7566541dbc0a23f9fe5d135d85000e168ee917))
|
|
476
|
+
* 重构删除代码影响分析,支持通过 Gitea API 获取 diff 并优化参数传递 ([33f6c59](https://git.bjxgj.com/xgj/spaceflow/commit/33f6c59b7f285d4bd5f99f30e801a9a1977def7f))
|
|
477
|
+
* 重构审查结果过滤和格式化逻辑,新增变更行过滤和严重程度覆盖功能 ([c2a6b99](https://git.bjxgj.com/xgj/spaceflow/commit/c2a6b999bfbb3423e4f38df78d87006ea193baa4))
|
|
478
|
+
* 重构插件加载改为扩展模式 ([0e6e140](https://git.bjxgj.com/xgj/spaceflow/commit/0e6e140b19ea2cf6084afc261c555d2083fe04f9))
|
|
479
|
+
* 重构插件安装机制,引入 .spaceflow 目录统一管理依赖,支持全局安装 ([40080fb](https://git.bjxgj.com/xgj/spaceflow/commit/40080fbaace3433fbc6bcc996ab335727409a5c2))
|
|
480
|
+
* 重构插件安装逻辑,支持多编辑器配置目录关联和统一的依赖管理 ([a15f59c](https://git.bjxgj.com/xgj/spaceflow/commit/a15f59c01946675600683d9d45110df0a06ce79d))
|
|
481
|
+
* 重构日志输出系统,引入分级 verbose 控制机制 ([e608b5d](https://git.bjxgj.com/xgj/spaceflow/commit/e608b5d58f86695e70cdc54e9f18f8f693739fea))
|
|
482
|
+
* 重构细节逻辑 ([16b3a1b](https://git.bjxgj.com/xgj/spaceflow/commit/16b3a1b9dea96e3508eeb6159c6fa92a44b4480c))
|
|
483
|
+
* 重构规范过滤机制,将 includes 和 override 过滤从规范加载阶段移至 LLM 审查后处理 ([5628305](https://git.bjxgj.com/xgj/spaceflow/commit/562830563eb2463221296703570f7e1d92c23801))
|
|
484
|
+
* 重构评论解析逻辑,从 issues 数组改为完整的 ReviewResult 对象 ([4651c2b](https://git.bjxgj.com/xgj/spaceflow/commit/4651c2bfd783664ce3f35d575169b91d85d4f4eb))
|
|
485
|
+
* 重构配置加载 ([4644ad8](https://git.bjxgj.com/xgj/spaceflow/commit/4644ad8a7bf538d7ff5e6518dceb50377bcca061))
|
|
486
|
+
* 重构配置模式 ([58a2303](https://git.bjxgj.com/xgj/spaceflow/commit/58a2303b1e51e159101a9eed4a8a179bc3fc10ac))
|
|
487
|
+
|
|
488
|
+
### 文档更新
|
|
489
|
+
|
|
490
|
+
* **actions:** 更新action.yml中命令描述 ([e81b550](https://git.bjxgj.com/xgj/spaceflow/commit/e81b550012db43f411493caf55d3f8b3d53e52b0))
|
|
491
|
+
* **core:** 更新核心框架README文档 ([0d98658](https://git.bjxgj.com/xgj/spaceflow/commit/0d98658f6ab01f119f98d3387fb5651d4d4351a8))
|
|
492
|
+
* **guide:** 更新编辑器集成文档,补充四种导出类型说明和 MCP 注册机制 ([19a7409](https://git.bjxgj.com/xgj/spaceflow/commit/19a7409092c89d002f11ee51ebcb6863118429bd))
|
|
493
|
+
* **guide:** 更新配置文件位置说明并补充 RC 文件支持 ([2214dc4](https://git.bjxgj.com/xgj/spaceflow/commit/2214dc4e197221971f5286b38ceaa6fcbcaa7884))
|
|
494
|
+
* **publish:** 完善发布插件README文档 ([faa57b0](https://git.bjxgj.com/xgj/spaceflow/commit/faa57b095453c00fb3c9a7704bc31b63953c0ac5))
|
|
495
|
+
* 完善 README 文档,新增项目结构、核心命令和配置说明 ([b6bb15a](https://git.bjxgj.com/xgj/spaceflow/commit/b6bb15a44da5e2e8fc1e8da5d0fd28eab7014887))
|
|
496
|
+
* 新增 AI Review 和周期统计模块的完整文档 ([7d9c169](https://git.bjxgj.com/xgj/spaceflow/commit/7d9c169b10d5cf331475b3e5955073534ba80ee9))
|
|
497
|
+
* 新增 Review Spec 文档规范,定义代码审查规则的 Markdown 格式和语法说明 ([70e9ed0](https://git.bjxgj.com/xgj/spaceflow/commit/70e9ed04c60ae75278ad8930f7492fd7d35d6014))
|
|
498
|
+
* 新增 Spaceflow 插件系统设计文档,定义插件化架构和开发规范 ([e63e1b1](https://git.bjxgj.com/xgj/spaceflow/commit/e63e1b18273df9eb3fec3b8ba9812d00da158f2b))
|
|
499
|
+
* 更新 JS/TS 代码规范文档,明确 interface 命名规则 ([598d371](https://git.bjxgj.com/xgj/spaceflow/commit/598d3710330dea8e181841d5b095dbb0fa647b70))
|
|
500
|
+
* 编写代码规范文档 ([bbe5aeb](https://git.bjxgj.com/xgj/spaceflow/commit/bbe5aebd395731fee00fadad602d0c64c3574db8))
|
|
501
|
+
|
|
502
|
+
### 测试用例
|
|
503
|
+
|
|
504
|
+
* branch protection test [no ci] ([c78f853](https://git.bjxgj.com/xgj/spaceflow/commit/c78f8536857108a3d7455c5686d83090a2ba5ffd))
|
|
505
|
+
* **core:** 新增 GiteaAdapter 完整单元测试并实现自动检测 provider 配置 ([c74f745](https://git.bjxgj.com/xgj/spaceflow/commit/c74f7458aed91ac7d12fb57ef1c24b3d2917c406))
|
|
506
|
+
* **review:** 新增 DeletionImpactService 测试覆盖并配置 coverage 工具 ([50bfbfe](https://git.bjxgj.com/xgj/spaceflow/commit/50bfbfe37192641f1170ade8f5eb00e0e382af67))
|
|
507
|
+
* **review:** 新增新增文件无 patch 时的测试用例,优化变更行标记逻辑 ([a593f0d](https://git.bjxgj.com/xgj/spaceflow/commit/a593f0d4a641b348f7c9d30b14f639b24c12dcfa))
|
|
508
|
+
* **review:** 添加单元测试以覆盖行号更新逻辑 ([ebf33e4](https://git.bjxgj.com/xgj/spaceflow/commit/ebf33e45c18c910b88b106cdd4cfeb516b3fb656))
|
|
509
|
+
* 为 AI 代码审查功能新增单元测试,覆盖问题验证和核心逻辑 ([3528be4](https://git.bjxgj.com/xgj/spaceflow/commit/3528be44cdeea409657b997fa476860ec5ce6f3f))
|
|
510
|
+
* 优化 PR 审查服务测试并改进规范解析 ([dacca5d](https://git.bjxgj.com/xgj/spaceflow/commit/dacca5df69ca7d4d1b5d456a42075265a0e678a4))
|
|
511
|
+
* 在 claude-code.adapter.spec.ts 中新增 ClaudeSetupService 的备份恢复方法 mock ([5fb5820](https://git.bjxgj.com/xgj/spaceflow/commit/5fb5820fc96163a31ae7787d4f2775a05cef1ce1))
|
|
512
|
+
* 新增 AI Review 服务的单元测试覆盖,包含删除影响分析和问题验证功能 ([ab2c52a](https://git.bjxgj.com/xgj/spaceflow/commit/ab2c52a7101d9d0a3f3f796518293ae8e1d53f4b))
|
|
513
|
+
* 添加 OpenAI LLM 支持的单元测试 ([fe25e7c](https://git.bjxgj.com/xgj/spaceflow/commit/fe25e7c20540f402a600b9c7aeec5482232ae508))
|
|
514
|
+
|
|
515
|
+
### 其他修改
|
|
516
|
+
|
|
517
|
+
* **actions:** 增强命令执行日志,输出原始 command 和 args 参数 ([0f0c238](https://git.bjxgj.com/xgj/spaceflow/commit/0f0c238de7d6f10875022f364746cefa56631b7f))
|
|
518
|
+
* **actions:** 更新Actions构建产物 ([2d71a2f](https://git.bjxgj.com/xgj/spaceflow/commit/2d71a2f4ba5bd89f7e1f130fdfc3c0e7c05f3920))
|
|
519
|
+
* **ci-scripts:** released version 0.0.1 [no ci] ([b38fb9b](https://git.bjxgj.com/xgj/spaceflow/commit/b38fb9ba56200ced1baf563b097faa8717693783))
|
|
520
|
+
* **ci-scripts:** released version 0.1.0 [no ci] ([57b3a1c](https://git.bjxgj.com/xgj/spaceflow/commit/57b3a1c826dafd5ec51d68b7471266efd5cc32b2))
|
|
521
|
+
* **ci-scripts:** released version 0.1.1 [no ci] ([19ca0d8](https://git.bjxgj.com/xgj/spaceflow/commit/19ca0d8461f9537f4318b772cad3ea395d2b3264))
|
|
522
|
+
* **ci-scripts:** released version 0.1.2 [no ci] ([ab9c100](https://git.bjxgj.com/xgj/spaceflow/commit/ab9c1000bcbe64d8a99ffa6bebb974c024b14325))
|
|
523
|
+
* **ci-scripts:** released version 0.10.0 [no ci] ([ca2daad](https://git.bjxgj.com/xgj/spaceflow/commit/ca2daada8b04bbe809e69a3d5bd9373e897c6f40))
|
|
524
|
+
* **ci-scripts:** released version 0.11.0 [no ci] ([d4f5bba](https://git.bjxgj.com/xgj/spaceflow/commit/d4f5bba6f89e9e051dde8d313b6e102c6dadfa41))
|
|
525
|
+
* **ci-scripts:** released version 0.12.0 [no ci] ([097863f](https://git.bjxgj.com/xgj/spaceflow/commit/097863f0c5cc46cb5cb930f14a6f379f60a13f08))
|
|
526
|
+
* **ci-scripts:** released version 0.13.0 [no ci] ([021eefd](https://git.bjxgj.com/xgj/spaceflow/commit/021eefdf2ff72d16b36123335548df2d3ad1d6b7))
|
|
527
|
+
* **ci-scripts:** released version 0.14.0 [no ci] ([c536208](https://git.bjxgj.com/xgj/spaceflow/commit/c536208e352baa82e5b56c490ea9df0aff116cb2))
|
|
528
|
+
* **ci-scripts:** released version 0.15.0 [no ci] ([e314fb1](https://git.bjxgj.com/xgj/spaceflow/commit/e314fb11e7425b27c337d3650857cf3b737051fd))
|
|
529
|
+
* **ci-scripts:** released version 0.16.0 [no ci] ([9ab007d](https://git.bjxgj.com/xgj/spaceflow/commit/9ab007db178878e093ba93ea27c4f05ca813a65d))
|
|
530
|
+
* **ci-scripts:** released version 0.17.0 [no ci] ([31abd3d](https://git.bjxgj.com/xgj/spaceflow/commit/31abd3dcb48e2ddea5175552c0a87c1eaa1e7a41))
|
|
531
|
+
* **ci-scripts:** released version 0.18.0 [no ci] ([e17894a](https://git.bjxgj.com/xgj/spaceflow/commit/e17894a5af53ff040a0a17bc602d232f78415e1b))
|
|
532
|
+
* **ci-scripts:** released version 0.2.0 [no ci] ([716e9ad](https://git.bjxgj.com/xgj/spaceflow/commit/716e9ad0f32bde09c608143da78f0a4299017797))
|
|
533
|
+
* **ci-scripts:** released version 0.3.0 [no ci] ([9292b52](https://git.bjxgj.com/xgj/spaceflow/commit/9292b524f2b8171f8774fab4e4ef4b32991f5d3d))
|
|
534
|
+
* **ci-scripts:** released version 0.4.0 [no ci] ([364f696](https://git.bjxgj.com/xgj/spaceflow/commit/364f696d0df5d84be915cfaa9202a592073d9b46))
|
|
535
|
+
* **ci-scripts:** released version 0.5.0 [no ci] ([a87a1da](https://git.bjxgj.com/xgj/spaceflow/commit/a87a1da0490986c46c2a527cda5e7d0df9df6d03))
|
|
536
|
+
* **ci-scripts:** released version 0.6.0 [no ci] ([d485758](https://git.bjxgj.com/xgj/spaceflow/commit/d48575827941cae6ffc7ae6ba911e5d4cf3bd7fa))
|
|
537
|
+
* **ci-scripts:** released version 0.7.0 [no ci] ([ea294e1](https://git.bjxgj.com/xgj/spaceflow/commit/ea294e138c6b15033af85819629727915dfcbf4b))
|
|
538
|
+
* **ci-scripts:** released version 0.8.0 [no ci] ([be6273d](https://git.bjxgj.com/xgj/spaceflow/commit/be6273dab7f1c80c58abdb8de6f0eeb986997e28))
|
|
539
|
+
* **ci-scripts:** released version 0.9.0 [no ci] ([1b9e816](https://git.bjxgj.com/xgj/spaceflow/commit/1b9e8167bb8fc67fcc439b2ef82e7a63dc323e6d))
|
|
540
|
+
* **ci-shell:** released version 0.0.1 [no ci] ([ec2a84b](https://git.bjxgj.com/xgj/spaceflow/commit/ec2a84b298c5fb989951caf42e2b016b3336f6a0))
|
|
541
|
+
* **ci-shell:** released version 0.1.0 [no ci] ([2283d9d](https://git.bjxgj.com/xgj/spaceflow/commit/2283d9d69ada1c071bef6c548dc756fe062893bd))
|
|
542
|
+
* **ci-shell:** released version 0.1.1 [no ci] ([488a686](https://git.bjxgj.com/xgj/spaceflow/commit/488a6869240151e7d1cf37a3b177897c2b5d5c1e))
|
|
543
|
+
* **ci-shell:** released version 0.1.2 [no ci] ([bf7977b](https://git.bjxgj.com/xgj/spaceflow/commit/bf7977bed684b557555861b9dc0359eda3c5d476))
|
|
544
|
+
* **ci-shell:** released version 0.10.0 [no ci] ([53864b8](https://git.bjxgj.com/xgj/spaceflow/commit/53864b8c2534cae265b8fbb98173a5b909682d4e))
|
|
545
|
+
* **ci-shell:** released version 0.11.0 [no ci] ([cf9e486](https://git.bjxgj.com/xgj/spaceflow/commit/cf9e48666197295f118396693abc08b680b3ddee))
|
|
546
|
+
* **ci-shell:** released version 0.12.0 [no ci] ([274216f](https://git.bjxgj.com/xgj/spaceflow/commit/274216fc930dfbf8390d02e25c06efcb44980fed))
|
|
547
|
+
* **ci-shell:** released version 0.13.0 [no ci] ([81e7582](https://git.bjxgj.com/xgj/spaceflow/commit/81e75820eb69ca188155e33945111e2b1f6b3012))
|
|
548
|
+
* **ci-shell:** released version 0.14.0 [no ci] ([c6e4bdc](https://git.bjxgj.com/xgj/spaceflow/commit/c6e4bdca44874739694e3e46998e376779503e53))
|
|
549
|
+
* **ci-shell:** released version 0.15.0 [no ci] ([5c0dc0b](https://git.bjxgj.com/xgj/spaceflow/commit/5c0dc0b5482366ccfd7854868d1eb5f306c24810))
|
|
550
|
+
* **ci-shell:** released version 0.16.0 [no ci] ([87fd703](https://git.bjxgj.com/xgj/spaceflow/commit/87fd7030b54d2f614f23e092499c5c51bfc33788))
|
|
551
|
+
* **ci-shell:** released version 0.17.0 [no ci] ([a53508b](https://git.bjxgj.com/xgj/spaceflow/commit/a53508b15e4020e3399bae9cc04e730f1539ad8e))
|
|
552
|
+
* **ci-shell:** released version 0.18.0 [no ci] ([f64fd80](https://git.bjxgj.com/xgj/spaceflow/commit/f64fd8009a6dd725f572c7e9fbf084d9320d5128))
|
|
553
|
+
* **ci-shell:** released version 0.2.0 [no ci] ([4f5314b](https://git.bjxgj.com/xgj/spaceflow/commit/4f5314b1002b90d7775a5ef51e618a3f227ae5a9))
|
|
554
|
+
* **ci-shell:** released version 0.3.0 [no ci] ([7b25e55](https://git.bjxgj.com/xgj/spaceflow/commit/7b25e557b628fdfa66d7a0be4ee21267906ac15f))
|
|
555
|
+
* **ci-shell:** released version 0.4.0 [no ci] ([7e6bf1d](https://git.bjxgj.com/xgj/spaceflow/commit/7e6bf1dabffc6250b918b89bb850d478d3f4b875))
|
|
556
|
+
* **ci-shell:** released version 0.5.0 [no ci] ([920d9a8](https://git.bjxgj.com/xgj/spaceflow/commit/920d9a8165fe6eabf7a074eb65762f4693883438))
|
|
557
|
+
* **ci-shell:** released version 0.6.0 [no ci] ([a2d1239](https://git.bjxgj.com/xgj/spaceflow/commit/a2d12397997b309062a9d93af57a5588cdb82a79))
|
|
558
|
+
* **ci-shell:** released version 0.7.0 [no ci] ([247967b](https://git.bjxgj.com/xgj/spaceflow/commit/247967b30876aae78cfb1f9c706431b5bb9fb57e))
|
|
559
|
+
* **ci-shell:** released version 0.8.0 [no ci] ([3102178](https://git.bjxgj.com/xgj/spaceflow/commit/310217827c6ec29294dee5689b2dbb1b66492728))
|
|
560
|
+
* **ci-shell:** released version 0.9.0 [no ci] ([accdda7](https://git.bjxgj.com/xgj/spaceflow/commit/accdda7ee4628dc8447e9a89da6c8101c572cb90))
|
|
561
|
+
* **ci:** 迁移工作流从 Gitea 到 GitHub 并统一环境变量命名 ([57e3bae](https://git.bjxgj.com/xgj/spaceflow/commit/57e3bae635b324c8c4ea50a9fb667b6241fae0ef))
|
|
562
|
+
* **commands/ci-scripts:** released version 0.0.1 [no ci] ([f5fc127](https://git.bjxgj.com/xgj/spaceflow/commit/f5fc127c46e275698cd9468fe16fb12ba107d782))
|
|
563
|
+
* **commands/ci-shell:** released version 0.0.1 [no ci] ([423404c](https://git.bjxgj.com/xgj/spaceflow/commit/423404c06adba4c525a2f3834acb5a50d32d9e31))
|
|
564
|
+
* **commands/period-summary:** released version 0.0.1 [no ci] ([59255e3](https://git.bjxgj.com/xgj/spaceflow/commit/59255e302b3e27bdaaabf77d70774020e0e75ea5))
|
|
565
|
+
* **commands/publish:** released version 0.0.1 [no ci] ([cb1867f](https://git.bjxgj.com/xgj/spaceflow/commit/cb1867f5185fbe53a6840c452cb11eae14bf1702))
|
|
566
|
+
* **commands/review:** released version 0.0.1 [no ci] ([6034f81](https://git.bjxgj.com/xgj/spaceflow/commit/6034f8135a97d8fe4fb064c9d977d7170a16979d))
|
|
567
|
+
* **config:** 将 git 推送白名单用户从 "Gitea Actions" 改为 "GiteaActions" ([fdbb865](https://git.bjxgj.com/xgj/spaceflow/commit/fdbb865341e6f02b26fca32b54a33b51bee11cad))
|
|
568
|
+
* **config:** 将 git 推送白名单用户从 github-actions[bot] 改为 Gitea Actions ([9c39819](https://git.bjxgj.com/xgj/spaceflow/commit/9c39819a9f95f415068f7f0333770b92bc98321b))
|
|
569
|
+
* **config:** 移除 review-spec 私有仓库依赖 ([8ae18f1](https://git.bjxgj.com/xgj/spaceflow/commit/8ae18f13c441b033d1cbc75119695a5cc5cb6a0b))
|
|
570
|
+
* **core:** released version 0.0.1 [no ci] ([66497d6](https://git.bjxgj.com/xgj/spaceflow/commit/66497d60be04b4756a3362dbec4652177910165c))
|
|
571
|
+
* **core:** released version 0.0.1 [no ci] ([5d82dca](https://git.bjxgj.com/xgj/spaceflow/commit/5d82dca234dd7b56cdf1d508581f53dfcecab676))
|
|
572
|
+
* **core:** released version 0.0.1 [no ci] ([01cb219](https://git.bjxgj.com/xgj/spaceflow/commit/01cb219a5288389d089f52a27068aad9bdcdce11))
|
|
573
|
+
* **core:** released version 0.1.0 [no ci] ([f455607](https://git.bjxgj.com/xgj/spaceflow/commit/f45560735082840410e08e0d8113f366732a1243))
|
|
574
|
+
* **core:** released version 0.1.1 [no ci] ([0cf3a4d](https://git.bjxgj.com/xgj/spaceflow/commit/0cf3a4d37d7d1460e232dd30bc7ab8dc015ed11f))
|
|
575
|
+
* **core:** released version 0.1.2 [no ci] ([8292dbe](https://git.bjxgj.com/xgj/spaceflow/commit/8292dbe59a200cc640a95b86afb6451ec0c044ce))
|
|
576
|
+
* **core:** released version 0.10.0 [no ci] ([a80d34f](https://git.bjxgj.com/xgj/spaceflow/commit/a80d34fb647e107343a07a8793363b3b76320e81))
|
|
577
|
+
* **core:** released version 0.11.0 [no ci] ([f0025c7](https://git.bjxgj.com/xgj/spaceflow/commit/f0025c792e332e8b8752597a27f654c0197c36eb))
|
|
578
|
+
* **core:** released version 0.12.0 [no ci] ([1ce5034](https://git.bjxgj.com/xgj/spaceflow/commit/1ce50346d73a1914836333415f5ead9fbfa27be7))
|
|
579
|
+
* **core:** released version 0.13.0 [no ci] ([e3edde3](https://git.bjxgj.com/xgj/spaceflow/commit/e3edde3e670c79544af9a7249d566961740a2284))
|
|
580
|
+
* **core:** released version 0.14.0 [no ci] ([996dbc6](https://git.bjxgj.com/xgj/spaceflow/commit/996dbc6f80b0d3fb8049df9a9a31bd1e5b5d4b92))
|
|
581
|
+
* **core:** released version 0.15.0 [no ci] ([48f3875](https://git.bjxgj.com/xgj/spaceflow/commit/48f38754dee382548bab968c57dd0f40f2343981))
|
|
582
|
+
* **core:** released version 0.16.0 [no ci] ([871f981](https://git.bjxgj.com/xgj/spaceflow/commit/871f981b0b908c981aaef366f2382ec6ca2e2269))
|
|
583
|
+
* **core:** released version 0.17.0 [no ci] ([c85a8ed](https://git.bjxgj.com/xgj/spaceflow/commit/c85a8ed88929d867d2d460a44d08d8b7bc4866a2))
|
|
584
|
+
* **core:** released version 0.18.0 [no ci] ([c5e973f](https://git.bjxgj.com/xgj/spaceflow/commit/c5e973fbe22c0fcd0d6d3af6e4020e2fbff9d31f))
|
|
585
|
+
* **core:** released version 0.2.0 [no ci] ([5a96529](https://git.bjxgj.com/xgj/spaceflow/commit/5a96529cabdce4fb150732b34c55e668c33cb50c))
|
|
586
|
+
* **core:** released version 0.3.0 [no ci] ([bf8b005](https://git.bjxgj.com/xgj/spaceflow/commit/bf8b005ccbfcdd2061c18ae4ecdd476584ecbb53))
|
|
587
|
+
* **core:** released version 0.4.0 [no ci] ([bc4cd89](https://git.bjxgj.com/xgj/spaceflow/commit/bc4cd89af70dce052e7e00fe413708790f65be61))
|
|
588
|
+
* **core:** released version 0.5.0 [no ci] ([ad20098](https://git.bjxgj.com/xgj/spaceflow/commit/ad20098ef954283dd6d9867a4d2535769cbb8377))
|
|
589
|
+
* **core:** released version 0.6.0 [no ci] ([21e1ec6](https://git.bjxgj.com/xgj/spaceflow/commit/21e1ec61a2de542e065034f32a259092dd7c0e0d))
|
|
590
|
+
* **core:** released version 0.7.0 [no ci] ([000c53e](https://git.bjxgj.com/xgj/spaceflow/commit/000c53eff80899dbadad8d668a2227921373daad))
|
|
591
|
+
* **core:** released version 0.8.0 [no ci] ([625dbc0](https://git.bjxgj.com/xgj/spaceflow/commit/625dbc0206747b21a893ae43032f55d0a068c6fd))
|
|
592
|
+
* **core:** released version 0.9.0 [no ci] ([8127211](https://git.bjxgj.com/xgj/spaceflow/commit/812721136828e8c38adf0855fb292b0da89daf1a))
|
|
593
|
+
* **core:** 禁用 i18next 初始化时的 locize.com 推广日志 ([a99fbb0](https://git.bjxgj.com/xgj/spaceflow/commit/a99fbb068441bc623efcf15a1dd7b6bd38c05f38))
|
|
594
|
+
* **core:** 调整依赖配置 ([c86534a](https://git.bjxgj.com/xgj/spaceflow/commit/c86534ad213293ee2557ba5568549e8fbcb74ba5))
|
|
595
|
+
* **core:** 调整核心依赖与配置,新增Zod类型系统支持 ([def0751](https://git.bjxgj.com/xgj/spaceflow/commit/def0751577d9f3350494ca3c7bb4a4b087dab05e))
|
|
596
|
+
* **deps:** 移除 pnpm catalog 配置并更新依赖锁定 ([753fb9e](https://git.bjxgj.com/xgj/spaceflow/commit/753fb9e3e43b28054c75158193dc39ab4bab1af5))
|
|
597
|
+
* **docs:** 统一文档脚本命名,为 VitePress 命令添加 docs: 前缀 ([3cc46ea](https://git.bjxgj.com/xgj/spaceflow/commit/3cc46eab3a600290f5064b8270902e586b9c5af4))
|
|
598
|
+
* **i18n:** 配置 i18n-ally-next 自动提取键名生成策略 ([753c3dc](https://git.bjxgj.com/xgj/spaceflow/commit/753c3dc3f24f3c03c837d1ec2c505e8e3ce08b11))
|
|
599
|
+
* **i18n:** 重构 i18n 配置并统一 locales 目录结构 ([3e94037](https://git.bjxgj.com/xgj/spaceflow/commit/3e94037fa6493b3b0e4a12ff6af9f4bea48ae217))
|
|
600
|
+
* **period-summary:** released version 0.0.1 [no ci] ([7ab3504](https://git.bjxgj.com/xgj/spaceflow/commit/7ab3504750191b88643fe5db6b92bb08acc9ab5d))
|
|
601
|
+
* **period-summary:** released version 0.1.0 [no ci] ([36fb7a4](https://git.bjxgj.com/xgj/spaceflow/commit/36fb7a486da82e1d8e4b0574c68b4473cd86b28e))
|
|
602
|
+
* **period-summary:** released version 0.1.1 [no ci] ([b77e96b](https://git.bjxgj.com/xgj/spaceflow/commit/b77e96b1b768efa81d37143101057224fc3cef0f))
|
|
603
|
+
* **period-summary:** released version 0.1.2 [no ci] ([eaf41a0](https://git.bjxgj.com/xgj/spaceflow/commit/eaf41a0149ee4306361ccab0b3878bded79677df))
|
|
604
|
+
* **period-summary:** released version 0.10.0 [no ci] ([c1ca3bb](https://git.bjxgj.com/xgj/spaceflow/commit/c1ca3bb67fa7f9dbb4de152f0461d644f3044946))
|
|
605
|
+
* **period-summary:** released version 0.11.0 [no ci] ([b518887](https://git.bjxgj.com/xgj/spaceflow/commit/b518887bddd5a452c91148bac64d61ec64b0b509))
|
|
606
|
+
* **period-summary:** released version 0.12.0 [no ci] ([38490aa](https://git.bjxgj.com/xgj/spaceflow/commit/38490aa75ab20789c5495a5d8d009867f954af4f))
|
|
607
|
+
* **period-summary:** released version 0.13.0 [no ci] ([1d47460](https://git.bjxgj.com/xgj/spaceflow/commit/1d47460e40ba422a32865ccddd353e089eb91c6a))
|
|
608
|
+
* **period-summary:** released version 0.14.0 [no ci] ([55a72f2](https://git.bjxgj.com/xgj/spaceflow/commit/55a72f2b481e5ded1d9207a5a8d6a6864328d5a0))
|
|
609
|
+
* **period-summary:** released version 0.15.0 [no ci] ([3dd72cb](https://git.bjxgj.com/xgj/spaceflow/commit/3dd72cb65a422b5b008a83820e799b810a6d53eb))
|
|
610
|
+
* **period-summary:** released version 0.16.0 [no ci] ([b214e31](https://git.bjxgj.com/xgj/spaceflow/commit/b214e31221d5afa04481c48d9ddb878644a22ae7))
|
|
611
|
+
* **period-summary:** released version 0.17.0 [no ci] ([ac4e5b6](https://git.bjxgj.com/xgj/spaceflow/commit/ac4e5b6083773146ac840548a69006f6c4fbac1d))
|
|
612
|
+
* **period-summary:** released version 0.18.0 [no ci] ([f0df638](https://git.bjxgj.com/xgj/spaceflow/commit/f0df63804d06f8c75e04169ec98226d7a4f5d7f9))
|
|
613
|
+
* **period-summary:** released version 0.2.0 [no ci] ([66a4e20](https://git.bjxgj.com/xgj/spaceflow/commit/66a4e209519b64d946ec21b1d1695105fb9de106))
|
|
614
|
+
* **period-summary:** released version 0.3.0 [no ci] ([7e74c59](https://git.bjxgj.com/xgj/spaceflow/commit/7e74c59d90d88e061e693829f8196834d9858307))
|
|
615
|
+
* **period-summary:** released version 0.4.0 [no ci] ([ca89a9b](https://git.bjxgj.com/xgj/spaceflow/commit/ca89a9b9436761e210dedfc38fb3c16ef39b0718))
|
|
616
|
+
* **period-summary:** released version 0.5.0 [no ci] ([8e547e9](https://git.bjxgj.com/xgj/spaceflow/commit/8e547e9e6a6496a8c314c06cf6e88c97e623bc2d))
|
|
617
|
+
* **period-summary:** released version 0.6.0 [no ci] ([6648dfb](https://git.bjxgj.com/xgj/spaceflow/commit/6648dfb31b459e8c4522cff342dfa87a4bdaab4b))
|
|
618
|
+
* **period-summary:** released version 0.7.0 [no ci] ([8869d58](https://git.bjxgj.com/xgj/spaceflow/commit/8869d5876e86ebe83ae65c3259cd9a7e402257cf))
|
|
619
|
+
* **period-summary:** released version 0.8.0 [no ci] ([44ff3c5](https://git.bjxgj.com/xgj/spaceflow/commit/44ff3c505b243e1291565e354e239ce893e5e47c))
|
|
620
|
+
* **period-summary:** released version 0.9.0 [no ci] ([ac03f9b](https://git.bjxgj.com/xgj/spaceflow/commit/ac03f9bcff742d669c6e8b2f94e40153b6c298f5))
|
|
621
|
+
* **publish:** released version 0.0.1 [no ci] ([16b0f64](https://git.bjxgj.com/xgj/spaceflow/commit/16b0f647cf7fe23b921947b4a53ac94076bbee9e))
|
|
622
|
+
* **publish:** released version 0.1.0 [no ci] ([0ca1b54](https://git.bjxgj.com/xgj/spaceflow/commit/0ca1b54fd52e1721b5453dc1922c1d5b6a00acf4))
|
|
623
|
+
* **publish:** released version 0.1.1 [no ci] ([43ba6cb](https://git.bjxgj.com/xgj/spaceflow/commit/43ba6cb565ab84155ddc335b8bf6a72424e99b69))
|
|
624
|
+
* **publish:** released version 0.1.2 [no ci] ([4786731](https://git.bjxgj.com/xgj/spaceflow/commit/4786731da7a21982dc1e912b1a5002f5ebba9104))
|
|
625
|
+
* **publish:** released version 0.10.0 [no ci] ([8722ba9](https://git.bjxgj.com/xgj/spaceflow/commit/8722ba9eddb03c2f73539f4e09c504ed9491a5eb))
|
|
626
|
+
* **publish:** released version 0.11.0 [no ci] ([df17cd1](https://git.bjxgj.com/xgj/spaceflow/commit/df17cd1250c8fd8a035eb073d292885a4b1e3322))
|
|
627
|
+
* **publish:** released version 0.12.0 [no ci] ([50e209e](https://git.bjxgj.com/xgj/spaceflow/commit/50e209ebc57504462ed192a0fe22f6f944165fa3))
|
|
628
|
+
* **publish:** released version 0.13.0 [no ci] ([1d308d9](https://git.bjxgj.com/xgj/spaceflow/commit/1d308d9e32c50902dd881144ff541204d368006f))
|
|
629
|
+
* **publish:** released version 0.14.0 [no ci] ([fe0e140](https://git.bjxgj.com/xgj/spaceflow/commit/fe0e14058a364362d7d218da9b34dbb5d8fb8f42))
|
|
630
|
+
* **publish:** released version 0.15.0 [no ci] ([4b09122](https://git.bjxgj.com/xgj/spaceflow/commit/4b091227265a57f0a05488749eb4852fb421a06e))
|
|
631
|
+
* **publish:** released version 0.16.0 [no ci] ([e31e46d](https://git.bjxgj.com/xgj/spaceflow/commit/e31e46d08fccb10a42b6579fa042aa6c57d79c8a))
|
|
632
|
+
* **publish:** released version 0.17.0 [no ci] ([8e0d065](https://git.bjxgj.com/xgj/spaceflow/commit/8e0d0654040d6af7e99fa013a8255aa93acbcc3a))
|
|
633
|
+
* **publish:** released version 0.18.0 [no ci] ([2f2ce01](https://git.bjxgj.com/xgj/spaceflow/commit/2f2ce01726f7b3e4387e23a17974b58acd3e6929))
|
|
634
|
+
* **publish:** released version 0.19.0 [no ci] ([7a96bca](https://git.bjxgj.com/xgj/spaceflow/commit/7a96bca945434a99f7d051a38cb31adfd2ade5d2))
|
|
635
|
+
* **publish:** released version 0.2.0 [no ci] ([bc30a82](https://git.bjxgj.com/xgj/spaceflow/commit/bc30a82082bba4cc1a66c74c11dc0ad9deef4692))
|
|
636
|
+
* **publish:** released version 0.20.0 [no ci] ([d347e3b](https://git.bjxgj.com/xgj/spaceflow/commit/d347e3b2041157d8dc6e3ade69b05a481b2ab371))
|
|
637
|
+
* **publish:** released version 0.3.0 [no ci] ([972eca4](https://git.bjxgj.com/xgj/spaceflow/commit/972eca440dd333e8c5380124497c16fe6e3eea6c))
|
|
638
|
+
* **publish:** released version 0.4.0 [no ci] ([be66220](https://git.bjxgj.com/xgj/spaceflow/commit/be662202c1e9e509368eb683a0d6df3afd876ff8))
|
|
639
|
+
* **publish:** released version 0.5.0 [no ci] ([8eecd19](https://git.bjxgj.com/xgj/spaceflow/commit/8eecd19c4dd3fbaa27187a9b24234e753fff5efe))
|
|
640
|
+
* **publish:** released version 0.6.0 [no ci] ([b6d8d09](https://git.bjxgj.com/xgj/spaceflow/commit/b6d8d099fc439ce67f802d56e30dadaa28afed0e))
|
|
641
|
+
* **publish:** released version 0.7.0 [no ci] ([7124435](https://git.bjxgj.com/xgj/spaceflow/commit/712443516845f5bbc097af16ec6e90bb57b69fa3))
|
|
642
|
+
* **publish:** released version 0.8.0 [no ci] ([d7cd2e9](https://git.bjxgj.com/xgj/spaceflow/commit/d7cd2e9a7af178acdf91f16ae299c82e915db6e6))
|
|
643
|
+
* **publish:** released version 0.9.0 [no ci] ([b404930](https://git.bjxgj.com/xgj/spaceflow/commit/b40493049877c1fd3554d77a14e9bd9ab318e15a))
|
|
644
|
+
* released version v1.1.1 [no ci] ([eadc0f8](https://git.bjxgj.com/xgj/spaceflow/commit/eadc0f8219066b094dfe6727423578bf9ad64a99))
|
|
645
|
+
* released version v1.1.2 [no ci] ([cc12323](https://git.bjxgj.com/xgj/spaceflow/commit/cc12323a4e5c42b244ecafd26d42242fa852f5b6))
|
|
646
|
+
* released version v1.1.3 [no ci] ([09feb13](https://git.bjxgj.com/xgj/spaceflow/commit/09feb1305cdcdc622cb5898bf16d106aeee3b7f3))
|
|
647
|
+
* released version v1.1.4 [no ci] ([36191c7](https://git.bjxgj.com/xgj/spaceflow/commit/36191c71c94a659d4b588a40c437b12a9b76af9e))
|
|
648
|
+
* released version v1.1.5 [no ci] ([9f88b27](https://git.bjxgj.com/xgj/spaceflow/commit/9f88b27de220d7e4bd288de9c54562cb0ed894cc))
|
|
649
|
+
* released version v1.1.6 [no ci] ([2e2db67](https://git.bjxgj.com/xgj/spaceflow/commit/2e2db6765b6eccf4fee3d6110d1fd6c3ab6040bd))
|
|
650
|
+
* released version v1.1.7 [no ci] ([c3e5250](https://git.bjxgj.com/xgj/spaceflow/commit/c3e52505c8ba4cea7b45fa30fac0b519a38fd428))
|
|
651
|
+
* released version v1.1.8 [no ci] ([d27472f](https://git.bjxgj.com/xgj/spaceflow/commit/d27472fecea7e24d41ecf99e5f5710acbfd3822b))
|
|
652
|
+
* **review:** released version 0.0.1 [no ci] ([478905a](https://git.bjxgj.com/xgj/spaceflow/commit/478905a2ebf11c8e10251f398d67fcf32ea7f62b))
|
|
653
|
+
* **review:** released version 0.1.0 [no ci] ([bd227b5](https://git.bjxgj.com/xgj/spaceflow/commit/bd227b5b650f23bcd412d2dbc105b7f958164f43))
|
|
654
|
+
* **review:** released version 0.1.1 [no ci] ([d06242d](https://git.bjxgj.com/xgj/spaceflow/commit/d06242dac763f6addf3eccfeeeb44bbf6a533041))
|
|
655
|
+
* **review:** released version 0.1.2 [no ci] ([9689d3e](https://git.bjxgj.com/xgj/spaceflow/commit/9689d3e37781ca9ae6cb14d7b12717c061f2919d))
|
|
656
|
+
* **review:** released version 0.10.0 [no ci] ([6465de8](https://git.bjxgj.com/xgj/spaceflow/commit/6465de8751028787efb509670988c62b4dbbdf2a))
|
|
657
|
+
* **review:** released version 0.11.0 [no ci] ([150cd9d](https://git.bjxgj.com/xgj/spaceflow/commit/150cd9df7d380c26e6f3f7f0dfd027022f610e6e))
|
|
658
|
+
* **review:** released version 0.12.0 [no ci] ([3da605e](https://git.bjxgj.com/xgj/spaceflow/commit/3da605ea103192070f1c63112ad896a33fbc4312))
|
|
659
|
+
* **review:** released version 0.13.0 [no ci] ([4214c44](https://git.bjxgj.com/xgj/spaceflow/commit/4214c4406ab5482b151ec3c00da376b1d3d50887))
|
|
660
|
+
* **review:** released version 0.14.0 [no ci] ([4165b05](https://git.bjxgj.com/xgj/spaceflow/commit/4165b05f8aab90d753193f3c1c2800e7f03ea4de))
|
|
661
|
+
* **review:** released version 0.15.0 [no ci] ([a2ab86d](https://git.bjxgj.com/xgj/spaceflow/commit/a2ab86d097943924749876769f0a144926178783))
|
|
662
|
+
* **review:** released version 0.16.0 [no ci] ([64c8866](https://git.bjxgj.com/xgj/spaceflow/commit/64c88666fc7e84ced013198d3a53a8c75c7889eb))
|
|
663
|
+
* **review:** released version 0.17.0 [no ci] ([9f25412](https://git.bjxgj.com/xgj/spaceflow/commit/9f254121557ae238e32f4093b0c8b5dd8a4b9a72))
|
|
664
|
+
* **review:** released version 0.18.0 [no ci] ([d366e3f](https://git.bjxgj.com/xgj/spaceflow/commit/d366e3fa9c1b32369a3d98e56fc873e033d71d00))
|
|
665
|
+
* **review:** released version 0.19.0 [no ci] ([0ba5c0a](https://git.bjxgj.com/xgj/spaceflow/commit/0ba5c0a39879b598da2d774acc0834c590ef6d4c))
|
|
666
|
+
* **review:** released version 0.2.0 [no ci] ([d0bd3ed](https://git.bjxgj.com/xgj/spaceflow/commit/d0bd3edf364dedc7c077d95801b402d41c3fdd9c))
|
|
667
|
+
* **review:** released version 0.20.0 [no ci] ([8b0f82f](https://git.bjxgj.com/xgj/spaceflow/commit/8b0f82f94813c79d579dbae8decb471b20e45e9d))
|
|
668
|
+
* **review:** released version 0.21.0 [no ci] ([b51a1dd](https://git.bjxgj.com/xgj/spaceflow/commit/b51a1ddcba3e6a4b3b3eb947864e731d8f87d62b))
|
|
669
|
+
* **review:** released version 0.22.0 [no ci] ([fca3bfc](https://git.bjxgj.com/xgj/spaceflow/commit/fca3bfc0c53253ac78566e88c7e5d31020a3896b))
|
|
670
|
+
* **review:** released version 0.23.0 [no ci] ([ed5bf22](https://git.bjxgj.com/xgj/spaceflow/commit/ed5bf22819094df070708c2724669d0b5f7b9008))
|
|
671
|
+
* **review:** released version 0.24.0 [no ci] ([5f1f94e](https://git.bjxgj.com/xgj/spaceflow/commit/5f1f94ee02123baa05802fb2bb038ccf9d50a0cc))
|
|
672
|
+
* **review:** released version 0.25.0 [no ci] ([69cfeaf](https://git.bjxgj.com/xgj/spaceflow/commit/69cfeaf768e4bf7b2aaba6f089064469338a1ac0))
|
|
673
|
+
* **review:** released version 0.26.0 [no ci] ([dec9c7e](https://git.bjxgj.com/xgj/spaceflow/commit/dec9c7ec66455cf83588368c930d12510ada6c0f))
|
|
674
|
+
* **review:** released version 0.27.0 [no ci] ([ac3fc5a](https://git.bjxgj.com/xgj/spaceflow/commit/ac3fc5a5d7317d537d0447e05a61bef15a1accbe))
|
|
675
|
+
* **review:** released version 0.28.0 [no ci] ([a2d89ed](https://git.bjxgj.com/xgj/spaceflow/commit/a2d89ed5f386eb6dd299c0d0a208856ce267ab5e))
|
|
676
|
+
* **review:** released version 0.3.0 [no ci] ([865c6fd](https://git.bjxgj.com/xgj/spaceflow/commit/865c6fdee167df187d1bc107867f842fe25c1098))
|
|
677
|
+
* **review:** released version 0.4.0 [no ci] ([3b5f8a9](https://git.bjxgj.com/xgj/spaceflow/commit/3b5f8a934de5ba4f59e232e1dcbccbdff1b8b17c))
|
|
678
|
+
* **review:** released version 0.5.0 [no ci] ([93c3088](https://git.bjxgj.com/xgj/spaceflow/commit/93c308887040f39047766a789a37d24ac6146359))
|
|
679
|
+
* **review:** released version 0.6.0 [no ci] ([48a90b2](https://git.bjxgj.com/xgj/spaceflow/commit/48a90b253dbe03f46d26bb88f3e0158193aa1dba))
|
|
680
|
+
* **review:** released version 0.7.0 [no ci] ([1d195d7](https://git.bjxgj.com/xgj/spaceflow/commit/1d195d74685f12edf3b1f4e13b58ccc3d221fd94))
|
|
681
|
+
* **review:** released version 0.8.0 [no ci] ([ec6e7e5](https://git.bjxgj.com/xgj/spaceflow/commit/ec6e7e5defd2a5a6349d3530f3b0f4732dd5bb62))
|
|
682
|
+
* **review:** released version 0.9.0 [no ci] ([13dd62c](https://git.bjxgj.com/xgj/spaceflow/commit/13dd62c6f307aa6d3b78c34f485393434036fe59))
|
|
683
|
+
* **scripts:** 修正 setup 和 build 脚本的过滤条件,避免重复构建 cli 包 ([ffd2ffe](https://git.bjxgj.com/xgj/spaceflow/commit/ffd2ffedca08fd56cccb6a9fbd2b6bd106e367b6))
|
|
684
|
+
* **templates:** 新增 MCP 工具插件模板 ([5f6df60](https://git.bjxgj.com/xgj/spaceflow/commit/5f6df60b60553f025414fd102d8a279cde097485))
|
|
685
|
+
* update ([c668651](https://git.bjxgj.com/xgj/spaceflow/commit/c668651627f12820b82d3eda0534a409efd43768))
|
|
686
|
+
* update ([4985196](https://git.bjxgj.com/xgj/spaceflow/commit/4985196ac6d9b7e5c37bda4f0a9b889e6c44c480))
|
|
687
|
+
* update ([5c31edc](https://git.bjxgj.com/xgj/spaceflow/commit/5c31edc968fb1d3e6325f776c5efdc9ca6a54c07))
|
|
688
|
+
* update ([9c352c7](https://git.bjxgj.com/xgj/spaceflow/commit/9c352c718bb508326e7fb2722dfbc0dca3c729c4))
|
|
689
|
+
* update ([09c1293](https://git.bjxgj.com/xgj/spaceflow/commit/09c12933f7ea50464668d51b9da03efb0a2f1228))
|
|
690
|
+
* update ([a757794](https://git.bjxgj.com/xgj/spaceflow/commit/a757794b61c459ddc80bf1f4f291eab42abf284a))
|
|
691
|
+
* update ([c31569e](https://git.bjxgj.com/xgj/spaceflow/commit/c31569e0415f590198f0d29be368c5881f232476))
|
|
692
|
+
* update ([25a81d9](https://git.bjxgj.com/xgj/spaceflow/commit/25a81d9be3c8a14160ed4db8cdd2bb8dd96350bf))
|
|
693
|
+
* update ([53684c5](https://git.bjxgj.com/xgj/spaceflow/commit/53684c56ffd477d56bea2b49ef33c2f02e6622d2))
|
|
694
|
+
* update ([af1d833](https://git.bjxgj.com/xgj/spaceflow/commit/af1d8332662807d3f2b5eb27f4f53c8d0e84274e))
|
|
695
|
+
* update ([892b0ec](https://git.bjxgj.com/xgj/spaceflow/commit/892b0ec272a776a66760493588f55ffb665cfae7))
|
|
696
|
+
* update ([afce4da](https://git.bjxgj.com/xgj/spaceflow/commit/afce4daf4bd83975311e4113a777788ce5282dcb))
|
|
697
|
+
* update ([086203b](https://git.bjxgj.com/xgj/spaceflow/commit/086203b6c3a656434ba1dd90fed42e463de41977))
|
|
698
|
+
* update ([7ff4b85](https://git.bjxgj.com/xgj/spaceflow/commit/7ff4b85215627bac08eb51d3790ddfae31da54bc))
|
|
699
|
+
* update ([d97522a](https://git.bjxgj.com/xgj/spaceflow/commit/d97522a58fe857d243c7c434203c4fea13216c51))
|
|
700
|
+
* update ([b0f05f6](https://git.bjxgj.com/xgj/spaceflow/commit/b0f05f608ab337fc259f1d57b3b2c38add943b1c))
|
|
701
|
+
* update ([b6e262e](https://git.bjxgj.com/xgj/spaceflow/commit/b6e262ebea3139b3ca1805accb21b4ae56727f2f))
|
|
702
|
+
* update ([06099e0](https://git.bjxgj.com/xgj/spaceflow/commit/06099e00a6d47db91900e7346c982e10a057ef30))
|
|
703
|
+
* update ([e0ff36f](https://git.bjxgj.com/xgj/spaceflow/commit/e0ff36fc5d99a34953fe5296360335c4fdafe830))
|
|
704
|
+
* update ([7133e2a](https://git.bjxgj.com/xgj/spaceflow/commit/7133e2ad1b370f03ec3da0bf8e5af108e77d8b31))
|
|
705
|
+
* update ([a77c8d1](https://git.bjxgj.com/xgj/spaceflow/commit/a77c8d102d82da06a1f1f228c9d6f0716f70c45c))
|
|
706
|
+
* update ci ([e9b8f2d](https://git.bjxgj.com/xgj/spaceflow/commit/e9b8f2d5f761bbe1f65c55b135c5a70a7eb67e8e))
|
|
707
|
+
* update ci ([5d88d06](https://git.bjxgj.com/xgj/spaceflow/commit/5d88d061eb4c81d8ddcc07e95ea104525e9cfb44))
|
|
708
|
+
* **workflows:** 为所有 GitHub Actions 工作流添加 GIT_PROVIDER_TYPE 环境变量 ([a463574](https://git.bjxgj.com/xgj/spaceflow/commit/a463574de6755a0848a8d06267f029cb947132b0))
|
|
709
|
+
* **workflows:** 在发布流程中添加 GIT_PROVIDER_TYPE 环境变量 ([a4bb388](https://git.bjxgj.com/xgj/spaceflow/commit/a4bb3881f39ad351e06c5502df6895805b169a28))
|
|
710
|
+
* **workflows:** 在发布流程中添加扩展安装步骤 ([716be4d](https://git.bjxgj.com/xgj/spaceflow/commit/716be4d92641ccadb3eaf01af8a51189ec5e9ade))
|
|
711
|
+
* **workflows:** 将发布流程的 Git 和 NPM 配置从 GitHub 迁移到 Gitea ([6d9acff](https://git.bjxgj.com/xgj/spaceflow/commit/6d9acff06c9a202432eb3d3d5552e6ac972712f5))
|
|
712
|
+
* **workflows:** 将发布流程的 GITHUB_TOKEN 改为使用 CI_GITEA_TOKEN ([e7fe7b4](https://git.bjxgj.com/xgj/spaceflow/commit/e7fe7b4271802fcdbfc2553b180f710eed419335))
|
|
713
|
+
* 为spaceflow.json添加JSON Schema提示 ([3744afb](https://git.bjxgj.com/xgj/spaceflow/commit/3744afb71d33704ec6c659bdbc8647ad2a2d8467))
|
|
714
|
+
* 为所有 commands 包添加 @spaceflow/cli 开发依赖 ([d4e6c83](https://git.bjxgj.com/xgj/spaceflow/commit/d4e6c8344ca736f7e55d7db698482e8fa2445684))
|
|
715
|
+
* 优化 Gitea Actions 工作流配置 ([106d819](https://git.bjxgj.com/xgj/spaceflow/commit/106d8196ba5e28930fb12f787c5e9718eebe5a56))
|
|
716
|
+
* 优化 PR 审查工作流配置 ([01bf2c5](https://git.bjxgj.com/xgj/spaceflow/commit/01bf2c5ef99759295b0b87d095de6b1bb049c773))
|
|
717
|
+
* 优化CI工作流的代码检出配置 ([d9740dd](https://git.bjxgj.com/xgj/spaceflow/commit/d9740dd6d1294068ffdcd7a12b61149773866a2a))
|
|
718
|
+
* 优化依赖配置并移除 .spaceflow 包依赖 ([be5264e](https://git.bjxgj.com/xgj/spaceflow/commit/be5264e5e0fe1f53bbe3b44a9cb86dd94ab9d266))
|
|
719
|
+
* 使用 node 直接运行编译后的 CLI 替代 pnpm 命令 ([7cd674b](https://git.bjxgj.com/xgj/spaceflow/commit/7cd674bf5e7466e34d96b7f91611c0092a1221ca))
|
|
720
|
+
* 修正 postinstall 脚本命令格式 ([3f0820f](https://git.bjxgj.com/xgj/spaceflow/commit/3f0820f85dee88808de921c3befe2d332f34cc36))
|
|
721
|
+
* 升级 claude-agent-sdk 版本从 0.2.1 到 0.2.7 ([0af82a3](https://git.bjxgj.com/xgj/spaceflow/commit/0af82a372a231356db18e5b9b36b172d8592ca6b))
|
|
722
|
+
* 在 PR 审查工作流中启用 --filter-no-commit 参数 ([e0024ad](https://git.bjxgj.com/xgj/spaceflow/commit/e0024ad5cb29250b452a841db2ce6ebf84016a2c))
|
|
723
|
+
* 将 PR 工作流任务名称从 test 改为 pr-review ([2239e5e](https://git.bjxgj.com/xgj/spaceflow/commit/2239e5ebdccb55a101b163e41350558d553a47e7))
|
|
724
|
+
* 恢复 pnpm catalog 配置并更新依赖锁定 ([0b2295c](https://git.bjxgj.com/xgj/spaceflow/commit/0b2295c1f906d89ad3ba7a61b04c6e6b94f193ef))
|
|
725
|
+
* 新增 .spaceflow/pnpm-workspace.yaml 防止被父级 workspace 接管并移除根项目 devDependencies 自动添加逻辑 ([61de3a2](https://git.bjxgj.com/xgj/spaceflow/commit/61de3a2b75e8a19b28563d2a6476158d19f6c5be))
|
|
726
|
+
* 新增 postinstall 钩子自动执行 setup 脚本 ([64dae0c](https://git.bjxgj.com/xgj/spaceflow/commit/64dae0cb440bd5e777cb790f826ff2d9f8fe65ba))
|
|
727
|
+
* 更新项目依赖锁定文件 ([19d2d1d](https://git.bjxgj.com/xgj/spaceflow/commit/19d2d1d86bb35b8ee5d3ad20be51b7aa68e83eff))
|
|
728
|
+
* 格式化actions构建产物并添加prettier忽略配置 ([94da118](https://git.bjxgj.com/xgj/spaceflow/commit/94da118b06bcaf1dc7a58044356453d129a85f87))
|
|
729
|
+
* 添加 ANTHROPIC_AUTH_TOKEN 环境变量调试日志 ([99e53d2](https://git.bjxgj.com/xgj/spaceflow/commit/99e53d200521d4be20cb901fc61c8e29cadc54b9))
|
|
730
|
+
* 禁用删除代码分析功能 ([988e3f1](https://git.bjxgj.com/xgj/spaceflow/commit/988e3f156f2ca4e92413bf7a455eba1760ad9eba))
|
|
731
|
+
* 移除 ANTHROPIC_AUTH_TOKEN 环境变量调试日志 ([eb41c65](https://git.bjxgj.com/xgj/spaceflow/commit/eb41c65e2bc21499d2f97966fd6c0396cdb1aef0))
|
|
732
|
+
* 移除 npm registry 配置文件 ([2d9fac6](https://git.bjxgj.com/xgj/spaceflow/commit/2d9fac6db79e81a09ca8e031190d0ebb2781cc31))
|
|
733
|
+
* 移除 postinstall 钩子避免依赖安装时自动执行构建 ([ea1dc85](https://git.bjxgj.com/xgj/spaceflow/commit/ea1dc85ce7d6cf23a98c13e2c21e3c3bcdf7dd79))
|
|
734
|
+
* 调整依赖配置并添加npm registry配置 ([a754db1](https://git.bjxgj.com/xgj/spaceflow/commit/a754db1bad1bafcea50b8d2825aaf19457778f2e))
|
|
735
|
+
* 调整项目依赖配置 ([6802386](https://git.bjxgj.com/xgj/spaceflow/commit/6802386f38f4081a3b5d5c47ddc49e9ec2e4f28d))
|
|
736
|
+
* 调整项目依赖配置 ([f4009cb](https://git.bjxgj.com/xgj/spaceflow/commit/f4009cb0c369b225c356584afb28a7ff5a1a89ec))
|
|
737
|
+
* 配置 pnpm 使用国内镜像源加速依赖安装 ([8976163](https://git.bjxgj.com/xgj/spaceflow/commit/8976163598fc0703bf4da407a929180e8e28ea84))
|
|
738
|
+
* 重命名 PR 工作流文件并优化 Gitea Token 获取逻辑 ([7d29722](https://git.bjxgj.com/xgj/spaceflow/commit/7d297221422354feacc7b6d5513265215dc3f90f))
|
|
739
|
+
* 重置所有包版本至 0.0.0 并清理 CHANGELOG 文件 ([f7efaf9](https://git.bjxgj.com/xgj/spaceflow/commit/f7efaf967467f1272e05d645720ee63941fe79be))
|
|
740
|
+
## 1.1.0 (2026-01-04)
|
|
741
|
+
|
|
742
|
+
### 新特性
|
|
743
|
+
|
|
744
|
+
* 支持在 gitea-flows 配置中自定义 release-it hooks ([e64d2dd](https://git.bjxgj.com/xgj/spaceflow/commit/e64d2ddec03244757419d00f33b51cb42f7c1e3f))
|
|
745
|
+
* 集成 release-it 插件并支持自定义配置 ([537674d](https://git.bjxgj.com/xgj/spaceflow/commit/537674d1d0c545ae8fcf17cf058b801d780a8bd0))
|
|
746
|
+
|
|
747
|
+
### 代码重构
|
|
748
|
+
|
|
749
|
+
* 将 changelog preset 配置迁移至 gitea-flows.config.js ([f8c030b](https://git.bjxgj.com/xgj/spaceflow/commit/f8c030bd8d13b6e036795f97a82221289f557cd9))
|
|
750
|
+
* 移除 gitea-flows 配置加载中的调试日志 ([d0715b5](https://git.bjxgj.com/xgj/spaceflow/commit/d0715b54d16ec3414b3bbc37d0db97e09c4b74d8))
|
|
751
|
+
|
|
752
|
+
### 其他修改
|
|
753
|
+
|
|
754
|
+
* released version v1.1.0 [no ci] ([051459b](https://git.bjxgj.com/xgj/spaceflow/commit/051459b1949d268821b2a9759ec3b70040eef646))
|
|
755
|
+
* update ([71e9155](https://git.bjxgj.com/xgj/spaceflow/commit/71e9155027070f4f1e5d8819eebaaa20ad1e825d))
|
|
756
|
+
* 新增 c12 配置加载器依赖 ([8d2ea34](https://git.bjxgj.com/xgj/spaceflow/commit/8d2ea34f90e8aaa063b9e73886bb16203e569d14))
|
|
757
|
+
## 1.0.1 (2026-01-04)
|
|
758
|
+
|
|
759
|
+
### 新特性
|
|
760
|
+
|
|
761
|
+
* 新增 --dry-run 模式并统一配置模块初始化 ([410644c](https://git.bjxgj.com/xgj/spaceflow/commit/410644c434aeed69cf7b87db9df4f8f5ae80724b))
|
|
762
|
+
* 新增 CI 发布命令及 Gitea SDK 集成 ([62f6962](https://git.bjxgj.com/xgj/spaceflow/commit/62f69624bce83ba4dd9b0ad9c52999afc3dd52f9))
|
|
763
|
+
* 新增通用存储模块,支持内存和文件两种适配器 ([492ad85](https://git.bjxgj.com/xgj/spaceflow/commit/492ad85bbcafecd21af895c4e26e77ffaff3b149))
|
|
764
|
+
* 新增飞书 SDK 集成及配置模块 ([7a888ea](https://git.bjxgj.com/xgj/spaceflow/commit/7a888ea3db60f79318c32080fce26ee16b5f64aa))
|
|
765
|
+
* 新增飞书卡片消息服务及事件处理机制 ([243da4b](https://git.bjxgj.com/xgj/spaceflow/commit/243da4b20a4ce9eaa7349f45528a78ecebdece5c))
|
|
766
|
+
* 集成 release-it 实现自动化版本发布 ([818cd95](https://git.bjxgj.com/xgj/spaceflow/commit/818cd958a1059c1494c08193bc20081e742ea6f6))
|
|
767
|
+
|
|
768
|
+
### 代码重构
|
|
769
|
+
|
|
770
|
+
* update name ([8a84bec](https://git.bjxgj.com/xgj/spaceflow/commit/8a84becb1b75c610ca51c54aa7c0141750b638fc))
|
|
771
|
+
* 将 StorageModule 设置为全局模块,简化应用集成 ([fca59a3](https://git.bjxgj.com/xgj/spaceflow/commit/fca59a312a8c252d7862441bb0bfdf89802cd714))
|
|
772
|
+
* 将卡片交互事件处理逻辑从 FeishuSdkService 迁移至 FeishuCardService ([1b7d625](https://git.bjxgj.com/xgj/spaceflow/commit/1b7d6252f23013d1995c806a15e625acc034fba8))
|
|
773
|
+
* 改名 ([9337388](https://git.bjxgj.com/xgj/spaceflow/commit/9337388a409ccfe8a41e78b7f045a036dbe3bc05))
|
|
774
|
+
* 注释掉 FeishuCardService 中的调试日志输出 ([20d0a50](https://git.bjxgj.com/xgj/spaceflow/commit/20d0a503274d90afcf9002d00fbdf1a807a33b6f))
|
|
775
|
+
* 简化卡片交互事件类型定义,使用类型继承替代字段展开 ([c732017](https://git.bjxgj.com/xgj/spaceflow/commit/c732017f293b98743670bd0eecacd5fabba40d50))
|
|
776
|
+
* 重构 ci-publish 命令,支持执行多个脚本并自动管理分支保护 ([1a9fcb9](https://git.bjxgj.com/xgj/spaceflow/commit/1a9fcb99b20b7ad26b79c6ac74b837ced11c5710))
|
|
777
|
+
* 重构 CLI 模块结构 ([cdd47b2](https://git.bjxgj.com/xgj/spaceflow/commit/cdd47b26fdd69e41698d372c7b43f0e7fbf0f6b4))
|
|
778
|
+
* 重构 Gitea SDK 服务命名及配置验证逻辑 ([758bb59](https://git.bjxgj.com/xgj/spaceflow/commit/758bb591a761081473a74ad44015648eca589b5f))
|
|
779
|
+
* 重构飞书 SDK 类型定义,优化卡片交互事件处理 ([9a6f3b7](https://git.bjxgj.com/xgj/spaceflow/commit/9a6f3b7596f967d8a282a0e000cab1b62b36e92f))
|
|
780
|
+
|
|
781
|
+
### 文档更新
|
|
782
|
+
|
|
783
|
+
* 添加项目文档和工作流配置文件 ([e3799c9](https://git.bjxgj.com/xgj/spaceflow/commit/e3799c9e3a2c23c4fb2ba38109f34120a6d2de32))
|
|
784
|
+
|
|
785
|
+
### 代码格式
|
|
786
|
+
|
|
787
|
+
* code ([1b648ca](https://git.bjxgj.com/xgj/spaceflow/commit/1b648ca79cc3e659cdd97e4c6536d794f57fb562))
|
|
788
|
+
|
|
789
|
+
### 其他修改
|
|
790
|
+
|
|
791
|
+
* init project ([22394d6](https://git.bjxgj.com/xgj/spaceflow/commit/22394d612d88935649e82371a646f25a84e8efe3))
|
|
792
|
+
* 初始化 monorepo 项目配置 ([ab92739](https://git.bjxgj.com/xgj/spaceflow/commit/ab92739e971300da227ae9223389c3d8676e2d12))
|
|
793
|
+
* 改名 ([3f0f489](https://git.bjxgj.com/xgj/spaceflow/commit/3f0f48929f8d381942d5b0541584e55fe0c9a063))
|
|
794
|
+
* 新增 publish-ci Action 项目及基础架构 ([c98e54e](https://git.bjxgj.com/xgj/spaceflow/commit/c98e54ed093d3a3d5251f3e58a7530cee514ca9c))
|
|
795
|
+
* 添加 CLI 可执行文件配置 ([4bd9bdb](https://git.bjxgj.com/xgj/spaceflow/commit/4bd9bdb02da6368be72fad0a8d0374311f21dec9))
|
|
796
|
+
* 添加 publish-mp 工作区及其依赖项 ([2caa90e](https://git.bjxgj.com/xgj/spaceflow/commit/2caa90e074763ab4c2e92d6bd869c1e35fa263d8))
|
|
797
|
+
* 移除 Gitea SDK 类型定义中的内联 ESLint 禁用注释 ([4719099](https://git.bjxgj.com/xgj/spaceflow/commit/471909928f6a4299f476a65e893e73f4014f7b75))
|
|
798
|
+
* 调整 ESLint 规则,禁用 TypeScript unsafe 相关警告 ([61bcdca](https://git.bjxgj.com/xgj/spaceflow/commit/61bcdcabbacdde522b91183086cab20ef2553e8d))
|
|
799
|
+
* 迁移至 oxlint 和 oxfmt,移除 ESLint 和 Prettier 依赖 ([d5d252f](https://git.bjxgj.com/xgj/spaceflow/commit/d5d252ffc00b05dcb6c9bb9a467698d2fcf27588))
|
|
800
|
+
* 迁移至 pnpm catalog 协议统一管理依赖版本 ([474529b](https://git.bjxgj.com/xgj/spaceflow/commit/474529b8b3aa9ce5417d7ed1061dd4417e736ca7))
|
|
801
|
+
|
|
802
|
+
## [0.18.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.17.0...@spaceflow/cli@0.18.0) (2026-02-04)
|
|
803
|
+
|
|
804
|
+
### 代码重构
|
|
805
|
+
|
|
806
|
+
* **verbose:** 扩展 verbose 级别支持至 3 ([c1a0808](https://git.bjxgj.com/xgj/spaceflow/commit/c1a080859e5d25ca1eb3dc7e00a67b32eb172635))
|
|
807
|
+
|
|
808
|
+
### 其他修改
|
|
809
|
+
|
|
810
|
+
* **ci-scripts:** released version 0.17.0 [no ci] ([31abd3d](https://git.bjxgj.com/xgj/spaceflow/commit/31abd3dcb48e2ddea5175552c0a87c1eaa1e7a41))
|
|
811
|
+
* **ci-shell:** released version 0.17.0 [no ci] ([a53508b](https://git.bjxgj.com/xgj/spaceflow/commit/a53508b15e4020e3399bae9cc04e730f1539ad8e))
|
|
812
|
+
* **period-summary:** released version 0.17.0 [no ci] ([ac4e5b6](https://git.bjxgj.com/xgj/spaceflow/commit/ac4e5b6083773146ac840548a69006f6c4fbac1d))
|
|
813
|
+
* **publish:** released version 0.19.0 [no ci] ([7a96bca](https://git.bjxgj.com/xgj/spaceflow/commit/7a96bca945434a99f7d051a38cb31adfd2ade5d2))
|
|
814
|
+
* **review:** released version 0.27.0 [no ci] ([ac3fc5a](https://git.bjxgj.com/xgj/spaceflow/commit/ac3fc5a5d7317d537d0447e05a61bef15a1accbe))
|
|
815
|
+
|
|
816
|
+
## [0.17.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.16.0...@spaceflow/cli@0.17.0) (2026-02-04)
|
|
817
|
+
|
|
818
|
+
### 新特性
|
|
819
|
+
|
|
820
|
+
- **review:** 新增 override 作用域测试,验证 includes 对 override 过滤的影响 ([820e0cb](https://git.bjxgj.com/xgj/spaceflow/commit/820e0cb0f36783dc1c7e1683ad08501e91f094b2))
|
|
821
|
+
|
|
822
|
+
### 修复BUG
|
|
823
|
+
|
|
824
|
+
- **core:** 从 PR diff 填充缺失的 patch 字段 ([24bfaa7](https://git.bjxgj.com/xgj/spaceflow/commit/24bfaa76f3bd56c8ead307e73e0623a2221c69cf))
|
|
825
|
+
- **review:** 新增 getFileContents、getChangedFilesBetweenRefs 和 filterIssuesByValidCommits 方法的单元测试 ([7618c91](https://git.bjxgj.com/xgj/spaceflow/commit/7618c91bc075d218b9f51b862e5161d15a306bf8))
|
|
826
|
+
|
|
827
|
+
### 代码重构
|
|
828
|
+
|
|
829
|
+
- **config:** 降低并发数以优化 AI 审查性能 ([052dd72](https://git.bjxgj.com/xgj/spaceflow/commit/052dd728f759da0a31e86a0ad480e9bb35052781))
|
|
830
|
+
- **review:** 优化 Markdown 格式化器的代码风格和 JSON 数据输出逻辑 ([ca1b0c9](https://git.bjxgj.com/xgj/spaceflow/commit/ca1b0c96d9d0663a8b8dc93b4a9f63d4e5590df0))
|
|
831
|
+
- **review:** 优化 override 和变更行过滤的日志输出,增强调试信息的可读性 ([9a7c6f5](https://git.bjxgj.com/xgj/spaceflow/commit/9a7c6f5b4ef2b8ae733fa499a0e5ec82feebc1d2))
|
|
832
|
+
- **review:** 使用 Base64 编码存储审查数据,避免 JSON 格式在 Markdown 中被转义 ([fb91e30](https://git.bjxgj.com/xgj/spaceflow/commit/fb91e30d0979cfe63ed8e7657c578db618b5e783))
|
|
833
|
+
- **review:** 基于 fileContents 实际 commit hash 验证问题归属,替代依赖 LLM 填写的 commit 字段 ([de3e377](https://git.bjxgj.com/xgj/spaceflow/commit/de3e3771eb85ff93200c63fa9feb38941914a07d))
|
|
834
|
+
- **review:** 新增测试方法用于验证 PR 审查功能 ([5c57833](https://git.bjxgj.com/xgj/spaceflow/commit/5c578332cedffb7fa7e5ad753a788bcd55595c68))
|
|
835
|
+
- **review:** 移除 filterNoCommit 配置项,统一使用基于 commit hash 的问题过滤逻辑 ([82429b1](https://git.bjxgj.com/xgj/spaceflow/commit/82429b1072affb4f2b14d52f99887e12184d8218))
|
|
836
|
+
- **review:** 移除测试方法 testMethod ([21e9938](https://git.bjxgj.com/xgj/spaceflow/commit/21e9938100c5dd7d4eada022441c565b5c41a55a))
|
|
837
|
+
- **review:** 统一使用 parseLineRange 方法解析行号,避免重复的正则匹配逻辑 ([c64f96a](https://git.bjxgj.com/xgj/spaceflow/commit/c64f96aa2e1a8e22dcd3e31e1a2acc1bb338a1a8))
|
|
838
|
+
- **review:** 调整 filterIssuesByValidCommits 逻辑,保留无 commit 的 issue 交由 filterNoCommit 配置处理 ([e9c5d47](https://git.bjxgj.com/xgj/spaceflow/commit/e9c5d47aebef42507fd9fcd67e5eab624437e81a))
|
|
839
|
+
- **review:** 过滤 merge commits,避免在代码审查中处理合并提交 ([d7c647c](https://git.bjxgj.com/xgj/spaceflow/commit/d7c647c33156a58b42bfb45a67417723b75328c6))
|
|
840
|
+
- **review:** 过滤非 PR commits 的问题,避免 merge commit 引入的代码被审查 ([9e20f54](https://git.bjxgj.com/xgj/spaceflow/commit/9e20f54d57e71725432dfb9e7c943946aa6677d4))
|
|
841
|
+
|
|
842
|
+
### 测试用例
|
|
843
|
+
|
|
844
|
+
- **review:** 新增新增文件无 patch 时的测试用例,优化变更行标记逻辑 ([a593f0d](https://git.bjxgj.com/xgj/spaceflow/commit/a593f0d4a641b348f7c9d30b14f639b24c12dcfa))
|
|
845
|
+
|
|
846
|
+
### 其他修改
|
|
847
|
+
|
|
848
|
+
- **ci-scripts:** released version 0.16.0 [no ci] ([9ab007d](https://git.bjxgj.com/xgj/spaceflow/commit/9ab007db178878e093ba93ea27c4f05ca813a65d))
|
|
849
|
+
- **ci-shell:** released version 0.16.0 [no ci] ([87fd703](https://git.bjxgj.com/xgj/spaceflow/commit/87fd7030b54d2f614f23e092499c5c51bfc33788))
|
|
850
|
+
- **period-summary:** released version 0.16.0 [no ci] ([b214e31](https://git.bjxgj.com/xgj/spaceflow/commit/b214e31221d5afa04481c48d9ddb878644a22ae7))
|
|
851
|
+
- **publish:** released version 0.18.0 [no ci] ([2f2ce01](https://git.bjxgj.com/xgj/spaceflow/commit/2f2ce01726f7b3e4387e23a17974b58acd3e6929))
|
|
852
|
+
- **review:** released version 0.20.0 [no ci] ([8b0f82f](https://git.bjxgj.com/xgj/spaceflow/commit/8b0f82f94813c79d579dbae8decb471b20e45e9d))
|
|
853
|
+
- **review:** released version 0.21.0 [no ci] ([b51a1dd](https://git.bjxgj.com/xgj/spaceflow/commit/b51a1ddcba3e6a4b3b3eb947864e731d8f87d62b))
|
|
854
|
+
- **review:** released version 0.22.0 [no ci] ([fca3bfc](https://git.bjxgj.com/xgj/spaceflow/commit/fca3bfc0c53253ac78566e88c7e5d31020a3896b))
|
|
855
|
+
- **review:** released version 0.23.0 [no ci] ([ed5bf22](https://git.bjxgj.com/xgj/spaceflow/commit/ed5bf22819094df070708c2724669d0b5f7b9008))
|
|
856
|
+
- **review:** released version 0.24.0 [no ci] ([5f1f94e](https://git.bjxgj.com/xgj/spaceflow/commit/5f1f94ee02123baa05802fb2bb038ccf9d50a0cc))
|
|
857
|
+
- **review:** released version 0.25.0 [no ci] ([69cfeaf](https://git.bjxgj.com/xgj/spaceflow/commit/69cfeaf768e4bf7b2aaba6f089064469338a1ac0))
|
|
858
|
+
- **review:** released version 0.26.0 [no ci] ([dec9c7e](https://git.bjxgj.com/xgj/spaceflow/commit/dec9c7ec66455cf83588368c930d12510ada6c0f))
|
|
859
|
+
|
|
860
|
+
## [0.16.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.15.0...@spaceflow/cli@0.16.0) (2026-02-02)
|
|
861
|
+
|
|
862
|
+
### 新特性
|
|
863
|
+
|
|
864
|
+
- **core:** 新增 Git diff 行号映射工具并优化 Claude 配置 ([88ef340](https://git.bjxgj.com/xgj/spaceflow/commit/88ef3400127fac3ad52fc326ad79fdc7bd058e98))
|
|
865
|
+
- **review:** 为 execute 方法添加文档注释 ([a21f582](https://git.bjxgj.com/xgj/spaceflow/commit/a21f58290c873fb07789e70c8c5ded2b5874a29d))
|
|
866
|
+
- **review:** 为 getPrNumberFromEvent 方法添加文档注释 ([54d1586](https://git.bjxgj.com/xgj/spaceflow/commit/54d1586f4558b5bfde81b926c7b513a32e5caf89))
|
|
867
|
+
- **review:** 优化行号更新统计,分别统计更新和标记无效的问题数量 ([892b8be](https://git.bjxgj.com/xgj/spaceflow/commit/892b8bed8913531a9440579f777b1965fec772e5))
|
|
868
|
+
|
|
869
|
+
### 代码重构
|
|
870
|
+
|
|
871
|
+
- **review:** 优化历史 issue commit 匹配逻辑,支持短 SHA 与完整 SHA 的前缀匹配 ([e30c6dd](https://git.bjxgj.com/xgj/spaceflow/commit/e30c6ddefb14ec6631ce341f1d45c59786e94a46))
|
|
872
|
+
- **review:** 简化历史问题处理策略,将行号更新改为标记变更文件问题为无效 ([5df7f00](https://git.bjxgj.com/xgj/spaceflow/commit/5df7f0087c493e104fe0dc054fd0b6c19ebe3500))
|
|
873
|
+
- **review:** 简化行号更新逻辑,使用最新 commit diff 替代增量 diff ([6de7529](https://git.bjxgj.com/xgj/spaceflow/commit/6de7529c90ecbcee82149233fc01c393c5c4e7f7))
|
|
874
|
+
- **review:** 重构行号更新逻辑,使用增量 diff 替代全量 diff ([d4f4304](https://git.bjxgj.com/xgj/spaceflow/commit/d4f4304e1e41614f7be8946d457eea1cf4e202fb))
|
|
875
|
+
|
|
876
|
+
### 测试用例
|
|
877
|
+
|
|
878
|
+
- **review:** 添加单元测试以覆盖行号更新逻辑 ([ebf33e4](https://git.bjxgj.com/xgj/spaceflow/commit/ebf33e45c18c910b88b106cdd4cfeb516b3fb656))
|
|
879
|
+
|
|
880
|
+
### 其他修改
|
|
881
|
+
|
|
882
|
+
- **actions:** 增强命令执行日志,输出原始 command 和 args 参数 ([0f0c238](https://git.bjxgj.com/xgj/spaceflow/commit/0f0c238de7d6f10875022f364746cefa56631b7f))
|
|
883
|
+
- **ci-scripts:** released version 0.15.0 [no ci] ([e314fb1](https://git.bjxgj.com/xgj/spaceflow/commit/e314fb11e7425b27c337d3650857cf3b737051fd))
|
|
884
|
+
- **ci-shell:** released version 0.15.0 [no ci] ([5c0dc0b](https://git.bjxgj.com/xgj/spaceflow/commit/5c0dc0b5482366ccfd7854868d1eb5f306c24810))
|
|
885
|
+
- **period-summary:** released version 0.15.0 [no ci] ([3dd72cb](https://git.bjxgj.com/xgj/spaceflow/commit/3dd72cb65a422b5b008a83820e799b810a6d53eb))
|
|
886
|
+
- **publish:** released version 0.17.0 [no ci] ([8e0d065](https://git.bjxgj.com/xgj/spaceflow/commit/8e0d0654040d6af7e99fa013a8255aa93acbcc3a))
|
|
887
|
+
- **review:** released version 0.19.0 [no ci] ([0ba5c0a](https://git.bjxgj.com/xgj/spaceflow/commit/0ba5c0a39879b598da2d774acc0834c590ef6d4c))
|
|
888
|
+
- 在 PR 审查工作流中启用 --filter-no-commit 参数 ([e0024ad](https://git.bjxgj.com/xgj/spaceflow/commit/e0024ad5cb29250b452a841db2ce6ebf84016a2c))
|
|
889
|
+
- 禁用删除代码分析功能 ([988e3f1](https://git.bjxgj.com/xgj/spaceflow/commit/988e3f156f2ca4e92413bf7a455eba1760ad9eba))
|
|
890
|
+
|
|
891
|
+
## [0.15.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.14.0...@spaceflow/cli@0.15.0) (2026-02-02)
|
|
892
|
+
|
|
893
|
+
### 新特性
|
|
894
|
+
|
|
895
|
+
- **core:** 在 Gitea SDK 中新增编辑 Pull Request 的方法 ([a586bf1](https://git.bjxgj.com/xgj/spaceflow/commit/a586bf110789578f23b39d64511229a1e5635dc4))
|
|
896
|
+
- **core:** 在 Gitea SDK 中新增获取 reactions 的方法 ([9324cf2](https://git.bjxgj.com/xgj/spaceflow/commit/9324cf2550709b8302171e5522d0792c08bc1415))
|
|
897
|
+
- **review:** 优化 commit author 获取逻辑,支持 committer 作为备选 ([b75b613](https://git.bjxgj.com/xgj/spaceflow/commit/b75b6133e5b8c95580516480315bc979fc6eb59b))
|
|
898
|
+
- **review:** 优化 commit author 获取逻辑,支持从 Git 原始作者信息中提取 ([10ac821](https://git.bjxgj.com/xgj/spaceflow/commit/10ac8210a4457e0356c3bc1645f54f6f3d8c904c))
|
|
899
|
+
- **review:** 优化 commit author 获取逻辑,通过 Gitea API 搜索用户以关联 Git 原始作者 ([daa274b](https://git.bjxgj.com/xgj/spaceflow/commit/daa274bba2255e92d1e9a6e049e20846a69e8df7))
|
|
900
|
+
- **review:** 优化 PR 标题生成的格式要求 ([a4d807d](https://git.bjxgj.com/xgj/spaceflow/commit/a4d807d0a4feee4ccc88c6096e069c6dbb650a03))
|
|
901
|
+
- **review:** 优化 verbose 参数支持多级别累加,将日志级别扩展为 0-3 级 ([fe4c830](https://git.bjxgj.com/xgj/spaceflow/commit/fe4c830cac137c5502d700d2cd5f22b52a629e5f))
|
|
902
|
+
- **review:** 优化历史问题的 author 信息填充逻辑 ([b18d171](https://git.bjxgj.com/xgj/spaceflow/commit/b18d171c9352fe5815262d43ffd9cd7751f03a4e))
|
|
903
|
+
- **review:** 优化审查报告中回复消息的格式显示 ([f478c8d](https://git.bjxgj.com/xgj/spaceflow/commit/f478c8da4c1d7494819672006e3230dbc8e0924d))
|
|
904
|
+
- **review:** 优化审查报告中的消息展示格式 ([0996c2b](https://git.bjxgj.com/xgj/spaceflow/commit/0996c2b45c9502c84308f8a7f9186e4dbd4164fb))
|
|
905
|
+
- **review:** 优化问题 author 信息填充时机,统一在所有问题合并后填充 ([ea8c586](https://git.bjxgj.com/xgj/spaceflow/commit/ea8c586fc60061ffd339e85c6c298b905bdfdcd8))
|
|
906
|
+
- **review:** 优化问题展示和无效标记逻辑 ([e2b45e1](https://git.bjxgj.com/xgj/spaceflow/commit/e2b45e1ec594488bb79f528911fd6009a3213eca))
|
|
907
|
+
- **review:** 在 fillIssueAuthors 方法中添加详细的调试日志 ([42ab288](https://git.bjxgj.com/xgj/spaceflow/commit/42ab288933296abdeeb3dbbedbb2aecedbea2251))
|
|
908
|
+
- **review:** 在 syncReactionsToIssues 中添加详细日志并修复团队成员获取逻辑 ([91f166a](https://git.bjxgj.com/xgj/spaceflow/commit/91f166a07c2e43dabd4dd4ac186ec7b5f03dfc71))
|
|
909
|
+
- **review:** 在审查报告的回复中为用户名添加 @ 前缀 ([bc6186b](https://git.bjxgj.com/xgj/spaceflow/commit/bc6186b97f0764f6335690eca1f8af665f9b7629))
|
|
910
|
+
- **review:** 在审查问题中添加作者信息填充功能 ([8332dba](https://git.bjxgj.com/xgj/spaceflow/commit/8332dba4bb826cd358dc96db5f9b9406fb23df9b))
|
|
911
|
+
- **review:** 将审查命令的详细日志参数从 --verbose 简化为 -vv ([5eb320b](https://git.bjxgj.com/xgj/spaceflow/commit/5eb320b92d1f7165052730b2e90eee52367391dd))
|
|
912
|
+
- **review:** 扩展评审人收集逻辑,支持从 PR 指定的评审人和团队中获取 ([bbd61af](https://git.bjxgj.com/xgj/spaceflow/commit/bbd61af9d3e2b9e1dcf28c5e3867645fdda52e6f))
|
|
913
|
+
- **review:** 支持 AI 自动生成和更新 PR 标题 ([e02fb02](https://git.bjxgj.com/xgj/spaceflow/commit/e02fb027d525dd3e794d649e6dbc53c99a3a9a59))
|
|
914
|
+
- **review:** 支持 PR 关闭事件触发审查并自动传递事件类型参数 ([03967d9](https://git.bjxgj.com/xgj/spaceflow/commit/03967d9e860af7da06e3c04539f16c7bb31557ff))
|
|
915
|
+
- **review:** 支持在审查报告中展示评论的 reactions 和回复记录 ([f4da31a](https://git.bjxgj.com/xgj/spaceflow/commit/f4da31adf6ce412cb0ce27bfe7a1e87e5350e915))
|
|
916
|
+
- **review:** 移除 handleReview 中的重复 author 填充逻辑 ([e458bfd](https://git.bjxgj.com/xgj/spaceflow/commit/e458bfd0d21724c37fdd4023265d6a2dd1700404))
|
|
917
|
+
- **review:** 限制 PR 标题自动更新仅在第一轮审查时执行 ([1891cbc](https://git.bjxgj.com/xgj/spaceflow/commit/1891cbc8d85f6eaef9e7107a7f1003bdc654d3a3))
|
|
918
|
+
- **review:** 默认启用 PR 标题自动更新功能 ([fda6656](https://git.bjxgj.com/xgj/spaceflow/commit/fda6656efaf6479bb398ddc5cb1955142f31f369))
|
|
919
|
+
|
|
920
|
+
### 修复BUG
|
|
921
|
+
|
|
922
|
+
- **actions:** 修复日志输出中的 emoji 显示问题,将 � 替换为 ℹ️ ([d3cd94a](https://git.bjxgj.com/xgj/spaceflow/commit/d3cd94afa9c6893b923d316fdcb5904f42ded632))
|
|
923
|
+
- **review:** 修复审查完成日志中的乱码 emoji ([36c1c48](https://git.bjxgj.com/xgj/spaceflow/commit/36c1c48faecda3cc02b9e0b097aebba0a85ea5f8))
|
|
924
|
+
- **review:** 将 UserInfo 的 id 字段类型从 number 改为 string ([505e019](https://git.bjxgj.com/xgj/spaceflow/commit/505e019c85d559ce1def1350599c1de218f7516a))
|
|
925
|
+
|
|
926
|
+
### 其他修改
|
|
927
|
+
|
|
928
|
+
- **ci-scripts:** released version 0.14.0 [no ci] ([c536208](https://git.bjxgj.com/xgj/spaceflow/commit/c536208e352baa82e5b56c490ea9df0aff116cb2))
|
|
929
|
+
- **ci-shell:** released version 0.14.0 [no ci] ([c6e4bdc](https://git.bjxgj.com/xgj/spaceflow/commit/c6e4bdca44874739694e3e46998e376779503e53))
|
|
930
|
+
- **period-summary:** released version 0.14.0 [no ci] ([55a72f2](https://git.bjxgj.com/xgj/spaceflow/commit/55a72f2b481e5ded1d9207a5a8d6a6864328d5a0))
|
|
931
|
+
- **publish:** released version 0.16.0 [no ci] ([e31e46d](https://git.bjxgj.com/xgj/spaceflow/commit/e31e46d08fccb10a42b6579fa042aa6c57d79c8a))
|
|
932
|
+
- **review:** released version 0.18.0 [no ci] ([d366e3f](https://git.bjxgj.com/xgj/spaceflow/commit/d366e3fa9c1b32369a3d98e56fc873e033d71d00))
|
|
933
|
+
|
|
934
|
+
## [0.14.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.13.0...@spaceflow/cli@0.14.0) (2026-01-31)
|
|
935
|
+
|
|
936
|
+
### 修复BUG
|
|
937
|
+
|
|
938
|
+
- **core:** 统一所有命令的错误处理,添加堆栈信息输出 ([31224a1](https://git.bjxgj.com/xgj/spaceflow/commit/31224a16ce7155402504bd8d3e386e59e47949df))
|
|
939
|
+
- **review:** 增强错误处理,添加堆栈信息输出 ([e0fb5de](https://git.bjxgj.com/xgj/spaceflow/commit/e0fb5de6bc877d8f0b3dc3c03f8d614320427bf3))
|
|
940
|
+
|
|
941
|
+
### 其他修改
|
|
942
|
+
|
|
943
|
+
- **ci-scripts:** released version 0.13.0 [no ci] ([021eefd](https://git.bjxgj.com/xgj/spaceflow/commit/021eefdf2ff72d16b36123335548df2d3ad1d6b7))
|
|
944
|
+
- **ci-shell:** released version 0.13.0 [no ci] ([81e7582](https://git.bjxgj.com/xgj/spaceflow/commit/81e75820eb69ca188155e33945111e2b1f6b3012))
|
|
945
|
+
- **period-summary:** released version 0.13.0 [no ci] ([1d47460](https://git.bjxgj.com/xgj/spaceflow/commit/1d47460e40ba422a32865ccddd353e089eb91c6a))
|
|
946
|
+
- **publish:** released version 0.15.0 [no ci] ([4b09122](https://git.bjxgj.com/xgj/spaceflow/commit/4b091227265a57f0a05488749eb4852fb421a06e))
|
|
947
|
+
- **review:** released version 0.17.0 [no ci] ([9f25412](https://git.bjxgj.com/xgj/spaceflow/commit/9f254121557ae238e32f4093b0c8b5dd8a4b9a72))
|
|
948
|
+
|
|
949
|
+
## [0.13.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.12.0...@spaceflow/cli@0.13.0) (2026-01-31)
|
|
950
|
+
|
|
951
|
+
### 新特性
|
|
952
|
+
|
|
953
|
+
- **review:** 为删除影响分析添加文件过滤功能 ([7304293](https://git.bjxgj.com/xgj/spaceflow/commit/73042937c5271ff4b0dcb6cd6d823e5aa0c03e7b))
|
|
954
|
+
- **review:** 新增过滤无commit问题的选项 ([7a4c458](https://git.bjxgj.com/xgj/spaceflow/commit/7a4c458da03ae4a4646abca7e5f03abc849dc405))
|
|
955
|
+
|
|
956
|
+
### 修复BUG
|
|
957
|
+
|
|
958
|
+
- **core:** 修复 resolveRef 方法未处理空 ref 参数的问题 ([0824c83](https://git.bjxgj.com/xgj/spaceflow/commit/0824c8392482263036888b2fec95935371d67d4d))
|
|
959
|
+
- **review:** 修复参数空值检查,增强代码健壮性 ([792a192](https://git.bjxgj.com/xgj/spaceflow/commit/792a192fd5dd80ed1e6d85cd61f6ce997bcc9dd9))
|
|
960
|
+
- **review:** 修复按指定提交过滤时未处理空值导致的潜在问题 ([5d4d3e0](https://git.bjxgj.com/xgj/spaceflow/commit/5d4d3e0390a50c01309bb09e01c7328b211271b8))
|
|
961
|
+
|
|
962
|
+
### 其他修改
|
|
963
|
+
|
|
964
|
+
- **ci-scripts:** released version 0.12.0 [no ci] ([097863f](https://git.bjxgj.com/xgj/spaceflow/commit/097863f0c5cc46cb5cb930f14a6f379f60a13f08))
|
|
965
|
+
- **ci-shell:** released version 0.12.0 [no ci] ([274216f](https://git.bjxgj.com/xgj/spaceflow/commit/274216fc930dfbf8390d02e25c06efcb44980fed))
|
|
966
|
+
- **period-summary:** released version 0.12.0 [no ci] ([38490aa](https://git.bjxgj.com/xgj/spaceflow/commit/38490aa75ab20789c5495a5d8d009867f954af4f))
|
|
967
|
+
- **publish:** released version 0.14.0 [no ci] ([fe0e140](https://git.bjxgj.com/xgj/spaceflow/commit/fe0e14058a364362d7d218da9b34dbb5d8fb8f42))
|
|
968
|
+
- **review:** released version 0.13.0 [no ci] ([4214c44](https://git.bjxgj.com/xgj/spaceflow/commit/4214c4406ab5482b151ec3c00da376b1d3d50887))
|
|
969
|
+
- **review:** released version 0.14.0 [no ci] ([4165b05](https://git.bjxgj.com/xgj/spaceflow/commit/4165b05f8aab90d753193f3c1c2800e7f03ea4de))
|
|
970
|
+
- **review:** released version 0.15.0 [no ci] ([a2ab86d](https://git.bjxgj.com/xgj/spaceflow/commit/a2ab86d097943924749876769f0a144926178783))
|
|
971
|
+
- **review:** released version 0.16.0 [no ci] ([64c8866](https://git.bjxgj.com/xgj/spaceflow/commit/64c88666fc7e84ced013198d3a53a8c75c7889eb))
|
|
972
|
+
|
|
973
|
+
## [0.12.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.11.0...@spaceflow/cli@0.12.0) (2026-01-31)
|
|
974
|
+
|
|
975
|
+
### 新特性
|
|
976
|
+
|
|
977
|
+
- **core:** 为 CLI 入口文件添加 Node shebang 支持 ([0d787d3](https://git.bjxgj.com/xgj/spaceflow/commit/0d787d329e69f2b53d26ba04720d60625ca51efd))
|
|
978
|
+
|
|
979
|
+
### 其他修改
|
|
980
|
+
|
|
981
|
+
- **ci-scripts:** released version 0.11.0 [no ci] ([d4f5bba](https://git.bjxgj.com/xgj/spaceflow/commit/d4f5bba6f89e9e051dde8d313b6e102c6dadfa41))
|
|
982
|
+
- **ci-shell:** released version 0.11.0 [no ci] ([cf9e486](https://git.bjxgj.com/xgj/spaceflow/commit/cf9e48666197295f118396693abc08b680b3ddee))
|
|
983
|
+
- **period-summary:** released version 0.11.0 [no ci] ([b518887](https://git.bjxgj.com/xgj/spaceflow/commit/b518887bddd5a452c91148bac64d61ec64b0b509))
|
|
984
|
+
- **publish:** released version 0.13.0 [no ci] ([1d308d9](https://git.bjxgj.com/xgj/spaceflow/commit/1d308d9e32c50902dd881144ff541204d368006f))
|
|
985
|
+
- **review:** released version 0.12.0 [no ci] ([3da605e](https://git.bjxgj.com/xgj/spaceflow/commit/3da605ea103192070f1c63112ad896a33fbc4312))
|
|
986
|
+
|
|
987
|
+
## [0.11.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.10.0...@spaceflow/cli@0.11.0) (2026-01-29)
|
|
988
|
+
|
|
989
|
+
### 新特性
|
|
990
|
+
|
|
991
|
+
- **core:** 优化 commit message 的 scope 处理逻辑 ([42869dd](https://git.bjxgj.com/xgj/spaceflow/commit/42869dd4bde0a3c9bf8ffb827182775e2877a57b))
|
|
992
|
+
- **core:** 重构 commit 服务并添加结构化 commit message 支持 ([22b4db8](https://git.bjxgj.com/xgj/spaceflow/commit/22b4db8619b0ce038667ab42dea1362706887fc9))
|
|
993
|
+
|
|
994
|
+
### 其他修改
|
|
995
|
+
|
|
996
|
+
- **ci-scripts:** released version 0.10.0 [no ci] ([ca2daad](https://git.bjxgj.com/xgj/spaceflow/commit/ca2daada8b04bbe809e69a3d5bd9373e897c6f40))
|
|
997
|
+
- **ci-shell:** released version 0.10.0 [no ci] ([53864b8](https://git.bjxgj.com/xgj/spaceflow/commit/53864b8c2534cae265b8fbb98173a5b909682d4e))
|
|
998
|
+
- **period-summary:** released version 0.10.0 [no ci] ([c1ca3bb](https://git.bjxgj.com/xgj/spaceflow/commit/c1ca3bb67fa7f9dbb4de152f0461d644f3044946))
|
|
999
|
+
- **publish:** released version 0.12.0 [no ci] ([50e209e](https://git.bjxgj.com/xgj/spaceflow/commit/50e209ebc57504462ed192a0fe22f6f944165fa3))
|
|
1000
|
+
- **review:** released version 0.11.0 [no ci] ([150cd9d](https://git.bjxgj.com/xgj/spaceflow/commit/150cd9df7d380c26e6f3f7f0dfd027022f610e6e))
|
|
1001
|
+
|
|
1002
|
+
## [0.10.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.9.0...@spaceflow/cli@0.10.0) (2026-01-29)
|
|
1003
|
+
|
|
1004
|
+
### 新特性
|
|
1005
|
+
|
|
1006
|
+
- **core:** 优化 npm 包名处理逻辑 ([ae23ebd](https://git.bjxgj.com/xgj/spaceflow/commit/ae23ebdc3144b611e1aa8c4e66bf0db074d09798))
|
|
1007
|
+
- **core:** 添加依赖更新功能 ([1a544eb](https://git.bjxgj.com/xgj/spaceflow/commit/1a544eb5e2b64396a0187d4518595e9dcb51d73e))
|
|
1008
|
+
- **review:** 支持绝对路径转换为相对路径 ([9050f64](https://git.bjxgj.com/xgj/spaceflow/commit/9050f64b8ef67cb2c8df9663711a209523ae9d18))
|
|
1009
|
+
|
|
1010
|
+
### 其他修改
|
|
1011
|
+
|
|
1012
|
+
- **ci-scripts:** released version 0.9.0 [no ci] ([1b9e816](https://git.bjxgj.com/xgj/spaceflow/commit/1b9e8167bb8fc67fcc439b2ef82e7a63dc323e6d))
|
|
1013
|
+
- **ci-shell:** released version 0.9.0 [no ci] ([accdda7](https://git.bjxgj.com/xgj/spaceflow/commit/accdda7ee4628dc8447e9a89da6c8101c572cb90))
|
|
1014
|
+
- **period-summary:** released version 0.9.0 [no ci] ([ac03f9b](https://git.bjxgj.com/xgj/spaceflow/commit/ac03f9bcff742d669c6e8b2f94e40153b6c298f5))
|
|
1015
|
+
- **publish:** released version 0.11.0 [no ci] ([df17cd1](https://git.bjxgj.com/xgj/spaceflow/commit/df17cd1250c8fd8a035eb073d292885a4b1e3322))
|
|
1016
|
+
- **review:** released version 0.10.0 [no ci] ([6465de8](https://git.bjxgj.com/xgj/spaceflow/commit/6465de8751028787efb509670988c62b4dbbdf2a))
|
|
1017
|
+
- **review:** released version 0.9.0 [no ci] ([13dd62c](https://git.bjxgj.com/xgj/spaceflow/commit/13dd62c6f307aa6d3b78c34f485393434036fe59))
|
|
1018
|
+
|
|
1019
|
+
## [0.9.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.8.0...@spaceflow/cli@0.9.0) (2026-01-28)
|
|
1020
|
+
|
|
1021
|
+
### 新特性
|
|
1022
|
+
|
|
1023
|
+
- **core:** 为 npm 包添加 npx 直接执行支持 ([e67a7da](https://git.bjxgj.com/xgj/spaceflow/commit/e67a7da34c4e41408760da4de3a499495ce0df2f))
|
|
1024
|
+
|
|
1025
|
+
### 其他修改
|
|
1026
|
+
|
|
1027
|
+
- **ci-scripts:** released version 0.8.0 [no ci] ([be6273d](https://git.bjxgj.com/xgj/spaceflow/commit/be6273dab7f1c80c58abdb8de6f0eeb986997e28))
|
|
1028
|
+
- **ci-shell:** released version 0.8.0 [no ci] ([3102178](https://git.bjxgj.com/xgj/spaceflow/commit/310217827c6ec29294dee5689b2dbb1b66492728))
|
|
1029
|
+
- **period-summary:** released version 0.8.0 [no ci] ([44ff3c5](https://git.bjxgj.com/xgj/spaceflow/commit/44ff3c505b243e1291565e354e239ce893e5e47c))
|
|
1030
|
+
- **publish:** released version 0.10.0 [no ci] ([8722ba9](https://git.bjxgj.com/xgj/spaceflow/commit/8722ba9eddb03c2f73539f4e09c504ed9491a5eb))
|
|
1031
|
+
- **review:** released version 0.8.0 [no ci] ([ec6e7e5](https://git.bjxgj.com/xgj/spaceflow/commit/ec6e7e5defd2a5a6349d3530f3b0f4732dd5bb62))
|
|
1032
|
+
|
|
1033
|
+
## [0.8.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.7.0...@spaceflow/cli@0.8.0) (2026-01-28)
|
|
1034
|
+
|
|
1035
|
+
### 新特性
|
|
1036
|
+
|
|
1037
|
+
- **core:** 优化 commit 消息生成器中的 scope 处理逻辑 ([1592079](https://git.bjxgj.com/xgj/spaceflow/commit/1592079edde659fe94a02bb6e2dea555c80d3b6b))
|
|
1038
|
+
|
|
1039
|
+
### 其他修改
|
|
1040
|
+
|
|
1041
|
+
- **ci-scripts:** released version 0.7.0 [no ci] ([ea294e1](https://git.bjxgj.com/xgj/spaceflow/commit/ea294e138c6b15033af85819629727915dfcbf4b))
|
|
1042
|
+
- **ci-shell:** released version 0.7.0 [no ci] ([247967b](https://git.bjxgj.com/xgj/spaceflow/commit/247967b30876aae78cfb1f9c706431b5bb9fb57e))
|
|
1043
|
+
- **period-summary:** released version 0.7.0 [no ci] ([8869d58](https://git.bjxgj.com/xgj/spaceflow/commit/8869d5876e86ebe83ae65c3259cd9a7e402257cf))
|
|
1044
|
+
- **publish:** released version 0.9.0 [no ci] ([b404930](https://git.bjxgj.com/xgj/spaceflow/commit/b40493049877c1fd3554d77a14e9bd9ab318e15a))
|
|
1045
|
+
- **review:** released version 0.7.0 [no ci] ([1d195d7](https://git.bjxgj.com/xgj/spaceflow/commit/1d195d74685f12edf3b1f4e13b58ccc3d221fd94))
|
|
1046
|
+
|
|
1047
|
+
## [0.7.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.6.0...@spaceflow/cli@0.7.0) (2026-01-28)
|
|
1048
|
+
|
|
1049
|
+
### 代码重构
|
|
1050
|
+
|
|
1051
|
+
- **core:** 重构安装服务目录结构和命名 ([50cc900](https://git.bjxgj.com/xgj/spaceflow/commit/50cc900eb864b23f20c5f48dec20d1a754238286))
|
|
1052
|
+
|
|
1053
|
+
### 其他修改
|
|
1054
|
+
|
|
1055
|
+
- **ci-scripts:** released version 0.6.0 [no ci] ([d485758](https://git.bjxgj.com/xgj/spaceflow/commit/d48575827941cae6ffc7ae6ba911e5d4cf3bd7fa))
|
|
1056
|
+
- **ci-shell:** released version 0.6.0 [no ci] ([a2d1239](https://git.bjxgj.com/xgj/spaceflow/commit/a2d12397997b309062a9d93af57a5588cdb82a79))
|
|
1057
|
+
- **period-summary:** released version 0.6.0 [no ci] ([6648dfb](https://git.bjxgj.com/xgj/spaceflow/commit/6648dfb31b459e8c4522cff342dfa87a4bdaab4b))
|
|
1058
|
+
- **publish:** released version 0.8.0 [no ci] ([d7cd2e9](https://git.bjxgj.com/xgj/spaceflow/commit/d7cd2e9a7af178acdf91f16ae299c82e915db6e6))
|
|
1059
|
+
- **review:** released version 0.6.0 [no ci] ([48a90b2](https://git.bjxgj.com/xgj/spaceflow/commit/48a90b253dbe03f46d26bb88f3e0158193aa1dba))
|
|
1060
|
+
|
|
1061
|
+
## [0.6.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.5.0...@spaceflow/cli@0.6.0) (2026-01-28)
|
|
1062
|
+
|
|
1063
|
+
### 新特性
|
|
1064
|
+
|
|
1065
|
+
- **core:** 优化pnpm包安装逻辑,检测是否为workspace ([6555daf](https://git.bjxgj.com/xgj/spaceflow/commit/6555dafe1f08a244525be3a0345cc585f2552086))
|
|
1066
|
+
|
|
1067
|
+
### 其他修改
|
|
1068
|
+
|
|
1069
|
+
- **ci-scripts:** released version 0.5.0 [no ci] ([a87a1da](https://git.bjxgj.com/xgj/spaceflow/commit/a87a1da0490986c46c2a527cda5e7d0df9df6d03))
|
|
1070
|
+
- **ci-shell:** released version 0.5.0 [no ci] ([920d9a8](https://git.bjxgj.com/xgj/spaceflow/commit/920d9a8165fe6eabf7a074eb65762f4693883438))
|
|
1071
|
+
- **period-summary:** released version 0.5.0 [no ci] ([8e547e9](https://git.bjxgj.com/xgj/spaceflow/commit/8e547e9e6a6496a8c314c06cf6e88c97e623bc2d))
|
|
1072
|
+
- **publish:** released version 0.7.0 [no ci] ([7124435](https://git.bjxgj.com/xgj/spaceflow/commit/712443516845f5bbc097af16ec6e90bb57b69fa3))
|
|
1073
|
+
- **review:** released version 0.5.0 [no ci] ([93c3088](https://git.bjxgj.com/xgj/spaceflow/commit/93c308887040f39047766a789a37d24ac6146359))
|
|
1074
|
+
|
|
1075
|
+
## [0.5.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.4.0...@spaceflow/cli@0.5.0) (2026-01-28)
|
|
1076
|
+
|
|
1077
|
+
### 新特性
|
|
1078
|
+
|
|
1079
|
+
- **core:** 优化包管理器检测与 npm 包处理逻辑 ([63f7fa4](https://git.bjxgj.com/xgj/spaceflow/commit/63f7fa4f55cb41583009b2ea313b5ad327615e52))
|
|
1080
|
+
|
|
1081
|
+
### 代码重构
|
|
1082
|
+
|
|
1083
|
+
- **core:** 优化配置合并逻辑,添加字段覆盖策略 ([18680e6](https://git.bjxgj.com/xgj/spaceflow/commit/18680e69b0d6e9e05c843ed3f07766830955d658))
|
|
1084
|
+
|
|
1085
|
+
### 其他修改
|
|
1086
|
+
|
|
1087
|
+
- **ci-scripts:** released version 0.4.0 [no ci] ([364f696](https://git.bjxgj.com/xgj/spaceflow/commit/364f696d0df5d84be915cfaa9202a592073d9b46))
|
|
1088
|
+
- **ci-shell:** released version 0.4.0 [no ci] ([7e6bf1d](https://git.bjxgj.com/xgj/spaceflow/commit/7e6bf1dabffc6250b918b89bb850d478d3f4b875))
|
|
1089
|
+
- **period-summary:** released version 0.4.0 [no ci] ([ca89a9b](https://git.bjxgj.com/xgj/spaceflow/commit/ca89a9b9436761e210dedfc38fb3c16ef39b0718))
|
|
1090
|
+
- **publish:** released version 0.6.0 [no ci] ([b6d8d09](https://git.bjxgj.com/xgj/spaceflow/commit/b6d8d099fc439ce67f802d56e30dadaa28afed0e))
|
|
1091
|
+
- **review:** released version 0.4.0 [no ci] ([3b5f8a9](https://git.bjxgj.com/xgj/spaceflow/commit/3b5f8a934de5ba4f59e232e1dcbccbdff1b8b17c))
|
|
1092
|
+
- 更新项目依赖锁定文件 ([19d2d1d](https://git.bjxgj.com/xgj/spaceflow/commit/19d2d1d86bb35b8ee5d3ad20be51b7aa68e83eff))
|
|
1093
|
+
- 移除 npm registry 配置文件 ([2d9fac6](https://git.bjxgj.com/xgj/spaceflow/commit/2d9fac6db79e81a09ca8e031190d0ebb2781cc31))
|
|
1094
|
+
- 调整依赖配置并添加npm registry配置 ([a754db1](https://git.bjxgj.com/xgj/spaceflow/commit/a754db1bad1bafcea50b8d2825aaf19457778f2e))
|
|
1095
|
+
|
|
1096
|
+
## [0.4.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.3.0...@spaceflow/cli@0.4.0) (2026-01-28)
|
|
1097
|
+
|
|
1098
|
+
### 代码重构
|
|
1099
|
+
|
|
1100
|
+
- **publish:** 调整zod依赖的导入来源 ([574eef1](https://git.bjxgj.com/xgj/spaceflow/commit/574eef1910809a72a4b13acd4cb070e12dc42ce8))
|
|
1101
|
+
- **review:** 调整zod依赖的导入路径 ([02014cd](https://git.bjxgj.com/xgj/spaceflow/commit/02014cdab9829df583f0f621150573b8c45a3ad7))
|
|
1102
|
+
|
|
1103
|
+
### 其他修改
|
|
1104
|
+
|
|
1105
|
+
- **ci-scripts:** released version 0.3.0 [no ci] ([9292b52](https://git.bjxgj.com/xgj/spaceflow/commit/9292b524f2b8171f8774fab4e4ef4b32991f5d3d))
|
|
1106
|
+
- **ci-shell:** released version 0.3.0 [no ci] ([7b25e55](https://git.bjxgj.com/xgj/spaceflow/commit/7b25e557b628fdfa66d7a0be4ee21267906ac15f))
|
|
1107
|
+
- **core:** 调整核心依赖与配置,新增Zod类型系统支持 ([def0751](https://git.bjxgj.com/xgj/spaceflow/commit/def0751577d9f3350494ca3c7bb4a4b087dab05e))
|
|
1108
|
+
- **period-summary:** released version 0.3.0 [no ci] ([7e74c59](https://git.bjxgj.com/xgj/spaceflow/commit/7e74c59d90d88e061e693829f8196834d9858307))
|
|
1109
|
+
- **publish:** released version 0.5.0 [no ci] ([8eecd19](https://git.bjxgj.com/xgj/spaceflow/commit/8eecd19c4dd3fbaa27187a9b24234e753fff5efe))
|
|
1110
|
+
- **review:** released version 0.3.0 [no ci] ([865c6fd](https://git.bjxgj.com/xgj/spaceflow/commit/865c6fdee167df187d1bc107867f842fe25c1098))
|
|
1111
|
+
- 调整项目依赖配置 ([6802386](https://git.bjxgj.com/xgj/spaceflow/commit/6802386f38f4081a3b5d5c47ddc49e9ec2e4f28d))
|
|
1112
|
+
|
|
1113
|
+
## [0.3.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.2.0...@spaceflow/cli@0.3.0) (2026-01-28)
|
|
1114
|
+
|
|
1115
|
+
### 代码重构
|
|
1116
|
+
|
|
1117
|
+
- **publish:** 调整包变更检测的日志输出格式 ([df35e92](https://git.bjxgj.com/xgj/spaceflow/commit/df35e92d614ce59e202643cf34a0fef2803412a1))
|
|
1118
|
+
|
|
1119
|
+
### 其他修改
|
|
1120
|
+
|
|
1121
|
+
- **ci-scripts:** released version 0.2.0 [no ci] ([716e9ad](https://git.bjxgj.com/xgj/spaceflow/commit/716e9ad0f32bde09c608143da78f0a4299017797))
|
|
1122
|
+
- **ci-shell:** released version 0.2.0 [no ci] ([4f5314b](https://git.bjxgj.com/xgj/spaceflow/commit/4f5314b1002b90d7775a5ef51e618a3f227ae5a9))
|
|
1123
|
+
- **core:** 调整依赖配置 ([c86534a](https://git.bjxgj.com/xgj/spaceflow/commit/c86534ad213293ee2557ba5568549e8fbcb74ba5))
|
|
1124
|
+
- **period-summary:** released version 0.2.0 [no ci] ([66a4e20](https://git.bjxgj.com/xgj/spaceflow/commit/66a4e209519b64d946ec21b1d1695105fb9de106))
|
|
1125
|
+
- **publish:** released version 0.3.0 [no ci] ([972eca4](https://git.bjxgj.com/xgj/spaceflow/commit/972eca440dd333e8c5380124497c16fe6e3eea6c))
|
|
1126
|
+
- **publish:** released version 0.4.0 [no ci] ([be66220](https://git.bjxgj.com/xgj/spaceflow/commit/be662202c1e9e509368eb683a0d6df3afd876ff8))
|
|
1127
|
+
- **review:** released version 0.2.0 [no ci] ([d0bd3ed](https://git.bjxgj.com/xgj/spaceflow/commit/d0bd3edf364dedc7c077d95801b402d41c3fdd9c))
|
|
1128
|
+
- 调整项目依赖配置 ([f4009cb](https://git.bjxgj.com/xgj/spaceflow/commit/f4009cb0c369b225c356584afb28a7ff5a1a89ec))
|
|
1129
|
+
|
|
1130
|
+
## [0.2.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.1.2...@spaceflow/cli@0.2.0) (2026-01-28)
|
|
1131
|
+
|
|
1132
|
+
### 新特性
|
|
1133
|
+
|
|
1134
|
+
- **publish:** 增强包变更检测的日志输出 ([b89c5cc](https://git.bjxgj.com/xgj/spaceflow/commit/b89c5cc0654713b6482ee591325d4f92ad773600))
|
|
1135
|
+
|
|
1136
|
+
### 修复BUG
|
|
1137
|
+
|
|
1138
|
+
- **publish:** 修复分支锁定时未捕获异常处理器的资源泄漏问题 ([ae326e9](https://git.bjxgj.com/xgj/spaceflow/commit/ae326e95c0cea033893cf084cbf7413fb252bd33))
|
|
1139
|
+
|
|
1140
|
+
### 文档更新
|
|
1141
|
+
|
|
1142
|
+
- **core:** 更新核心框架README文档 ([0d98658](https://git.bjxgj.com/xgj/spaceflow/commit/0d98658f6ab01f119f98d3387fb5651d4d4351a8))
|
|
1143
|
+
|
|
1144
|
+
### 其他修改
|
|
1145
|
+
|
|
1146
|
+
- **ci-scripts:** released version 0.1.2 [no ci] ([ab9c100](https://git.bjxgj.com/xgj/spaceflow/commit/ab9c1000bcbe64d8a99ffa6bebb974c024b14325))
|
|
1147
|
+
- **ci-shell:** released version 0.1.2 [no ci] ([bf7977b](https://git.bjxgj.com/xgj/spaceflow/commit/bf7977bed684b557555861b9dc0359eda3c5d476))
|
|
1148
|
+
- **period-summary:** released version 0.1.2 [no ci] ([eaf41a0](https://git.bjxgj.com/xgj/spaceflow/commit/eaf41a0149ee4306361ccab0b3878bded79677df))
|
|
1149
|
+
- **publish:** released version 0.1.2 [no ci] ([4786731](https://git.bjxgj.com/xgj/spaceflow/commit/4786731da7a21982dc1e912b1a5002f5ebba9104))
|
|
1150
|
+
- **publish:** released version 0.2.0 [no ci] ([bc30a82](https://git.bjxgj.com/xgj/spaceflow/commit/bc30a82082bba4cc1a66c74c11dc0ad9deef4692))
|
|
1151
|
+
- **review:** released version 0.1.2 [no ci] ([9689d3e](https://git.bjxgj.com/xgj/spaceflow/commit/9689d3e37781ca9ae6cb14d7b12717c061f2919d))
|
|
1152
|
+
- 优化CI工作流的代码检出配置 ([d9740dd](https://git.bjxgj.com/xgj/spaceflow/commit/d9740dd6d1294068ffdcd7a12b61149773866a2a))
|
|
1153
|
+
|
|
1154
|
+
## [0.1.2](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.1.1...@spaceflow/cli@0.1.2) (2026-01-28)
|
|
1155
|
+
|
|
1156
|
+
### 修复BUG
|
|
1157
|
+
|
|
1158
|
+
- **publish:** 修复预演模式下的交互式提示问题 ([0b785bf](https://git.bjxgj.com/xgj/spaceflow/commit/0b785bfddb9f35e844989bd3891817dc502302f8))
|
|
1159
|
+
|
|
1160
|
+
## [0.1.1](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.1.0...@spaceflow/cli@0.1.1) (2026-01-28)
|
|
1161
|
+
|
|
1162
|
+
### 文档更新
|
|
1163
|
+
|
|
1164
|
+
- **publish:** 完善发布插件README文档 ([faa57b0](https://git.bjxgj.com/xgj/spaceflow/commit/faa57b095453c00fb3c9a7704bc31b63953c0ac5))
|
|
1165
|
+
|
|
1166
|
+
## [0.1.0](https://git.bjxgj.com/xgj/spaceflow/compare/@spaceflow/cli@0.0.1...@spaceflow/cli@0.1.0) (2026-01-28)
|
|
1167
|
+
|
|
1168
|
+
### 新特性
|
|
1169
|
+
|
|
1170
|
+
- **core:** 添加同步解锁分支方法用于进程退出清理 ([cbec480](https://git.bjxgj.com/xgj/spaceflow/commit/cbec480511e074de3ccdc61226f3baa317cff907))
|
|
1171
|
+
|
|
1172
|
+
## 0.0.1 (2026-01-28)
|
|
1173
|
+
|
|
1174
|
+
### 其他修改
|
|
1175
|
+
|
|
1176
|
+
- 重置所有包版本至 0.0.0 并清理 CHANGELOG 文件 ([f7efaf9](https://git.bjxgj.com/xgj/spaceflow/commit/f7efaf967467f1272e05d645720ee63941fe79be))
|