ssd-ql-workflow 0.1.0 → 0.1.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/README.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ssd-ql-workflow
|
|
2
2
|
|
|
3
3
|
SDD (Skill-Driven Development) CLI Tool - 一键初始化 Trinity Workflow 配置。
|
|
4
4
|
|
|
@@ -6,18 +6,18 @@ SDD (Skill-Driven Development) CLI Tool - 一键初始化 Trinity Workflow 配
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# 使用 npx(推荐)
|
|
9
|
-
npx
|
|
9
|
+
npx ssd-ql-workflow init
|
|
10
10
|
|
|
11
11
|
# 或全局安装
|
|
12
|
-
npm install -g
|
|
13
|
-
sdd
|
|
12
|
+
npm install -g ssd-ql-workflow
|
|
13
|
+
sdd init
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## 快速开始
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# 在项目根目录执行
|
|
20
|
-
npx
|
|
20
|
+
npx ssd-ql-workflow init
|
|
21
21
|
|
|
22
22
|
# 初始化成功后,可用的命令:
|
|
23
23
|
# /sdd-new <change-name> - 创建新的 SDD workflow
|
|
@@ -33,7 +33,7 @@ npx @ql/sdd-cli init
|
|
|
33
33
|
初始化 SDD workflow 配置:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npx
|
|
36
|
+
npx ssd-ql-workflow init [options]
|
|
37
37
|
|
|
38
38
|
Options:
|
|
39
39
|
-f, --force 覆盖已存在的文件
|
|
@@ -46,7 +46,7 @@ Options:
|
|
|
46
46
|
列出可用的命令和 schema:
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
npx
|
|
49
|
+
npx ssd-ql-workflow list
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
## 生成的文件结构
|