clay-server 2.28.0-beta.2 → 2.28.0-beta.3

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/lib/sdk-bridge.js CHANGED
@@ -957,7 +957,7 @@ function createSDKBridge(opts) {
957
957
  return;
958
958
  }
959
959
 
960
- var warmupOptions = { cwd: cwd, settingSources: ["user", "project", "local"] };
960
+ var warmupOptions = { cwd: cwd, settingSources: ["user", "project", "local"], settings: { disableAllHooks: true } };
961
961
  if (dangerouslySkipPermissions) {
962
962
  warmupOptions.permissionMode = "bypassPermissions";
963
963
  warmupOptions.allowDangerouslySkipPermissions = true;
@@ -1657,7 +1657,7 @@ function createSDKBridge(opts) {
1657
1657
  var mq = createMessageQueue();
1658
1658
  mq.push({ type: "user", message: { role: "user", content: [{ type: "text", text: "hi" }] } });
1659
1659
  mq.end();
1660
- var warmupOptions = { cwd: cwd, settingSources: ["user", "project", "local"], abortController: ac };
1660
+ var warmupOptions = { cwd: cwd, settingSources: ["user", "project", "local"], abortController: ac, settings: { disableAllHooks: true } };
1661
1661
  if (dangerouslySkipPermissions) {
1662
1662
  warmupOptions.permissionMode = "bypassPermissions";
1663
1663
  warmupOptions.allowDangerouslySkipPermissions = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "2.28.0-beta.2",
3
+ "version": "2.28.0-beta.3",
4
4
  "description": "Self-hosted Claude Code in your browser. Multi-session, multi-user, push notifications.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",