@fxri/toolkit 1.5.6 → 1.6.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 +21 -0
- package/LICENSE +21 -21
- package/NOTICE +2 -3
- package/README.md +362 -361
- package/SPEC.md +118 -116
- package/TRADEMARK.md +6 -12
- package/dist/cli.cjs +22 -21
- package/dist/cli.js +3 -2
- package/dist/index.cjs +3 -2
- package/dist/index.js +3 -2
- package/package.json +17 -15
- package/skills/README.md +53 -0
- package/skills/fxri-plan-to-task/SKILL.md +73 -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,26 @@
|
|
|
1
1
|
# @fxri/toolkit
|
|
2
2
|
|
|
3
|
+
## 1.6.1
|
|
4
|
+
> 2026-09-04 发布
|
|
5
|
+
|
|
6
|
+
### 🐛 补丁修复
|
|
7
|
+
|
|
8
|
+
- 修复:tasks archive 对 CRLF 源文件做换行还原时二次转换产生双重 CR(`\r\r\n`),读取 active 任务统一归一为 LF、解析归档块剥离孤立 CR;文档修订:根 README 特性列表补零依赖 AI 技能包条目;skills/README.md 补 npm 包自带技能目录路径(node_modules/@fxri/toolkit/skills/);fxri-plan-to-task 可选加速节补 `toolkit tasks normalize`
|
|
9
|
+
|
|
10
|
+
## 1.6.0
|
|
11
|
+
|
|
12
|
+
> 2026-09-04 发布
|
|
13
|
+
|
|
14
|
+
### ✨ 新增功能
|
|
15
|
+
|
|
16
|
+
- 新增:新增零依赖 AI 技能包 skills/(fxri-plan-to-task、fxri-release-changelog)
|
|
17
|
+
|
|
18
|
+
- 按 Agent Skills 开放标准沉淀方案落盘与发版 CHANGELOG 两套工作流,纯 Markdown 规范,不绑定语言与工具
|
|
19
|
+
- README 与 SPEC.md 增加技能包交叉引用;skills/README.md 新增 `npx skills add fxri-net/toolkit` 安装方式
|
|
20
|
+
- npm 包 `files` 加入 `skills`,安装 @fxri/toolkit 即随包获得技能目录
|
|
21
|
+
|
|
3
22
|
## 1.5.6
|
|
23
|
+
|
|
4
24
|
> 2026-09-03 发布
|
|
5
25
|
|
|
6
26
|
### ✨ 新增功能
|
|
@@ -22,6 +42,7 @@
|
|
|
22
42
|
- tsconfig 开启 `noUncheckedIndexedAccess`,数组与索引访问显式兜底
|
|
23
43
|
|
|
24
44
|
## 1.5.5
|
|
45
|
+
|
|
25
46
|
> 2026-09-03 发布
|
|
26
47
|
|
|
27
48
|
### 🐛 补丁修复
|
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,8 @@
|
|
|
1
|
-
|
|
1
|
+
方弦®
|
|
2
2
|
Copyright 2026 方弦研究所. All rights reserved.
|
|
3
3
|
|
|
4
4
|
商标声明:
|
|
5
|
-
"
|
|
6
|
-
本声明随审查进度更新。
|
|
5
|
+
"方弦®"为第42类注册商标(注册号89648411),核定服务项目:计算机出租、计算机软件设计、为他人研究和开发新产品、计算机软件维护、把有形的数据或文件转换成电子媒体、为他人创建和维护网站、网络服务器出租、提供互联网搜索引擎、托管计算机站(网站)、云计算。
|
|
7
6
|
|
|
8
7
|
本开源许可(MIT License)不授予商标使用权。
|
|
9
8
|
详见 TRADEMARK.md 了解完整商标信息。
|