dev-playbooks-cn 2.5.0 → 2.5.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 +45 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,51 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.5.1] - 2026-01-23
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- 修复 `dev-playbooks-cn update` 命令的 changelog 显示功能
|
|
13
|
+
- 添加完整的 2.5.0 版本变更记录
|
|
14
|
+
- 确保用户可以看到最新版本的详细变更信息
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## [2.5.0] - 2026-01-23
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **Factory 原生 Skills 支持**:添加 `.factory/skills/` 目录,支持 Factory Droid
|
|
23
|
+
- 使用符号链接指向现有 `skills/` 目录,保持单一数据源
|
|
24
|
+
- 所有 18 个 DevBooks skills 可在 Factory 中原生使用
|
|
25
|
+
- 符合 Factory Skills 标准(YAML frontmatter + Markdown)
|
|
26
|
+
|
|
27
|
+
- **Cursor 原生 Skills 支持**:添加 `.cursor/skills/` 目录,支持 Cursor Agent
|
|
28
|
+
- 使用符号链接指向现有 `skills/` 目录,保持单一数据源
|
|
29
|
+
- 所有 18 个 DevBooks skills 可在 Cursor 中原生使用
|
|
30
|
+
- 符合 Cursor Agent Skills 标准
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- **README 优化**:
|
|
35
|
+
- 移除"30秒电梯演讲"章节,简化文档结构
|
|
36
|
+
- 更新"支持的 AI 工具"表格,添加 Factory 和 Cursor 原生支持
|
|
37
|
+
- 明确标注各工具的 Skills 目录位置
|
|
38
|
+
|
|
39
|
+
- **package.json 更新**:
|
|
40
|
+
- 添加 `.factory/` 和 `.cursor/` 到 npm 发布文件列表
|
|
41
|
+
- 确保 Skills 目录随包一起发布
|
|
42
|
+
|
|
43
|
+
### Technical Details
|
|
44
|
+
|
|
45
|
+
- 使用符号链接(symlinks)而非复制文件,确保:
|
|
46
|
+
- 单一数据源(Single Source of Truth)
|
|
47
|
+
- 自动同步更新
|
|
48
|
+
- 减少维护成本
|
|
49
|
+
- 避免文件不一致
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
8
53
|
## [2.3.0] - 2026-01-23
|
|
9
54
|
|
|
10
55
|
### Added
|