@highway1/cli 0.1.60 → 0.1.61
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/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -17521,7 +17521,9 @@ var ClawDaemon = class {
|
|
|
17521
17521
|
this.defense = new DefenseMiddleware({
|
|
17522
17522
|
trustSystem: this.trustSystem,
|
|
17523
17523
|
storage: this.queue.store,
|
|
17524
|
-
minTrustScore: 0
|
|
17524
|
+
minTrustScore: 0,
|
|
17525
|
+
autoBlockThreshold: 0
|
|
17526
|
+
// Disable auto-blocking; let users block manually
|
|
17525
17527
|
});
|
|
17526
17528
|
logger15.info("Defense middleware initialized");
|
|
17527
17529
|
this.router.registerCatchAllHandler(async (envelope) => {
|