Merge pull request #11660 from Kilo-Org/fix/vscode-cli-version-marker-packaging

fix(vscode): exclude .cli-version marker from VSIX packaging
This commit is contained in:
Catriel Müller
2026-06-24 17:17:03 -03:00
committed by GitHub
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---
Stop shipping the local-only `.cli-version` build marker in packaged VSIX installs, which previously made production installs detect as local builds and inject a dev-only bwrap fallback.
+4
View File
@@ -25,6 +25,10 @@ AGENTS.md
# Include bin/ directory for CLI binary (production)
!bin/**
# .cli-version is a local-source build marker written by local-bin.ts. It must
# not ship in the VSIX, otherwise production installs are detected as local
# builds and may inject a dev-only bwrap fallback (see ServerManager.localCli).
bin/.cli-version
# Include WAV assets used by extension-host notification playback
!audio-wav/**