@su-record/vibe 3.2.24 → 3.2.25

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": "@su-record/vibe",
3
- "version": "3.2.24",
3
+ "version": "3.2.25",
4
4
  "description": "AI Coding Framework for Claude Code — 7+ agents, 52 skills, multi-LLM orchestration",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",
@@ -58,26 +58,17 @@ Execute the bundled implementation below with subcommand: `$ARGUMENTS`
58
58
  이 문서 안에서 스키마를 두 번 정의하지 않는다 — 과거 이 자리에 있던 축약본은 `id`·`kind`·
59
59
  `source-spec-hash` 가 빠진 손실 버전이었다.
60
60
 
61
- ## Integration with /vibe.verify
61
+ ## Integration
62
62
 
63
- After `/vibe.verify <feature>` scenarios pass, auto-chain:
64
-
65
- ```
66
- scenarios pass → /vibe.contract check <feature>
67
- ├─ no drift → ✅ complete
68
- └─ drift found → ❌ report + auto /vibe.regress register (tag: integration)
69
- ```
70
-
71
- ## Integration with /vibe.spec
72
-
73
- Right after `/vibe.spec` finishes writing the SPEC, auto-invoke `/vibe.contract extract`. The resulting contract becomes the reference for the subsequent `/vibe.run`.
63
+ `/vibe.spec` 직후 `extract`, `/vibe.verify` 시나리오 통과 `check` 로 자동 연결된다.
64
+ 호출 계약과 drift 등급별 처리(P1 강등 / P2·P3 경고)는 아래 **Integration Points** 절이 SSOT다 —
65
+ 이 자리에 있던 요약본은 P1/P2/P3 구분이 빠진 손실 버전이었다.
74
66
 
75
67
  ## Done Criteria
76
68
 
77
- - [ ] `extract` exits cleanly when SPEC has no API section (not every feature has one)
78
- - [ ] `check` is silent when no drift; otherwise prints findings grouped by severity
79
- - [ ] Every P1 drift triggers `/vibe.regress register --from-contract`
80
- - [ ] `diff` says "first run" when no prior snapshot exists
69
+ 아래 **Done Criteria** 절(Bundled implementation 안)이 SSOT다 자리에 있던 축약본은
70
+ `source-spec-hash` 재추출 no-op, drift 위치(file:line), 프레임워크 감지 실패 처리가 빠진
71
+ 손실 버전이었다.
81
72
 
82
73
  ---
83
74
 
@@ -185,10 +176,6 @@ endpoints:
185
176
  ```
186
177
  4. On any drift, auto-call `/vibe.regress register --from-contract`
187
178
 
188
- ## Drift Severity Matrix
189
-
190
- (matches command file — keep both in sync on edits)
191
-
192
179
  ## Integration Points
193
180
 
194
181
  ### From /vibe.spec
@@ -268,12 +268,6 @@ Step 6 에서 `[2]` (새 세션에서 run) 를 선택했으면 여기서 종료
268
268
 
269
269
  승인된 SPEC 은 루프의 ANCHOR 로 쓰인다: `/vibe.run` 이 시나리오 단위로 구현·검증하고, `/vibe.verify` 가 Done Criteria 를 판정해 `.vibe/metrics/run-ledger.json` 의 `verifyPassed` 를 기록한다. 게이트 통과 여부는 항상 run-ledger·테스트 exit code 가 판정한다.
270
270
 
271
- ## Next Step
272
-
273
- ```
274
- /vibe.run "{feature-name}"
275
- ```
276
-
277
271
  ---
278
272
 
279
273
  ARGUMENTS: $ARGUMENTS
@@ -41,10 +41,9 @@ Probe spec: below. Report schema: `references/report-template.md`.
41
41
 
42
42
  ## Done Criteria
43
43
 
44
- - [ ] Runs without any external LLM call file reads + vitest only
45
- - [ ] A single probe failure never halts the overall run
46
- - [ ] JSON report matches `references/report-template.md` exactly
47
- - [ ] P1 failures auto-register via `/vibe.regress`
44
+ 아래 **Done Criteria** 절(Bundled implementation 안)이 SSOT다 자리에 있던 축약본은
45
+ 리포트 위치(`~/.vibe/test-reports/`, 프로젝트 로컬 금지), `warned` 만으로는 regress
46
+ 부르지 않는다는 규칙, STCV 4축, 에이전트 그룹 재귀 탐색이 빠진 손실 버전이었다.
48
47
 
49
48
  ---
50
49