fix(vscode): include kilo-sandbox-mutation-worker.js in extension bundle - #11926
Merged
marius-kilocode merged 3 commits intoJul 3, 2026
Merged
Conversation
The release build script (packages/kilo-vscode/script/build.ts) was missing the copyKiloSandboxWorker call, causing the sandbox mutation worker file to be absent from .vsix packages. All sandbox-enclosed file operations (write, copy, rename, chmod, etc.) would fail with a "Module not found" error because the kilo binary could not spawn the required worker process. Closes Kilo-Org#11925
marius-kilocode
self-requested a review
July 3, 2026 16:39
marius-kilocode
approved these changes
Jul 3, 2026
marius-kilocode
enabled auto-merge (squash)
July 3, 2026 16:46
Collaborator
|
@trim21 thanks for that. Corrected the formatting and merged! |
Contributor
Author
|
this repo is too big, git take too long to rebase, I haven't be able to rebase the commit after the formatting... |
Collaborator
|
No worries, already merged it! Thanks! |
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (2 files)
Reviewed by claude-sonnet-5-20260630 · Input: 14 · Output: 3.3K · Cached: 267.9K Review guidance: REVIEW.md from base branch |
Contributor
Author
please consider make a new vscode release.... |
Collaborator
|
@trim21 also done. Just released! |
t7tran
pushed a commit
to t7tran/kilocode
that referenced
this pull request
Aug 14, 2026
…dle (Kilo-Org#11926) * fix(vscode): include kilo-sandbox-mutation-worker.js in extension bundle The release build script (packages/kilo-vscode/script/build.ts) was missing the copyKiloSandboxWorker call, causing the sandbox mutation worker file to be absent from .vsix packages. All sandbox-enclosed file operations (write, copy, rename, chmod, etc.) would fail with a "Module not found" error because the kilo binary could not spawn the required worker process. Closes Kilo-Org#11925 * chore(vscode): fix import formatting --------- Co-authored-by: marius-kilocode <marius@kilocode.ai>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Fixes the missing
kilo-sandbox-mutation-worker.jsfile in VS Code extension.vsixpackages.The release build script (
packages/kilo-vscode/script/build.ts) was missing thecopyKiloSandboxWorkercall present in the local dev script (local-bin.ts). This caused all sandbox-enclosed file operations (write, copy, rename, chmod, etc.) to fail with:Why
The
kilobinary spawnskilo-sandbox-mutation-worker.jsas a child process to perform filesystem mutations inside the bwrap sandbox. Without this file in the extensionbin/directory, all sandboxed file operations fail.Fix
copyKiloSandboxWorkerimport and call inpackages/kilo-vscode/script/build.ts, matchinglocal-bin.tsCloses #11925