@su-record/vibe 3.2.26 → 3.2.27

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,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe",
3
- "version": "3.2.26",
3
+ "version": "3.2.27",
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/README.md CHANGED
@@ -190,12 +190,18 @@ codex
190
190
  npm 전역 설치와 **병행**하는 경로다. ChatGPT 와 Codex 는 플러그인 디렉토리를 공유하므로, 한 번 패키징하면 양쪽에 올라간다.
191
191
 
192
192
  ```bash
193
- # 저장소를 그대로 플러그인으로 설치해 검증 (repo 스코프 마켓플레이스가 이미 포함돼 있다)
194
- # .agents/plugins/marketplace.json source.path "./"
195
- # 1) ChatGPT 데스크톱 앱 재시작
196
- # 2) Plugins Directory 에서 "Vibe (local)" → vibe 설치
193
+ npm run build:plugin # plugins/vibe/ 배포 트리 조립 (package.json files 기준)
194
+ codex plugin marketplace add . # repo 스코프 마켓플레이스 등록
195
+ codex plugin add vibe@vibe-local # 설치
196
+ codex plugin list # vibe@vibe-local installed, enabled
197
197
  ```
198
198
 
199
+ ChatGPT 데스크톱 앱에서는 앱을 **재시작**한 뒤 Plugins Directory 에서 "Vibe (local)" → `vibe` 를 설치한다.
200
+
201
+ > 마켓플레이스 파일만 만들어두면 잡히지 않는다 — `marketplace add` 로 **등록**해야 한다.
202
+ > `source.path` 는 저장소 루트가 아니라 빌드 산출물(`./plugins/vibe`)을 가리킨다.
203
+ > 루트를 가리키면 워킹트리가 통째로 캐시에 복사된다 (실측 655MB, 그중 620MB 가 `node_modules`).
204
+
199
205
  | 번들 | ChatGPT 앱 | Codex CLI |
200
206
  |---|---|---|
201
207
  | skills (52) | ✅ | ✅ |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "3.2.26",
3
+ "version": "3.2.27",
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",
@@ -36,7 +36,8 @@
36
36
  "postinstall": "node -e \"import('./dist/cli/postinstall/main.js').then(m=>m.main()).catch(e=>process.stderr.write('\\u26a0\\ufe0f vibe postinstall skipped: '+((e&&e.message)||e)+'\\n Assets and hooks were not installed. Run: npx vibe upgrade\\n'))\"",
37
37
  "release": "bash scripts/release.sh",
38
38
  "sync:plugin-version": "npx tsx scripts/sync-plugin-version.ts",
39
- "version": "npx tsx scripts/sync-plugin-version.ts && git add .codex-plugin/plugin.json"
39
+ "version": "npx tsx scripts/sync-plugin-version.ts && git add .codex-plugin/plugin.json",
40
+ "build:plugin": "npx tsx scripts/build-plugin.ts"
40
41
  },
41
42
  "keywords": [
42
43
  "ai",