$npx -y skills add dgk-dev/dgk-gpt --skill ralphPersistent completion mode. Use when the user explicitly says /ralph or clearly wants you to keep iterating until the task is actually finished, repeating implement-verify-fix loops instead of stopping at partial progress.
| 1 | # Ralph |
| 2 | |
| 3 | Use this as a persistence override, not a separate methodology. |
| 4 | |
| 5 | ## Default |
| 6 | |
| 7 | - Treat the task as incomplete until the requested outcome is verified. |
| 8 | - Repeat the loop: inspect -> implement -> verify -> fix -> verify again. |
| 9 | - If a check fails, continue with the next fix instead of stopping at the first attempt. |
| 10 | - If one approach stalls, switch approaches and keep going. |
| 11 | - Keep intermediate updates short and progress-focused. |
| 12 | |
| 13 | ## Do Not Stop For |
| 14 | |
| 15 | - "Probably fixed" |
| 16 | - "Good enough" |
| 17 | - Partial completion |
| 18 | - A failed first or second attempt |
| 19 | - Needing one more verification pass |
| 20 | |
| 21 | ## Stop Only When |
| 22 | |
| 23 | - The requested outcome is verified. |
| 24 | - A real external blocker prevents further progress. |
| 25 | - The user explicitly stops or redirects the work. |
| 26 | |
| 27 | ## Avoid |
| 28 | |
| 29 | - Do not ask whether to continue after each failure. |
| 30 | - Do not declare success without running the relevant checks. |
| 31 | - Do not fall back to planning mode unless execution is genuinely blocked. |
| 32 | |
| 33 | ## Finish |
| 34 | |
| 35 | Return: |
| 36 | - what was completed |
| 37 | - what was verified |
| 38 | - what is still blocked, if anything |