ralph-cli-sandboxed 0.6.3 → 0.6.5

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.
@@ -27,13 +27,21 @@ flowchart TD
27
27
  subgraph Analysis ["4. Result Analysis"]
28
28
  ExitCheck{Exit Code == 0?}
29
29
 
30
- ExitCheck -- "No" --> FailurePath[Increment Failure Counter]
31
- FailurePath --> CriticalCheck{Failures >= 3?}
30
+ ExitCheck -- "No" --> FailurePath[Track Failure]
31
+ FailurePath --> SameCode{Same Exit Code\nas Last Failure?}
32
+ SameCode -- "Yes" --> IncrementFailures[Increment Consecutive\nFailure Counter]
33
+ SameCode -- "No" --> ResetToOne[Reset Counter to 1]
34
+ IncrementFailures --> CriticalCheck{Consecutive\nFailures >= 3?}
35
+ ResetToOne --> CriticalCheck
32
36
  CriticalCheck -- "Yes" --> Abort([Abort: Too Many Errors])
33
- CriticalCheck -- "No" --> SignalCheck
37
+ CriticalCheck -- "No" --> ProgressCheck
34
38
 
35
39
  ExitCheck -- "Yes" --> SuccessPath[Reset Failure Counter]
36
- SuccessPath --> SignalCheck
40
+ SuccessPath --> ProgressCheck
41
+
42
+ ProgressCheck{All Mode:\nProgress Made?}
43
+ ProgressCheck -- "Yes / Not All Mode" --> SignalCheck
44
+ ProgressCheck -- "No progress\n3 iterations" --> StallAbort([Abort: No Progress])
37
45
 
38
46
  SignalCheck{COMPLETE Signal?}
39
47
  SignalCheck -- "Yes" --> CompleteModeCheck
@@ -73,5 +81,6 @@ flowchart TD
73
81
  style Analysis fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px
74
82
  style Completion fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
75
83
  style Abort fill:#ffebee,stroke:#c62828,color:#c62828
84
+ style StallAbort fill:#ffebee,stroke:#c62828,color:#c62828
76
85
  style End fill:#e8f5e9,stroke:#2e7d32,color:#2e7d32
77
86
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-cli-sandboxed",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "AI-driven development automation CLI for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {