@the-open-engine/zeroshot 6.33.0 → 6.33.1

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@the-open-engine/zeroshot",
3
- "version": "6.33.0",
3
+ "version": "6.33.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@the-open-engine/zeroshot",
9
- "version": "6.33.0",
9
+ "version": "6.33.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-open-engine/zeroshot",
3
- "version": "6.33.0",
3
+ "version": "6.33.1",
4
4
  "description": "Independent executor–verifier orchestration for software changes.",
5
5
  "main": "src/orchestrator.js",
6
6
  "bin": {
@@ -21,12 +21,10 @@ const DEFAULT_MAX_ITERATIONS = 100;
21
21
  // Use positive number for timeout in milliseconds
22
22
  const DEFAULT_TIMEOUT = 0;
23
23
 
24
- // Stale detection - ENABLED by default using multi-indicator analysis (safe from false positives)
25
- // Multi-indicator approach checks: process state, CPU usage, context switches, network I/O
26
- // Only flags as stuck when ALL indicators show inactivity (score >= 3.5)
27
- // Single-indicator detection (just output freshness) was too risky - this is safe.
24
+ // Output-silence detection is opt-in because healthy provider operations may be quiet for
25
+ // longer than the stale threshold. Explicit task timeouts remain independently supported.
28
26
  const DEFAULT_STALE_DURATION_MS = 30 * 60 * 1000; // 30 minutes before triggering analysis
29
- const DEFAULT_LIVENESS_CHECK_ENABLED = true; // Safe with multi-indicator detection
27
+ const DEFAULT_LIVENESS_CHECK_ENABLED = false;
30
28
 
31
29
  function applyOutputDefaults(config) {
32
30
  // CRITICAL: Enforce JSON schema output by default to prevent parse failures and crashes