@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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngocsangairvds/vsaf",
3
- "version": "5.1.4",
3
+ "version": "5.1.5",
4
4
  "description": "logging step",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -1,55 +1,35 @@
1
1
  name: master-sdlc
2
- description: "Full SDLC pipeline — DiscoveryPRD → Architecture → SRS → Test Design → ImplementReviewFeature Complete → Ship"
2
+ description: "Full SDLC pipeline — Thinking → Design → TestcaseBuildQA"
3
3
  nodes:
4
- - id: discovery
5
- description: "Phase 1 — Discovery: analyze requirements, grill stakeholders, brainstorm solutions"
6
- command: sdlc-discovery
7
- workspace: false
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
- - id: implement
29
- description: "Phase 6 — Implement: TDD implementation per vertical slice"
30
- command: sdlc-implement
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
- npm test 2>&1
36
- depends_on: [implement]
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
- - id: complete
47
- description: "Phase 8 — Feature Complete: update knowledge base and project documentation"
48
- command: sdlc-feature-complete
49
- depends_on: [review]
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
- - id: ship
52
- description: "Phase 9 — Ship: create PR, final checks, deploy"
53
- command: sdlc-ship
54
- depends_on: [complete]
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