@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 CHANGED
@@ -124,13 +124,16 @@ npm run check:model-persistence
124
124
 
125
125
  ## Release Flow
126
126
 
127
- 1. Bump `version` in `package.json`.
128
- 2. Run:
129
- - `npm run test:all`
130
- - `npm run deploy:vscode` (local smoke)
131
- 3. Create extension package:
132
- - `npm run package` (builds `.vsix` via `vsce package`)
133
- 4. Push git tag/release notes and attach `.vsix` to GitHub release (recommended).
127
+ 1. Local smoke and package:
128
+ - `npm run deploy:vscode` (local install to VS Code/Cursor)
129
+ - `npm run package` (builds `.vsix`)
130
+ 2. Full guarded release flow:
131
+ - `npm run cr`
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`)
134
137
 
135
138
  ## Distribution Channels
136
139
 
@@ -138,7 +141,7 @@ npm run check:model-persistence
138
141
 
139
142
  - Create publisher in VS Marketplace (if not already created).
140
143
  - Create Azure DevOps PAT with Marketplace publish scopes.
141
- - Login and publish with `vsce`.
144
+ - Publish with `npm run publish:vscode` (`VSCE_PAT` required).
142
145
  - Recommended:
143
146
  - publish stable versions to Marketplace,
144
147
  - keep `.vsix` artifacts in GitHub Releases for manual install/rollback.