@su-record/vibe 3.2.52 → 3.2.53
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/vibe.review/references/worked-examples.md +2 -2
- package/skills/vibe.run/references/coverage-loop.md +1 -1
- package/skills/vibe.run/references/process-steps.md +2 -2
- package/skills/vibe.spec/SKILL.md +1 -1
- package/skills/vibe.verify/references/trace-mode.md +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe",
|
|
3
3
|
"displayName": "Vibe",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.53",
|
|
5
5
|
"description": "Verification harness for AI coding agents — \"done\" is decided by deterministic gates (test exit codes, run-ledger, regression memory), not the model self-report.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "su-record",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.53",
|
|
4
4
|
"description": "Verification harness for AI coding agents — \"done\" is decided by deterministic gates (test exit codes, run-ledger, regression memory), not the model self-report.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "su-record",
|
package/package.json
CHANGED
|
@@ -78,13 +78,13 @@ Examples:
|
|
|
78
78
|
**1. Validate code quality before review:**
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => t.validateCodeQuality({targetPath: 'src/', projectPath: process.cwd()}).then(r => console.log(r.content[0].text)))"
|
|
81
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/convention/index.js').then(t => t.validateCodeQuality({targetPath: 'src/', projectPath: process.cwd()}).then(r => console.log(r.content[0].text)))"
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
**2. Analyze complexity of changed files:**
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => t.analyzeComplexity({targetPath: 'src/api/users.ts', projectPath: process.cwd()}).then(r => console.log(r.content[0].text)))"
|
|
87
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/convention/index.js').then(t => t.analyzeComplexity({targetPath: 'src/api/users.ts', projectPath: process.cwd()}).then(r => console.log(r.content[0].text)))"
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
**3. Save critical finding for reference:**
|
|
@@ -40,7 +40,7 @@ max_iterations(기본 10) 도달 → 잔여 인박스 이월
|
|
|
40
40
|
## RTM 생성
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => { const r = t.generateTraceabilityMatrix('{feature-name}', {projectPath: process.cwd()}); console.log(JSON.stringify(r, null, 2)); })"
|
|
43
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/spec/index.js').then(t => { const r = t.generateTraceabilityMatrix('{feature-name}', {projectPath: process.cwd()}); console.log(JSON.stringify(r, null, 2)); })"
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
`generateTraceabilityMatrix` 는 동기 함수다 — 반환값에 `.then()` 을 쓰지 않는다.
|
|
@@ -24,7 +24,7 @@ Step 3: If neither → Error: "Run /vibe.spec first"
|
|
|
24
24
|
For a monolithic SPEC, compile it after resolving the canonical path. For a split SPEC, do not compile `_index.md`; defer this step until each active phase file is loaded in Phase Isolation Step B. Compile with `writeExecutionPacket`, then immediately verify the saved artifact with `validateExecutionPacket`.
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
node -e "import('file://{{VIBE_PATH}}/dist/tools/index.js').then(t => {
|
|
27
|
+
node -e "import('file://{{VIBE_PATH}}/dist/tools/spec/index.js').then(t => {
|
|
28
28
|
const projectPath=process.cwd(), specPath='.vibe/specs/{feature-name}.md';
|
|
29
29
|
const profile='{codex-or-claude-code}';
|
|
30
30
|
const written=t.writeExecutionPacket({projectPath,specPath,profile});
|
|
@@ -168,7 +168,7 @@ After ALL phases complete:
|
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
170
|
# generateTraceabilityMatrix is synchronous — no .then()
|
|
171
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => { const r = t.generateTraceabilityMatrix('{feature-name}', {projectPath: process.cwd()}); console.log(JSON.stringify(r, null, 2)); })"
|
|
171
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/spec/index.js').then(t => { const r = t.generateTraceabilityMatrix('{feature-name}', {projectPath: process.cwd()}); console.log(JSON.stringify(r, null, 2)); })"
|
|
172
172
|
```
|
|
173
173
|
|
|
174
174
|
> Default SPEC path is `.vibe/specs/<feature>.md`. `status === 'empty'` must be treated as failed/not-applicable — never as 100% pass.
|
|
@@ -72,7 +72,7 @@ Legacy `.vibe/interviews/` or `.vibe/plans/` artifacts가 실제로 감지된
|
|
|
72
72
|
SPEC 을 쓴 직후, **승인을 요청하기 전에** 실행한다. 셀프 리뷰가 아니라 코드 판정이다:
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => { const fs=require('fs'); const p='.vibe/specs/{feature-name}.md'; const r=t.validateSpecDocument(fs.readFileSync(p,'utf-8'),{specPath:p}); console.log(t.formatSpecValidation(r)); process.exitCode = r.valid ? 0 : 1; })"
|
|
75
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/spec/index.js').then(t => { const fs=require('fs'); const p='.vibe/specs/{feature-name}.md'; const r=t.validateSpecDocument(fs.readFileSync(p,'utf-8'),{specPath:p}); console.log(t.formatSpecValidation(r)); process.exitCode = r.valid ? 0 : 1; })"
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
| 검사 | 심각도 | 왜 하류가 깨지는가 |
|
|
@@ -188,10 +188,10 @@ The RTM generation uses core tools:
|
|
|
188
188
|
|
|
189
189
|
```bash
|
|
190
190
|
# Generate RTM (generateTraceabilityMatrix is synchronous — no .then())
|
|
191
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => { const m = t.generateTraceabilityMatrix('login', {projectPath: process.cwd()}); console.log(t.formatMatrixAsMarkdown(m)); })"
|
|
191
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/spec/index.js').then(t => { const m = t.generateTraceabilityMatrix('login', {projectPath: process.cwd()}); console.log(t.formatMatrixAsMarkdown(m)); })"
|
|
192
192
|
|
|
193
193
|
# Generate HTML
|
|
194
|
-
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/index.js').then(t => { const m = t.generateTraceabilityMatrix('login', {projectPath: process.cwd()}); console.log(t.formatMatrixAsHtml(m)); })"
|
|
194
|
+
node -e "import('{{VIBE_PATH_URL}}/node_modules/@su-record/vibe/dist/tools/spec/index.js').then(t => { const m = t.generateTraceabilityMatrix('login', {projectPath: process.cwd()}); console.log(t.formatMatrixAsHtml(m)); })"
|
|
195
195
|
```
|
|
196
196
|
|
|
197
197
|
> **Note:** Default SPEC path is `.vibe/specs/<feature>.md` (falls back to `.claude/vibe/specs/` then `.claude/specs/` for legacy projects).
|