@ngocsangairvds/vsaf 4.1.28 → 4.1.30

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": "4.1.28",
3
+ "version": "4.1.30",
4
4
  "description": "logging step",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: architecture
2
+ name: sdlc-architecture
3
3
  description: Phase 3 — Architecture + Epics via GitNexus analysis + grill session + BMAD architecture + conflict mapping
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: discovery
2
+ name: sdlc-discovery
3
3
  description: Phase 1 — Discovery via system understanding + grill session + brainstorming + domain research + PRFAQ
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: feature-complete
2
+ name: sdlc-feature-complete
3
3
  description: Phase 8 — Feature Completion — update CONTEXT, KNOWLEDGE, GitNexus re-index, Graphify rebuild + verify
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: hotfix-analyze
2
+ name: sdlc-hotfix-analyze
3
3
  description: "Hotfix Phase 1 — Analyze bug report via GitNexus impact + context, identify root cause and blast radius"
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: hotfix-implement
2
+ name: sdlc-hotfix-implement
3
3
  description: "Hotfix Phase 3 — TDD implementation: RED → GREEN → REFACTOR, minimal fix, SonarQube-in-loop"
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -160,6 +160,34 @@ If unexpected impact detected → evaluate:
160
160
  [HOTFIX-IMPL] [6/6] Impact verification... ✅
161
161
  ```
162
162
 
163
+ ## Verification Gate
164
+
165
+ ⛔ **NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE.**
166
+
167
+ Before printing Phase Exit, you MUST pass ALL checks below. For each check: **run the command → read the full output → verify the claim matches the output.** Do NOT trust memory, do NOT trust previous runs, do NOT say "should pass."
168
+
169
+ | # | Check | Command to Run | Evidence Required | ❌ NOT Acceptable |
170
+ |---|-------|---------------|-------------------|-------------------|
171
+ | 1 | Build compiles | `mvn compile` / `npm run build` / equivalent | `BUILD SUCCESS` or `0 errors` in output | "It compiled earlier" |
172
+ | 2 | All tests pass | `npm test` / `mvn test` / equivalent | `X passed, 0 failed` in output | "Tests should still pass" |
173
+ | 3 | Regression test passes | Run specific test by name | Test name + PASS in output | "I wrote the test so it passes" |
174
+ | 4 | No new SonarQube issues | Check output from Step 4 | 0 blockers, 0 critical, 0 vulns | "Code looks clean" |
175
+ | 5 | GitNexus impact clean | Check output from Step 6 | Blast radius matches analysis | "Fix is minimal so it's fine" |
176
+ | 6 | Scope boundary held | `git diff --stat` | Changed files ⊆ files listed in analysis | "I only changed what was needed" |
177
+
178
+ **Red flags — if you catch yourself thinking any of these, STOP and run the command:**
179
+ - "It should work" → Run it and prove it
180
+ - "I'm confident" → Confidence ≠ evidence
181
+ - "I already checked" → Check again with fresh output
182
+ - "It's a small change so it's safe" → Small changes break big systems
183
+ - "The test passed during TDD" → TDD was minutes ago; verify NOW
184
+
185
+ **Procedure:**
186
+ 1. Run checks 1-6 sequentially
187
+ 2. For each: paste the **actual command output** (or key lines) into `03-impl-log.md` under a `## Verification Evidence` section
188
+ 3. If ANY check fails → fix → re-run ALL checks (not just the failed one)
189
+ 4. Only after ALL 6 checks show fresh passing evidence → proceed to Phase Exit
190
+
163
191
  ## Output
164
192
 
165
193
  Write file: `.vsaf/docs/hotfixes/{bug-id}/03-impl-log.md`
@@ -198,6 +226,17 @@ Write file: `.vsaf/docs/hotfixes/{bug-id}/03-impl-log.md`
198
226
  ## Build
199
227
  - Compile: PASS
200
228
  - Full test suite: PASS
229
+
230
+ ## Verification Evidence
231
+
232
+ | # | Check | Result | Evidence |
233
+ |---|-------|--------|----------|
234
+ | 1 | Build compiles | ✅ PASS | `{actual build output line}` |
235
+ | 2 | All tests pass | ✅ PASS | `{X} passed, 0 failed` |
236
+ | 3 | Regression test | ✅ PASS | `{test name} — PASSED` |
237
+ | 4 | SonarQube clean | ✅ PASS | 0 blocker, 0 critical, 0 vuln |
238
+ | 5 | Impact clean | ✅ PASS | Blast radius = {files}, matches analysis |
239
+ | 6 | Scope held | ✅ PASS | `git diff --stat`: {n} files changed, all within scope |
201
240
  ```
202
241
 
203
242
  ## Phase Exit Protocol
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: hotfix-prd
2
+ name: sdlc-hotfix-prd
3
3
  description: "Hotfix Phase 2 — Lightweight PRD from analysis: fix requirements, acceptance criteria, scope"
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: hotfix-review
2
+ name: sdlc-hotfix-review
3
3
  description: "Hotfix Phase 4 — Quick review — verify minimal fix, impact check, test quality, SonarQube on changed files"
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: hotfix-ship
2
+ name: sdlc-hotfix-ship
3
3
  description: "Hotfix Phase 4 — Ship: commit, PR on hotfix branch, ship report"
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: implement
2
+ name: sdlc-implement
3
3
  description: Phase 6 — TDD Implementation via subagent-driven development + SonarQube-during-code + GitNexus impact verification
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: init
2
+ name: sdlc-init
3
3
  description: Initialize SDLC artifact structure — create .vsaf/docs/, CONTEXT.md, .gitignore
4
4
  version: 2.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: onboard-code
2
+ name: sdlc-onboard-code
3
3
  description: Code onboarding — GitNexus index + Claude verify index + env check + Docker + cross-domain verify
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: onboard-docs
2
+ name: sdlc-onboard-docs
3
3
  description: Document onboarding — Graphify build graph + Claude verify + supplement gaps
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: prd
2
+ name: sdlc-prd
3
3
  description: Phase 2 — PRD via BMAD elicitation + create + validate + adversarial review + GitNexus impact
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: review
2
+ name: sdlc-review
3
3
  description: Phase 7 — Review via Superpowers verification + BMAD code review + SonarQube re-check + GitNexus impact + debate
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: sdlc-health
2
+ name: sdlc-sdlc-health
3
3
  description: SDLC health check — verify all skills, plugins, MCP tools, deps, and binaries are installed and working
4
4
  version: 1.1.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: setup
2
+ name: sdlc-setup
3
3
  description: Install all SDLC dependencies — npm packages, Claude plugins, and Claude skills
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: ship
2
+ name: sdlc-ship
3
3
  description: Phase 9 — Ship via commit (source + .vsaf/docs only) + PR generation
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: srs
2
+ name: sdlc-srs
3
3
  description: "Phase 4 — SRS via sdlc-write-srs template + sdlc-validate-srs 8-dimension validation + GitNexus interface verification"
4
4
  version: 2.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: test-design
2
+ name: sdlc-test-design
3
3
  description: Phase 5 — Test Design via BMAD QA + edge case hunter + GitNexus coverage mapping
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: validate-srs
2
+ name: sdlc-validate-srs
3
3
  description: "Validate SRS — 8 dimensions, weighted scoring, parallel agents, GO/NO-GO. Triggers: 'validate srs', 'review srs', 'check srs'."
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: write-srs
2
+ name: sdlc-write-srs
3
3
  description: "Write SRS feature-level theo template v4 chuẩn 12 sections. Triggers: 'write srs', 'viết srs', 'tạo srs'."
4
4
  version: 1.0.0
5
5
  author: "@ngocsangairvds/vsaf"