@su-record/vibe 3.2.44 → 3.2.45
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe",
|
|
3
3
|
"displayName": "Vibe",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.45",
|
|
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.45",
|
|
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
|
@@ -13,6 +13,25 @@ priority: 60
|
|
|
13
13
|
|
|
14
14
|
> Are you processing video files programmatically? If just embedding a YouTube/Vimeo player, this skill is not needed.
|
|
15
15
|
|
|
16
|
+
## Prerequisite — FFmpeg
|
|
17
|
+
|
|
18
|
+
이 스킬의 모든 명령은 FFmpeg 에 의존한다. **작업 전에 존재를 먼저 확인한다:**
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
ffmpeg -version && ffprobe -version
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
없으면 설치를 안내하고 멈춘다 — 뒤로 갈수록 실패가 비싸진다.
|
|
25
|
+
|
|
26
|
+
| 환경 | 설치 |
|
|
27
|
+
|---|---|
|
|
28
|
+
| macOS | `brew install ffmpeg` |
|
|
29
|
+
| Debian/Ubuntu | `sudo apt install ffmpeg` |
|
|
30
|
+
| 그 외 | https://ffmpeg.org/download.html |
|
|
31
|
+
|
|
32
|
+
> 코덱까지 갖춰졌는지는 별개다 — 아래 Gotchas 의 "Assuming codec availability" 참조.
|
|
33
|
+
> 빌드마다 포함 코덱이 다르므로 인코딩 전에 `ffmpeg -codecs` 로 확인한다.
|
|
34
|
+
|
|
16
35
|
## Gotchas
|
|
17
36
|
|
|
18
37
|
| Gotcha | Consequence | Prevention |
|