@kibitzsh/kibitz 0.0.4 → 0.0.6
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/README.md +11 -8
- package/dist/cli/index.js +2676 -341
- package/dist/core/commentary.js +929 -602
- package/dist/core/platform-support.js +127 -155
- package/dist/core/session-dispatch.js +391 -379
- package/dist/core/watcher.js +852 -829
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@kibitzsh/kibitz",
|
|
3
3
|
"displayName": "Kibitz",
|
|
4
4
|
"description": "Real-time decoded feed of AI agent actions — monitor multiple Claude Code & Codex sessions, see exactly what each agent is doing, and coordinate swarms efficiently",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.6",
|
|
6
6
|
"publisher": "kibitzsh",
|
|
7
7
|
"icon": "media/icon.png",
|
|
8
8
|
"repository": {
|
|
@@ -49,9 +49,11 @@
|
|
|
49
49
|
"check:session-names": "npm run build && npm run typecheck && node scripts/visual-session-names.js --once",
|
|
50
50
|
"check:model-persistence": "npm run typecheck && node scripts/test-model-persistence.js",
|
|
51
51
|
"deploy:vscode": "npm run check:compat && npm run typecheck && node scripts/deploy-vscode-extension.js",
|
|
52
|
+
"publish:vscode": "bash scripts/publish-vscode.sh",
|
|
52
53
|
"watch": "npm run build:ext -- --watch",
|
|
53
|
-
"package": "vsce package",
|
|
54
|
-
"publish:npm": "npm run build && node scripts/publish-npm.js"
|
|
54
|
+
"package": "npx @vscode/vsce package",
|
|
55
|
+
"publish:npm": "npm run build && node scripts/publish-npm.js",
|
|
56
|
+
"cr": "bash scripts/release-cr.sh"
|
|
55
57
|
},
|
|
56
58
|
"devDependencies": {
|
|
57
59
|
"@types/node": "^20.0.0",
|