@fxri/toolkit 1.0.1 → 1.0.2
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 +7 -0
- package/README.md +9 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -54,6 +54,15 @@ npx toolkit changelog status / publish # 其余 changeset 子命令透传
|
|
|
54
54
|
}
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
## 📋 方案落盘(任务区)
|
|
58
|
+
|
|
59
|
+
把已确认的实施/修复方案登记为 `.tasks/` 下的任务文件,由 toolkit 统一校验与归档,配合 AI 工作流在任意语言项目落地:
|
|
60
|
+
|
|
61
|
+
- **调用优先级**:`npx toolkit`(项目本地依赖)→ `toolkit`(全局安装);两者均不可用时直接以 Markdown 输出方案,不阻塞执行
|
|
62
|
+
- **规范来源**:优先读取项目根 `SPEC.md`,缺失时读取包内 `SPEC.md`(目录结构、文件命名与 frontmatter 字段均以该规范为准)
|
|
63
|
+
- **校验与归档**:写入方案文件后执行 `toolkit tasks` 校验总览;任务完成后执行 `toolkit tasks archive` 归档
|
|
64
|
+
- **版本管理**:涉及发版时先 `toolkit changelog` 创建变更集,再 `toolkit changelog version` 发版并格式化 CHANGELOG
|
|
65
|
+
|
|
57
66
|
## 📚 库 API
|
|
58
67
|
|
|
59
68
|
```typescript
|