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.
- package/README.md +9 -5
- package/dist/commands/docker.js +20 -11
- package/dist/commands/init.js +6 -0
- package/dist/commands/once.js +4 -0
- package/dist/commands/run.js +77 -17
- package/dist/config/cli-providers.json +18 -0
- package/dist/tui/components/SectionNav.js +6 -0
- package/dist/utils/config.d.ts +1 -0
- package/docs/BRANCHING.md +22 -29
- package/docs/CHAT-CLIENTS.md +13 -17
- package/docs/CHAT-RESPONDERS.md +3 -3
- package/docs/DEVELOPMENT.md +45 -7
- package/docs/DOCKER.md +5 -4
- package/docs/FAQ.md +125 -0
- package/docs/HOW-TO-WRITE-PRDs.md +5 -8
- package/docs/MACOS-DEVELOPMENT.md +3 -3
- package/docs/PRD-GENERATOR.md +9 -12
- package/docs/RALPH-SETUP-TEMPLATE.md +56 -24
- package/docs/SECURITY.md +4 -2
- package/docs/SKILLS.md +3 -3
- package/docs/chat-architecture.md +37 -30
- package/docs/run-state-machine.md +13 -4
- package/package.json +1 -1
|
@@ -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[
|
|
31
|
-
FailurePath -->
|
|
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" -->
|
|
37
|
+
CriticalCheck -- "No" --> ProgressCheck
|
|
34
38
|
|
|
35
39
|
ExitCheck -- "Yes" --> SuccessPath[Reset Failure Counter]
|
|
36
|
-
SuccessPath -->
|
|
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
|
```
|