@ngocsangairvds/vsaf 5.1.4 → 5.1.5
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/package.json
CHANGED
|
@@ -1,55 +1,35 @@
|
|
|
1
1
|
name: master-sdlc
|
|
2
|
-
description: "Full SDLC pipeline —
|
|
2
|
+
description: "Full SDLC pipeline — Thinking → Design → Testcase → Build → QA"
|
|
3
3
|
nodes:
|
|
4
|
-
- id:
|
|
5
|
-
description: "
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
- id: prd
|
|
9
|
-
description: "Phase 2 — PRD: write Product Requirements Document from discovery output"
|
|
10
|
-
command: sdlc-prd
|
|
11
|
-
depends_on: [discovery]
|
|
12
|
-
workspace: false
|
|
13
|
-
- id: architecture
|
|
14
|
-
description: "Phase 3 — Architecture: design solution architecture and write ADR + epic breakdown"
|
|
15
|
-
command: sdlc-architecture
|
|
16
|
-
depends_on: [prd]
|
|
17
|
-
workspace: false
|
|
18
|
-
- id: srs
|
|
19
|
-
description: "Phase 4 — SRS: write Software Requirements Specification with API contracts"
|
|
20
|
-
command: sdlc-srs
|
|
21
|
-
depends_on: [architecture]
|
|
22
|
-
workspace: false
|
|
23
|
-
- id: test-design
|
|
24
|
-
description: "Phase 5 — Test Design: generate test cases from SRS (tests before code)"
|
|
25
|
-
command: sdlc-test-design
|
|
26
|
-
depends_on: [srs]
|
|
4
|
+
- id: thinking
|
|
5
|
+
description: "Thinking: Discovery → PRD"
|
|
6
|
+
bash: |
|
|
7
|
+
vsaf run sdlc/sdlc-thinking $ARGUMENTS
|
|
27
8
|
workspace: false
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
depends_on: [test-design]
|
|
32
|
-
- id: test-gate
|
|
33
|
-
description: "Phase 6b — Test Gate: run automated tests to verify implementation"
|
|
9
|
+
|
|
10
|
+
- id: design
|
|
11
|
+
description: "Design: Architecture → SRS"
|
|
34
12
|
bash: |
|
|
35
|
-
|
|
36
|
-
depends_on: [
|
|
37
|
-
loop:
|
|
38
|
-
on_fail: implement
|
|
39
|
-
max_retries: 3
|
|
40
|
-
inject_error: true
|
|
41
|
-
- id: review
|
|
42
|
-
description: "Phase 7 — Review: code review against SRS, architecture, and best practices"
|
|
43
|
-
command: sdlc-review
|
|
44
|
-
depends_on: [test-gate]
|
|
13
|
+
vsaf run sdlc/sdlc-design $ARGUMENTS
|
|
14
|
+
depends_on: [thinking]
|
|
45
15
|
workspace: false
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
16
|
+
|
|
17
|
+
- id: testcase
|
|
18
|
+
description: "Testcase: generate test cases from SRS"
|
|
19
|
+
bash: |
|
|
20
|
+
vsaf run sdlc/sdlc-testcase $ARGUMENTS
|
|
21
|
+
depends_on: [design]
|
|
50
22
|
workspace: false
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
23
|
+
|
|
24
|
+
- id: build
|
|
25
|
+
description: "Build: Implement → Test Gate"
|
|
26
|
+
bash: |
|
|
27
|
+
vsaf run sdlc/sdlc-build $ARGUMENTS
|
|
28
|
+
depends_on: [testcase]
|
|
29
|
+
|
|
30
|
+
- id: qa
|
|
31
|
+
description: "QA: Review → Feature Complete → Ship"
|
|
32
|
+
bash: |
|
|
33
|
+
vsaf run sdlc/sdlc-qa $ARGUMENTS
|
|
34
|
+
depends_on: [build]
|
|
55
35
|
workspace: false
|