codehydra 2026.2.26 → 2026.2.28

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/codehydra.js +3 -1
  2. package/package.json +1 -1
package/codehydra.js CHANGED
@@ -136,7 +136,9 @@ async function main() {
136
136
  console.log("Done!\n");
137
137
  }
138
138
 
139
- const child = spawn(binaryPath, process.argv.slice(2), { stdio: "inherit" });
139
+ const child = spawn(binaryPath, ["--auto-update=never", ...process.argv.slice(2)], {
140
+ stdio: "inherit",
141
+ });
140
142
  child.on("exit", (code) => process.exit(code || 0));
141
143
  }
142
144
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codehydra",
3
- "version": "2026.2.26",
3
+ "version": "2026.2.28",
4
4
  "description": "Multi-workspace IDE for parallel AI agent development",
5
5
  "bin": {
6
6
  "codehydra": "./codehydra.js"