moflo 4.8.58 → 4.8.59
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moflo",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.59",
|
|
4
4
|
"description": "MoFlo — AI agent orchestration for Claude Code. Forked from ruflo/claude-flow with patches applied to source, plus feature-level orchestration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"@types/js-yaml": "^4.0.9",
|
|
112
112
|
"@types/node": "^20.19.37",
|
|
113
113
|
"eslint": "^8.0.0",
|
|
114
|
-
"moflo": "^4.8.
|
|
114
|
+
"moflo": "^4.8.58",
|
|
115
115
|
"tsx": "^4.21.0",
|
|
116
116
|
"typescript": "^5.9.3",
|
|
117
117
|
"vitest": "^4.0.0"
|
|
@@ -78,7 +78,7 @@ const DEFAULT_CONFIG = {
|
|
|
78
78
|
helpers: true,
|
|
79
79
|
},
|
|
80
80
|
sandbox: {
|
|
81
|
-
enabled:
|
|
81
|
+
enabled: false,
|
|
82
82
|
tier: 'auto',
|
|
83
83
|
},
|
|
84
84
|
epic: {
|
|
@@ -359,7 +359,7 @@ auto_update:
|
|
|
359
359
|
# OS-level sandbox for spell bash steps
|
|
360
360
|
# Denylist always runs regardless of this setting
|
|
361
361
|
sandbox:
|
|
362
|
-
enabled:
|
|
362
|
+
enabled: false # true to enable OS sandbox (denylist runs either way)
|
|
363
363
|
tier: auto # auto | denylist-only | full
|
|
364
364
|
# auto = best available, graceful fallback
|
|
365
365
|
# denylist-only = skip OS sandbox
|
|
@@ -15,7 +15,7 @@ import { execSync } from 'node:child_process';
|
|
|
15
15
|
import { existsSync } from 'node:fs';
|
|
16
16
|
import { platform } from 'node:os';
|
|
17
17
|
export const DEFAULT_SANDBOX_CONFIG = {
|
|
18
|
-
enabled:
|
|
18
|
+
enabled: false,
|
|
19
19
|
tier: 'auto',
|
|
20
20
|
};
|
|
21
21
|
// ============================================================================
|