@kibitzsh/kibitz 0.0.5 → 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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -130,6 +130,10 @@ npm run check:model-persistence
130
130
  2. Full guarded release flow:
131
131
  - `npm run cr`
132
132
  3. `npm run cr` performs checks/build, bumps version, publishes VS Code Marketplace + npm, verifies versions, updates Homebrew formula, and pushes tags.
133
+ 4. For GitHub auto-release on tag push, add repository secrets:
134
+ - `VSCE_PAT` (VS Marketplace publish PAT)
135
+ - `NPM_TOKEN` (npm publish token)
136
+ - `HOMEBREW_TAP_TOKEN` (GitHub token with write access to `kibitzsh/homebrew-kibitz`)
133
137
 
134
138
  ## Distribution Channels
135
139
 
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",
5
+ "version": "0.0.6",
6
6
  "publisher": "kibitzsh",
7
7
  "icon": "media/icon.png",
8
8
  "repository": {
@@ -49,7 +49,7 @@
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": "npx @vscode/vsce publish",
52
+ "publish:vscode": "bash scripts/publish-vscode.sh",
53
53
  "watch": "npm run build:ext -- --watch",
54
54
  "package": "npx @vscode/vsce package",
55
55
  "publish:npm": "npm run build && node scripts/publish-npm.js",