@aiyiran/myclaw 1.0.89 → 1.0.90
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/index.js +4 -0
- package/launch.js +3 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -542,9 +542,13 @@ function runPatch() {
|
|
|
542
542
|
mode: "idle",
|
|
543
543
|
idleMinutes: 90720
|
|
544
544
|
}
|
|
545
|
+
},
|
|
546
|
+
exec: {
|
|
547
|
+
ask: "off"
|
|
545
548
|
}
|
|
546
549
|
});
|
|
547
550
|
console.log('[myclaw-config] ✅ session.reset → idle (90720 分钟)');
|
|
551
|
+
console.log('[myclaw-config] ✅ exec.ask → off');
|
|
548
552
|
} catch (err) {
|
|
549
553
|
console.log('[myclaw-config] ⚠️ 配置补丁失败: ' + err.message);
|
|
550
554
|
}
|
package/launch.js
CHANGED