@fxri/toolkit 1.5.5 → 1.6.0
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 +34 -0
- package/LICENSE +21 -21
- package/NOTICE +9 -9
- package/README.md +361 -330
- package/SPEC.md +118 -116
- package/TRADEMARK.md +47 -47
- package/dist/cli.cjs +35 -31
- package/dist/cli.js +32 -28
- package/dist/index.cjs +35 -31
- package/dist/index.js +33 -29
- package/package.json +17 -15
- package/skills/README.md +52 -0
- package/skills/fxri-plan-to-task/SKILL.md +72 -0
- package/skills/fxri-plan-to-task/assets/active-task-template.md +13 -0
- package/skills/fxri-plan-to-task/references/task-spec.md +85 -0
- package/skills/fxri-release-changelog/SKILL.md +54 -0
- package/skills/fxri-release-changelog/references/changelog-format.md +40 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
# @fxri/toolkit
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
> 2026-09-04 发布
|
|
5
|
+
|
|
6
|
+
### ✨ 新增功能
|
|
7
|
+
|
|
8
|
+
- 新增:新增零依赖 AI 技能包 skills/(fxri-plan-to-task、fxri-release-changelog)
|
|
9
|
+
|
|
10
|
+
- 按 Agent Skills 开放标准沉淀方案落盘与发版 CHANGELOG 两套工作流,纯 Markdown 规范,不绑定语言与工具
|
|
11
|
+
- README 与 SPEC.md 增加技能包交叉引用;skills/README.md 新增 `npx skills add fxri-net/toolkit` 安装方式
|
|
12
|
+
- npm 包 `files` 加入 `skills`,安装 @fxri/toolkit 即随包获得技能目录
|
|
13
|
+
|
|
14
|
+
## 1.5.6
|
|
15
|
+
|
|
16
|
+
> 2026-09-03 发布
|
|
17
|
+
|
|
18
|
+
### ✨ 新增功能
|
|
19
|
+
|
|
20
|
+
- JSON 导出携带 `schemaVersion`,导入端读取更高版本时告警(仍按当前字段尽力解析)
|
|
21
|
+
- 测试补强:CSV/XLSX/JSON 往返、开关解析、时间过滤、底层模块(原子写/扫描/路径)直接用例,单测 71 例全绿
|
|
22
|
+
- vitest 覆盖率门槛(thresholds)接入 CI(新增 coverage job)
|
|
23
|
+
- CI 增加 Windows 回归 job 与 CLI `--help` 冒烟
|
|
24
|
+
- README 新增公共 API 表与「任务状态单一事实源」说明
|
|
25
|
+
|
|
26
|
+
### 🐛 补丁修复
|
|
27
|
+
|
|
28
|
+
- archive 合并写回按原文件换行风格还原(LF/CRLF),避免 Windows 仓库追加新块产生混合换行
|
|
29
|
+
- 导出(CSV/JSON/XLSX)改原子写,中断不再残留半截文件
|
|
30
|
+
- 展示路径统一走公共 helper(`displayRel`),跨命令输出一致
|
|
31
|
+
- check 已归档索引增加 mtime 感知缓存,重复校验不重复读盘
|
|
32
|
+
- `normalize --fix` 错月迁移后清理遗留空月份目录
|
|
33
|
+
- 标题提取 / 状态枚举 / 日期解析收口到公共实现(list/query/validate/import/changelog 共用),消除多份近似代码
|
|
34
|
+
- tsconfig 开启 `noUncheckedIndexedAccess`,数组与索引访问显式兜底
|
|
35
|
+
|
|
3
36
|
## 1.5.5
|
|
37
|
+
|
|
4
38
|
> 2026-09-03 发布
|
|
5
39
|
|
|
6
40
|
### 🐛 补丁修复
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 唐启云
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 唐启云
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/NOTICE
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
方弦™
|
|
2
|
-
Copyright 2026 方弦研究所. All rights reserved.
|
|
3
|
-
|
|
4
|
-
商标声明:
|
|
5
|
-
"方弦™"为第 42 类商标申请(申请号 89648411),尚未核准注册。
|
|
6
|
-
本声明随审查进度更新。
|
|
7
|
-
|
|
8
|
-
本开源许可(MIT License)不授予商标使用权。
|
|
9
|
-
详见 TRADEMARK.md 了解完整商标信息。
|
|
1
|
+
方弦™
|
|
2
|
+
Copyright 2026 方弦研究所. All rights reserved.
|
|
3
|
+
|
|
4
|
+
商标声明:
|
|
5
|
+
"方弦™"为第 42 类商标申请(申请号 89648411),尚未核准注册。
|
|
6
|
+
本声明随审查进度更新。
|
|
7
|
+
|
|
8
|
+
本开源许可(MIT License)不授予商标使用权。
|
|
9
|
+
详见 TRADEMARK.md 了解完整商标信息。
|