-
Notifications
You must be signed in to change notification settings - Fork 3.2k
[Bug] Missing Windows (win32-x64-msvc) binaries for agentic-jujutsu package #1496
Description
Description
The agentic-jujutsu package is currently broken for Windows users due to missing platform-specific native binaries.
Problem
When installing or running agentic-jujutsu via npx or npm install on a Windows machine, the package attempts to download the correct native binary for the system — specifically agentic-jujutsu-win32-x64-msvc. However, this platform-specific package was never published to the npm registry.
Attempting to locate agentic-jujutsu-win32-x64-msvc on npm returns a 404 Not Found error. Since the native .node file is not included in the main package and the required platform-specific dependency does not exist, Node.js throws a MODULE_NOT_FOUND error.
Steps to Reproduce
- On a Windows (x64) machine, run:
or
npx agentic-jujutsunpm install agentic-jujutsu - Observe the
MODULE_NOT_FOUNDerror referencing the missingagentic-jujutsu-win32-x64-msvcpackage.
Expected Behavior
The package should include pre-built binaries for all supported platforms, including Windows (win32-x64-msvc), so that it can be installed and run without errors.
Actual Behavior
Installation/execution fails with a MODULE_NOT_FOUND error because the agentic-jujutsu-win32-x64-msvc binary package is missing from npm.
Environment
- OS: Windows 10/11 (x64)
- Node.js: v18+ (also tested on v20)
- npm: v9+
Suggested Fix
Please publish the missing Windows native binaries (agentic-jujutsu-win32-x64-msvc) to the npm registry so that Windows users can use the package.