@the-bearded-bear/claude-craft 3.0.2 → 3.1.0

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.
Files changed (30) hide show
  1. package/Dev/i18n/de/Common/agents/ralph-conductor.md +146 -0
  2. package/Dev/i18n/de/Common/commands/ralph-run.md +171 -0
  3. package/Dev/i18n/de/Common/commands/setup-project-context.md +286 -0
  4. package/Dev/i18n/en/Common/agents/ralph-conductor.md +146 -0
  5. package/Dev/i18n/en/Common/commands/ralph-run.md +171 -0
  6. package/Dev/i18n/en/Common/commands/setup-project-context.md +286 -0
  7. package/Dev/i18n/es/Common/agents/ralph-conductor.md +146 -0
  8. package/Dev/i18n/es/Common/commands/ralph-run.md +171 -0
  9. package/Dev/i18n/es/Common/commands/setup-project-context.md +286 -0
  10. package/Dev/i18n/fr/Common/agents/ralph-conductor.md +146 -0
  11. package/Dev/i18n/fr/Common/commands/ralph-run.md +171 -0
  12. package/Dev/i18n/fr/Common/commands/setup-project-context.md +286 -0
  13. package/Dev/i18n/pt/Common/agents/ralph-conductor.md +146 -0
  14. package/Dev/i18n/pt/Common/commands/ralph-run.md +171 -0
  15. package/Dev/i18n/pt/Common/commands/setup-project-context.md +286 -0
  16. package/Tools/Ralph/README.md +303 -0
  17. package/Tools/Ralph/lib/checkpoint.sh +238 -0
  18. package/Tools/Ralph/lib/circuit-breaker.sh +172 -0
  19. package/Tools/Ralph/lib/dod-validator.sh +306 -0
  20. package/Tools/Ralph/lib/loop.sh +232 -0
  21. package/Tools/Ralph/lib/session.sh +234 -0
  22. package/Tools/Ralph/ralph.sh +491 -0
  23. package/Tools/Ralph/templates/ralph.yml.template +178 -0
  24. package/Tools/i18n/ralph/de.sh +147 -0
  25. package/Tools/i18n/ralph/en.sh +147 -0
  26. package/Tools/i18n/ralph/es.sh +147 -0
  27. package/Tools/i18n/ralph/fr.sh +147 -0
  28. package/Tools/i18n/ralph/pt.sh +147 -0
  29. package/cli/index.js +90 -0
  30. package/package.json +1 -1
@@ -0,0 +1,147 @@
1
+ #!/bin/bash
2
+ # =============================================================================
3
+ # Ralph Wiggum - Deutsche Nachrichten
4
+ # =============================================================================
5
+
6
+ # Header
7
+ MSG_HEADER="Ralph Wiggum - Kontinuierliche KI-Agenten-Schleife"
8
+ MSG_VERSION="Version"
9
+
10
+ # Status
11
+ MSG_ITERATION="Iteration"
12
+ MSG_OF="von"
13
+ MSG_SESSION="Sitzung"
14
+ MSG_STATUS="Status"
15
+ MSG_RUNNING="Laufend"
16
+ MSG_COMPLETE="Abgeschlossen"
17
+ MSG_FAILED="Fehlgeschlagen"
18
+ MSG_TIMEOUT="Zeituberschreitung"
19
+ MSG_CIRCUIT_BREAKER="Sicherungsschalter"
20
+
21
+ # Session
22
+ MSG_SESSION_CREATED="Sitzung erstellt"
23
+ MSG_SESSION_RESUMED="Sitzung fortgesetzt"
24
+ MSG_SESSION_ID="Sitzungs-ID"
25
+ MSG_SESSION_NOT_FOUND="Sitzung nicht gefunden"
26
+ MSG_SESSION_DIR="Sitzungsverzeichnis"
27
+
28
+ # Loop
29
+ MSG_STARTING_LOOP="Ralph-Schleife wird gestartet"
30
+ MSG_PROMPT="Prompt"
31
+ MSG_INVOKING_CLAUDE="Claude wird aufgerufen..."
32
+ MSG_WAITING="Warten"
33
+ MSG_SECONDS="Sekunden"
34
+ MSG_LOOP_COMPLETE="Schleife abgeschlossen"
35
+ MSG_LOOP_STOPPED="Schleife gestoppt"
36
+
37
+ # Definition of Done
38
+ MSG_DOD_TITLE="Definition of Done"
39
+ MSG_DOD_CHECKING="DoD-Kriterien werden gepruft..."
40
+ MSG_DOD_PASSED="DoD BESTANDEN"
41
+ MSG_DOD_FAILED="DoD NICHT ABGESCHLOSSEN"
42
+ MSG_DOD_ITEM_PASSED="OK"
43
+ MSG_DOD_ITEM_FAILED="FEHLER"
44
+ MSG_DOD_ITEM_SKIPPED="UBERSPRUNGEN"
45
+ MSG_DOD_REQUIRED="Erforderlich"
46
+ MSG_DOD_OPTIONAL="Optional"
47
+ MSG_DOD_ALL_REQUIRED_PASSED="Alle erforderlichen Kriterien bestanden!"
48
+ MSG_DOD_MISSING_REQUIRED="Fehlende erforderliche Kriterien:"
49
+ MSG_DOD_HUMAN_GATE="Menschliche Validierung"
50
+ MSG_DOD_HUMAN_PROMPT="Sieht das korrekt aus? (j/n):"
51
+
52
+ # Validators
53
+ MSG_VALIDATOR_COMMAND="Befehl wird ausgefuhrt"
54
+ MSG_VALIDATOR_OUTPUT="Ausgabemuster wird gepruft"
55
+ MSG_VALIDATOR_FILE="Dateienderungen werden gepruft"
56
+ MSG_VALIDATOR_HOOK="Hook wird ausgefuhrt"
57
+ MSG_VALIDATOR_HUMAN="Warten auf menschliche Validierung"
58
+
59
+ # Circuit Breaker
60
+ MSG_CB_TRIGGERED="Sicherungsschalter ausgelost"
61
+ MSG_CB_NO_CHANGES="Keine Dateienderungen seit"
62
+ MSG_CB_ITERATIONS="Iterationen"
63
+ MSG_CB_REPEATED_ERRORS="Wiederholte Fehler erkannt"
64
+ MSG_CB_OUTPUT_DECLINE="Ausgabe reduziert um"
65
+ MSG_CB_PERCENT="Prozent"
66
+ MSG_CB_MAX_REACHED="Maximale Iterationen erreicht"
67
+ MSG_CB_RESET="Sicherungsschalter zuruckgesetzt"
68
+
69
+ # Checkpointing
70
+ MSG_CHECKPOINT_CREATING="Checkpoint wird erstellt..."
71
+ MSG_CHECKPOINT_CREATED="Checkpoint erstellt"
72
+ MSG_CHECKPOINT_RESTORING="Wiederherstellung vom Checkpoint..."
73
+ MSG_CHECKPOINT_RESTORED="Checkpoint wiederhergestellt"
74
+ MSG_CHECKPOINT_BRANCH="Checkpoint-Branch"
75
+ MSG_CHECKPOINT_COMMIT="Commit"
76
+ MSG_CHECKPOINT_FAILED="Checkpoint fehlgeschlagen"
77
+
78
+ # Configuration
79
+ MSG_CONFIG_LOADING="Konfiguration wird geladen..."
80
+ MSG_CONFIG_LOADED="Konfiguration geladen"
81
+ MSG_CONFIG_NOT_FOUND="Konfigurationsdatei nicht gefunden"
82
+ MSG_CONFIG_USING_DEFAULTS="Standardkonfiguration wird verwendet"
83
+ MSG_CONFIG_INVALID="Ungultige Konfiguration"
84
+ MSG_CONFIG_CREATED="Konfiguration erstellt"
85
+
86
+ # Output
87
+ MSG_OUTPUT_LOG="Log-Datei"
88
+ MSG_OUTPUT_METRICS="Metriken-Datei"
89
+ MSG_OUTPUT_WRITING="Ausgabe wird geschrieben..."
90
+ MSG_OUTPUT_SAVED="Ausgabe gespeichert"
91
+
92
+ # Errors
93
+ MSG_ERROR="Fehler"
94
+ MSG_ERROR_CLAUDE_NOT_FOUND="Claude-Befehl nicht gefunden"
95
+ MSG_ERROR_NO_PROMPT="Kein Prompt angegeben"
96
+ MSG_ERROR_INVALID_SESSION="Ungultige Sitzung"
97
+ MSG_ERROR_TIMEOUT="Zeituberschreitung"
98
+ MSG_ERROR_VALIDATION="Validierungsfehler"
99
+ MSG_ERROR_GIT_NOT_FOUND="Git nicht gefunden (erforderlich fur Checkpointing)"
100
+ MSG_ERROR_JQ_NOT_FOUND="jq nicht gefunden (erforderlich fur JSON-Parsing)"
101
+ MSG_ERROR_YQ_NOT_FOUND="yq nicht gefunden (erforderlich fur YAML-Parsing)"
102
+
103
+ # Summary
104
+ MSG_SUMMARY_TITLE="Sitzungszusammenfassung"
105
+ MSG_SUMMARY_ITERATIONS="Gesamtiterationen"
106
+ MSG_SUMMARY_DURATION="Dauer"
107
+ MSG_SUMMARY_DOD_STATUS="DoD-Status"
108
+ MSG_SUMMARY_FILES_CHANGED="Geanderte Dateien"
109
+ MSG_SUMMARY_EXIT_REASON="Beendigungsgrund"
110
+
111
+ # Help
112
+ MSG_HELP_USAGE="Verwendung"
113
+ MSG_HELP_DESCRIPTION="Claude in kontinuierlicher Schleife ausfuhren bis Aufgabe abgeschlossen"
114
+ MSG_HELP_OPTIONS="Optionen"
115
+ MSG_HELP_PROMPT="Der Aufgaben-Prompt fur Claude"
116
+ MSG_HELP_CONFIG="Pfad zur ralph.yml-Konfiguration"
117
+ MSG_HELP_CONTINUE="Bestehende Sitzung fortsetzen"
118
+ MSG_HELP_MAX_ITER="Maximale Iterationen (Standard: 25)"
119
+ MSG_HELP_VERBOSE="Ausfuhrliche Ausgabe aktivieren"
120
+ MSG_HELP_DRY_RUN="Zeigen was getan wurde ohne Ausfuhrung"
121
+ MSG_HELP_LANG="Sprache (en, fr, es, de, pt)"
122
+ MSG_HELP_HELP="Diese Hilfemeldung anzeigen"
123
+ MSG_HELP_EXAMPLES="Beispiele"
124
+ MSG_HELP_EXAMPLE_BASIC="Grundlegende Verwendung mit Prompt"
125
+ MSG_HELP_EXAMPLE_CONFIG="Mit Konfigurationsdatei"
126
+ MSG_HELP_EXAMPLE_RESUME="Vorherige Sitzung fortsetzen"
127
+
128
+ # Menu (if interactive)
129
+ MSG_MENU_TITLE="Was mochten Sie tun?"
130
+ MSG_MENU_START="Neue Ralph-Sitzung starten"
131
+ MSG_MENU_RESUME="Bestehende Sitzung fortsetzen"
132
+ MSG_MENU_LIST="Sitzungen auflisten"
133
+ MSG_MENU_CONFIG="Konfiguration erstellen"
134
+ MSG_MENU_HELP="Hilfe"
135
+ MSG_MENU_QUIT="Beenden"
136
+
137
+ # Misc
138
+ MSG_PRESS_ENTER="Drucken Sie Enter um fortzufahren..."
139
+ MSG_YES="ja"
140
+ MSG_NO="nein"
141
+ MSG_CANCEL="Abgebrochen"
142
+ MSG_GOODBYE="Auf Wiedersehen!"
143
+ MSG_INVALID_CHOICE="Ungultige Auswahl"
144
+ MSG_CONFIRM="Bestatigen"
145
+ MSG_WARNING="Warnung"
146
+ MSG_INFO="Info"
147
+ MSG_SUCCESS="Erfolg"
@@ -0,0 +1,147 @@
1
+ #!/bin/bash
2
+ # =============================================================================
3
+ # Ralph Wiggum - English Messages
4
+ # =============================================================================
5
+
6
+ # Header
7
+ MSG_HEADER="Ralph Wiggum - Continuous AI Agent Loop"
8
+ MSG_VERSION="Version"
9
+
10
+ # Status
11
+ MSG_ITERATION="Iteration"
12
+ MSG_OF="of"
13
+ MSG_SESSION="Session"
14
+ MSG_STATUS="Status"
15
+ MSG_RUNNING="Running"
16
+ MSG_COMPLETE="Complete"
17
+ MSG_FAILED="Failed"
18
+ MSG_TIMEOUT="Timeout"
19
+ MSG_CIRCUIT_BREAKER="Circuit Breaker"
20
+
21
+ # Session
22
+ MSG_SESSION_CREATED="Session created"
23
+ MSG_SESSION_RESUMED="Session resumed"
24
+ MSG_SESSION_ID="Session ID"
25
+ MSG_SESSION_NOT_FOUND="Session not found"
26
+ MSG_SESSION_DIR="Session directory"
27
+
28
+ # Loop
29
+ MSG_STARTING_LOOP="Starting Ralph loop"
30
+ MSG_PROMPT="Prompt"
31
+ MSG_INVOKING_CLAUDE="Invoking Claude..."
32
+ MSG_WAITING="Waiting"
33
+ MSG_SECONDS="seconds"
34
+ MSG_LOOP_COMPLETE="Loop completed"
35
+ MSG_LOOP_STOPPED="Loop stopped"
36
+
37
+ # Definition of Done
38
+ MSG_DOD_TITLE="Definition of Done"
39
+ MSG_DOD_CHECKING="Checking DoD criteria..."
40
+ MSG_DOD_PASSED="DoD PASSED"
41
+ MSG_DOD_FAILED="DoD NOT YET COMPLETE"
42
+ MSG_DOD_ITEM_PASSED="PASS"
43
+ MSG_DOD_ITEM_FAILED="FAIL"
44
+ MSG_DOD_ITEM_SKIPPED="SKIP"
45
+ MSG_DOD_REQUIRED="Required"
46
+ MSG_DOD_OPTIONAL="Optional"
47
+ MSG_DOD_ALL_REQUIRED_PASSED="All required criteria passed!"
48
+ MSG_DOD_MISSING_REQUIRED="Missing required criteria:"
49
+ MSG_DOD_HUMAN_GATE="Human validation gate"
50
+ MSG_DOD_HUMAN_PROMPT="Does this look correct? (y/n):"
51
+
52
+ # Validators
53
+ MSG_VALIDATOR_COMMAND="Running command"
54
+ MSG_VALIDATOR_OUTPUT="Checking output pattern"
55
+ MSG_VALIDATOR_FILE="Checking file changes"
56
+ MSG_VALIDATOR_HOOK="Running hook"
57
+ MSG_VALIDATOR_HUMAN="Awaiting human validation"
58
+
59
+ # Circuit Breaker
60
+ MSG_CB_TRIGGERED="Circuit breaker triggered"
61
+ MSG_CB_NO_CHANGES="No file changes for"
62
+ MSG_CB_ITERATIONS="iterations"
63
+ MSG_CB_REPEATED_ERRORS="Repeated errors detected"
64
+ MSG_CB_OUTPUT_DECLINE="Output declined by"
65
+ MSG_CB_PERCENT="percent"
66
+ MSG_CB_MAX_REACHED="Maximum iterations reached"
67
+ MSG_CB_RESET="Circuit breaker reset"
68
+
69
+ # Checkpointing
70
+ MSG_CHECKPOINT_CREATING="Creating checkpoint..."
71
+ MSG_CHECKPOINT_CREATED="Checkpoint created"
72
+ MSG_CHECKPOINT_RESTORING="Restoring from checkpoint..."
73
+ MSG_CHECKPOINT_RESTORED="Checkpoint restored"
74
+ MSG_CHECKPOINT_BRANCH="Checkpoint branch"
75
+ MSG_CHECKPOINT_COMMIT="Commit"
76
+ MSG_CHECKPOINT_FAILED="Checkpoint failed"
77
+
78
+ # Configuration
79
+ MSG_CONFIG_LOADING="Loading configuration..."
80
+ MSG_CONFIG_LOADED="Configuration loaded"
81
+ MSG_CONFIG_NOT_FOUND="Configuration file not found"
82
+ MSG_CONFIG_USING_DEFAULTS="Using default configuration"
83
+ MSG_CONFIG_INVALID="Invalid configuration"
84
+ MSG_CONFIG_CREATED="Configuration created"
85
+
86
+ # Output
87
+ MSG_OUTPUT_LOG="Log file"
88
+ MSG_OUTPUT_METRICS="Metrics file"
89
+ MSG_OUTPUT_WRITING="Writing output..."
90
+ MSG_OUTPUT_SAVED="Output saved"
91
+
92
+ # Errors
93
+ MSG_ERROR="Error"
94
+ MSG_ERROR_CLAUDE_NOT_FOUND="Claude command not found"
95
+ MSG_ERROR_NO_PROMPT="No prompt provided"
96
+ MSG_ERROR_INVALID_SESSION="Invalid session"
97
+ MSG_ERROR_TIMEOUT="Operation timed out"
98
+ MSG_ERROR_VALIDATION="Validation error"
99
+ MSG_ERROR_GIT_NOT_FOUND="Git not found (required for checkpointing)"
100
+ MSG_ERROR_JQ_NOT_FOUND="jq not found (required for JSON parsing)"
101
+ MSG_ERROR_YQ_NOT_FOUND="yq not found (required for YAML parsing)"
102
+
103
+ # Summary
104
+ MSG_SUMMARY_TITLE="Session Summary"
105
+ MSG_SUMMARY_ITERATIONS="Total iterations"
106
+ MSG_SUMMARY_DURATION="Duration"
107
+ MSG_SUMMARY_DOD_STATUS="DoD status"
108
+ MSG_SUMMARY_FILES_CHANGED="Files changed"
109
+ MSG_SUMMARY_EXIT_REASON="Exit reason"
110
+
111
+ # Help
112
+ MSG_HELP_USAGE="Usage"
113
+ MSG_HELP_DESCRIPTION="Run Claude in a continuous loop until task completion"
114
+ MSG_HELP_OPTIONS="Options"
115
+ MSG_HELP_PROMPT="The task prompt for Claude"
116
+ MSG_HELP_CONFIG="Path to ralph.yml configuration"
117
+ MSG_HELP_CONTINUE="Resume an existing session"
118
+ MSG_HELP_MAX_ITER="Maximum iterations (default: 25)"
119
+ MSG_HELP_VERBOSE="Enable verbose output"
120
+ MSG_HELP_DRY_RUN="Show what would be done without executing"
121
+ MSG_HELP_LANG="Language (en, fr, es, de, pt)"
122
+ MSG_HELP_HELP="Show this help message"
123
+ MSG_HELP_EXAMPLES="Examples"
124
+ MSG_HELP_EXAMPLE_BASIC="Basic usage with prompt"
125
+ MSG_HELP_EXAMPLE_CONFIG="With configuration file"
126
+ MSG_HELP_EXAMPLE_RESUME="Resume previous session"
127
+
128
+ # Menu (if interactive)
129
+ MSG_MENU_TITLE="What would you like to do?"
130
+ MSG_MENU_START="Start new Ralph session"
131
+ MSG_MENU_RESUME="Resume existing session"
132
+ MSG_MENU_LIST="List sessions"
133
+ MSG_MENU_CONFIG="Create configuration"
134
+ MSG_MENU_HELP="Help"
135
+ MSG_MENU_QUIT="Quit"
136
+
137
+ # Misc
138
+ MSG_PRESS_ENTER="Press Enter to continue..."
139
+ MSG_YES="yes"
140
+ MSG_NO="no"
141
+ MSG_CANCEL="Cancelled"
142
+ MSG_GOODBYE="Goodbye!"
143
+ MSG_INVALID_CHOICE="Invalid choice"
144
+ MSG_CONFIRM="Confirm"
145
+ MSG_WARNING="Warning"
146
+ MSG_INFO="Info"
147
+ MSG_SUCCESS="Success"
@@ -0,0 +1,147 @@
1
+ #!/bin/bash
2
+ # =============================================================================
3
+ # Ralph Wiggum - Mensajes en Espanol
4
+ # =============================================================================
5
+
6
+ # Header
7
+ MSG_HEADER="Ralph Wiggum - Bucle Continuo de Agente IA"
8
+ MSG_VERSION="Version"
9
+
10
+ # Status
11
+ MSG_ITERATION="Iteracion"
12
+ MSG_OF="de"
13
+ MSG_SESSION="Sesion"
14
+ MSG_STATUS="Estado"
15
+ MSG_RUNNING="Ejecutando"
16
+ MSG_COMPLETE="Completado"
17
+ MSG_FAILED="Fallido"
18
+ MSG_TIMEOUT="Tiempo agotado"
19
+ MSG_CIRCUIT_BREAKER="Disyuntor"
20
+
21
+ # Session
22
+ MSG_SESSION_CREATED="Sesion creada"
23
+ MSG_SESSION_RESUMED="Sesion reanudada"
24
+ MSG_SESSION_ID="ID de sesion"
25
+ MSG_SESSION_NOT_FOUND="Sesion no encontrada"
26
+ MSG_SESSION_DIR="Directorio de sesion"
27
+
28
+ # Loop
29
+ MSG_STARTING_LOOP="Iniciando bucle Ralph"
30
+ MSG_PROMPT="Prompt"
31
+ MSG_INVOKING_CLAUDE="Invocando Claude..."
32
+ MSG_WAITING="Esperando"
33
+ MSG_SECONDS="segundos"
34
+ MSG_LOOP_COMPLETE="Bucle completado"
35
+ MSG_LOOP_STOPPED="Bucle detenido"
36
+
37
+ # Definition of Done
38
+ MSG_DOD_TITLE="Definition of Done"
39
+ MSG_DOD_CHECKING="Verificando criterios DoD..."
40
+ MSG_DOD_PASSED="DoD APROBADO"
41
+ MSG_DOD_FAILED="DoD NO COMPLETADO"
42
+ MSG_DOD_ITEM_PASSED="OK"
43
+ MSG_DOD_ITEM_FAILED="FALLO"
44
+ MSG_DOD_ITEM_SKIPPED="OMITIDO"
45
+ MSG_DOD_REQUIRED="Requerido"
46
+ MSG_DOD_OPTIONAL="Opcional"
47
+ MSG_DOD_ALL_REQUIRED_PASSED="Todos los criterios requeridos aprobados!"
48
+ MSG_DOD_MISSING_REQUIRED="Criterios requeridos faltantes:"
49
+ MSG_DOD_HUMAN_GATE="Validacion humana"
50
+ MSG_DOD_HUMAN_PROMPT="Se ve correcto? (s/n):"
51
+
52
+ # Validators
53
+ MSG_VALIDATOR_COMMAND="Ejecutando comando"
54
+ MSG_VALIDATOR_OUTPUT="Verificando patron de salida"
55
+ MSG_VALIDATOR_FILE="Verificando cambios de archivos"
56
+ MSG_VALIDATOR_HOOK="Ejecutando hook"
57
+ MSG_VALIDATOR_HUMAN="Esperando validacion humana"
58
+
59
+ # Circuit Breaker
60
+ MSG_CB_TRIGGERED="Disyuntor activado"
61
+ MSG_CB_NO_CHANGES="Sin cambios de archivos durante"
62
+ MSG_CB_ITERATIONS="iteraciones"
63
+ MSG_CB_REPEATED_ERRORS="Errores repetidos detectados"
64
+ MSG_CB_OUTPUT_DECLINE="Salida reducida en"
65
+ MSG_CB_PERCENT="porciento"
66
+ MSG_CB_MAX_REACHED="Maximo de iteraciones alcanzado"
67
+ MSG_CB_RESET="Disyuntor reiniciado"
68
+
69
+ # Checkpointing
70
+ MSG_CHECKPOINT_CREATING="Creando checkpoint..."
71
+ MSG_CHECKPOINT_CREATED="Checkpoint creado"
72
+ MSG_CHECKPOINT_RESTORING="Restaurando desde checkpoint..."
73
+ MSG_CHECKPOINT_RESTORED="Checkpoint restaurado"
74
+ MSG_CHECKPOINT_BRANCH="Rama checkpoint"
75
+ MSG_CHECKPOINT_COMMIT="Commit"
76
+ MSG_CHECKPOINT_FAILED="Fallo en checkpoint"
77
+
78
+ # Configuration
79
+ MSG_CONFIG_LOADING="Cargando configuracion..."
80
+ MSG_CONFIG_LOADED="Configuracion cargada"
81
+ MSG_CONFIG_NOT_FOUND="Archivo de configuracion no encontrado"
82
+ MSG_CONFIG_USING_DEFAULTS="Usando configuracion por defecto"
83
+ MSG_CONFIG_INVALID="Configuracion invalida"
84
+ MSG_CONFIG_CREATED="Configuracion creada"
85
+
86
+ # Output
87
+ MSG_OUTPUT_LOG="Archivo de log"
88
+ MSG_OUTPUT_METRICS="Archivo de metricas"
89
+ MSG_OUTPUT_WRITING="Escribiendo salida..."
90
+ MSG_OUTPUT_SAVED="Salida guardada"
91
+
92
+ # Errors
93
+ MSG_ERROR="Error"
94
+ MSG_ERROR_CLAUDE_NOT_FOUND="Comando claude no encontrado"
95
+ MSG_ERROR_NO_PROMPT="No se proporciono prompt"
96
+ MSG_ERROR_INVALID_SESSION="Sesion invalida"
97
+ MSG_ERROR_TIMEOUT="Operacion expirada"
98
+ MSG_ERROR_VALIDATION="Error de validacion"
99
+ MSG_ERROR_GIT_NOT_FOUND="Git no encontrado (requerido para checkpointing)"
100
+ MSG_ERROR_JQ_NOT_FOUND="jq no encontrado (requerido para parseo JSON)"
101
+ MSG_ERROR_YQ_NOT_FOUND="yq no encontrado (requerido para parseo YAML)"
102
+
103
+ # Summary
104
+ MSG_SUMMARY_TITLE="Resumen de sesion"
105
+ MSG_SUMMARY_ITERATIONS="Iteraciones totales"
106
+ MSG_SUMMARY_DURATION="Duracion"
107
+ MSG_SUMMARY_DOD_STATUS="Estado DoD"
108
+ MSG_SUMMARY_FILES_CHANGED="Archivos modificados"
109
+ MSG_SUMMARY_EXIT_REASON="Razon de salida"
110
+
111
+ # Help
112
+ MSG_HELP_USAGE="Uso"
113
+ MSG_HELP_DESCRIPTION="Ejecutar Claude en bucle continuo hasta completar la tarea"
114
+ MSG_HELP_OPTIONS="Opciones"
115
+ MSG_HELP_PROMPT="El prompt de tarea para Claude"
116
+ MSG_HELP_CONFIG="Ruta al archivo ralph.yml"
117
+ MSG_HELP_CONTINUE="Reanudar sesion existente"
118
+ MSG_HELP_MAX_ITER="Iteraciones maximas (defecto: 25)"
119
+ MSG_HELP_VERBOSE="Habilitar salida verbosa"
120
+ MSG_HELP_DRY_RUN="Mostrar que se haria sin ejecutar"
121
+ MSG_HELP_LANG="Idioma (en, fr, es, de, pt)"
122
+ MSG_HELP_HELP="Mostrar este mensaje de ayuda"
123
+ MSG_HELP_EXAMPLES="Ejemplos"
124
+ MSG_HELP_EXAMPLE_BASIC="Uso basico con prompt"
125
+ MSG_HELP_EXAMPLE_CONFIG="Con archivo de configuracion"
126
+ MSG_HELP_EXAMPLE_RESUME="Reanudar sesion anterior"
127
+
128
+ # Menu (if interactive)
129
+ MSG_MENU_TITLE="Que desea hacer?"
130
+ MSG_MENU_START="Iniciar nueva sesion Ralph"
131
+ MSG_MENU_RESUME="Reanudar sesion existente"
132
+ MSG_MENU_LIST="Listar sesiones"
133
+ MSG_MENU_CONFIG="Crear configuracion"
134
+ MSG_MENU_HELP="Ayuda"
135
+ MSG_MENU_QUIT="Salir"
136
+
137
+ # Misc
138
+ MSG_PRESS_ENTER="Presione Enter para continuar..."
139
+ MSG_YES="si"
140
+ MSG_NO="no"
141
+ MSG_CANCEL="Cancelado"
142
+ MSG_GOODBYE="Adios!"
143
+ MSG_INVALID_CHOICE="Opcion invalida"
144
+ MSG_CONFIRM="Confirmar"
145
+ MSG_WARNING="Advertencia"
146
+ MSG_INFO="Info"
147
+ MSG_SUCCESS="Exito"
@@ -0,0 +1,147 @@
1
+ #!/bin/bash
2
+ # =============================================================================
3
+ # Ralph Wiggum - Messages Francais
4
+ # =============================================================================
5
+
6
+ # Header
7
+ MSG_HEADER="Ralph Wiggum - Boucle Continue d'Agent IA"
8
+ MSG_VERSION="Version"
9
+
10
+ # Status
11
+ MSG_ITERATION="Iteration"
12
+ MSG_OF="sur"
13
+ MSG_SESSION="Session"
14
+ MSG_STATUS="Statut"
15
+ MSG_RUNNING="En cours"
16
+ MSG_COMPLETE="Termine"
17
+ MSG_FAILED="Echec"
18
+ MSG_TIMEOUT="Delai depasse"
19
+ MSG_CIRCUIT_BREAKER="Disjoncteur"
20
+
21
+ # Session
22
+ MSG_SESSION_CREATED="Session creee"
23
+ MSG_SESSION_RESUMED="Session reprise"
24
+ MSG_SESSION_ID="ID de session"
25
+ MSG_SESSION_NOT_FOUND="Session introuvable"
26
+ MSG_SESSION_DIR="Repertoire de session"
27
+
28
+ # Loop
29
+ MSG_STARTING_LOOP="Demarrage de la boucle Ralph"
30
+ MSG_PROMPT="Prompt"
31
+ MSG_INVOKING_CLAUDE="Invocation de Claude..."
32
+ MSG_WAITING="Attente"
33
+ MSG_SECONDS="secondes"
34
+ MSG_LOOP_COMPLETE="Boucle terminee"
35
+ MSG_LOOP_STOPPED="Boucle arretee"
36
+
37
+ # Definition of Done
38
+ MSG_DOD_TITLE="Definition of Done"
39
+ MSG_DOD_CHECKING="Verification des criteres DoD..."
40
+ MSG_DOD_PASSED="DoD VALIDE"
41
+ MSG_DOD_FAILED="DoD NON COMPLETE"
42
+ MSG_DOD_ITEM_PASSED="OK"
43
+ MSG_DOD_ITEM_FAILED="ECHEC"
44
+ MSG_DOD_ITEM_SKIPPED="IGNORE"
45
+ MSG_DOD_REQUIRED="Requis"
46
+ MSG_DOD_OPTIONAL="Optionnel"
47
+ MSG_DOD_ALL_REQUIRED_PASSED="Tous les criteres requis sont valides !"
48
+ MSG_DOD_MISSING_REQUIRED="Criteres requis manquants :"
49
+ MSG_DOD_HUMAN_GATE="Validation humaine"
50
+ MSG_DOD_HUMAN_PROMPT="Est-ce correct ? (o/n) :"
51
+
52
+ # Validators
53
+ MSG_VALIDATOR_COMMAND="Execution de la commande"
54
+ MSG_VALIDATOR_OUTPUT="Verification du pattern de sortie"
55
+ MSG_VALIDATOR_FILE="Verification des fichiers modifies"
56
+ MSG_VALIDATOR_HOOK="Execution du hook"
57
+ MSG_VALIDATOR_HUMAN="En attente de validation humaine"
58
+
59
+ # Circuit Breaker
60
+ MSG_CB_TRIGGERED="Disjoncteur declenche"
61
+ MSG_CB_NO_CHANGES="Aucune modification de fichier depuis"
62
+ MSG_CB_ITERATIONS="iterations"
63
+ MSG_CB_REPEATED_ERRORS="Erreurs repetees detectees"
64
+ MSG_CB_OUTPUT_DECLINE="Sortie reduite de"
65
+ MSG_CB_PERCENT="pourcent"
66
+ MSG_CB_MAX_REACHED="Nombre maximum d'iterations atteint"
67
+ MSG_CB_RESET="Disjoncteur reinitialise"
68
+
69
+ # Checkpointing
70
+ MSG_CHECKPOINT_CREATING="Creation du checkpoint..."
71
+ MSG_CHECKPOINT_CREATED="Checkpoint cree"
72
+ MSG_CHECKPOINT_RESTORING="Restauration depuis checkpoint..."
73
+ MSG_CHECKPOINT_RESTORED="Checkpoint restaure"
74
+ MSG_CHECKPOINT_BRANCH="Branche checkpoint"
75
+ MSG_CHECKPOINT_COMMIT="Commit"
76
+ MSG_CHECKPOINT_FAILED="Echec du checkpoint"
77
+
78
+ # Configuration
79
+ MSG_CONFIG_LOADING="Chargement de la configuration..."
80
+ MSG_CONFIG_LOADED="Configuration chargee"
81
+ MSG_CONFIG_NOT_FOUND="Fichier de configuration introuvable"
82
+ MSG_CONFIG_USING_DEFAULTS="Utilisation de la configuration par defaut"
83
+ MSG_CONFIG_INVALID="Configuration invalide"
84
+ MSG_CONFIG_CREATED="Configuration creee"
85
+
86
+ # Output
87
+ MSG_OUTPUT_LOG="Fichier de log"
88
+ MSG_OUTPUT_METRICS="Fichier de metriques"
89
+ MSG_OUTPUT_WRITING="Ecriture de la sortie..."
90
+ MSG_OUTPUT_SAVED="Sortie sauvegardee"
91
+
92
+ # Errors
93
+ MSG_ERROR="Erreur"
94
+ MSG_ERROR_CLAUDE_NOT_FOUND="Commande claude introuvable"
95
+ MSG_ERROR_NO_PROMPT="Aucun prompt fourni"
96
+ MSG_ERROR_INVALID_SESSION="Session invalide"
97
+ MSG_ERROR_TIMEOUT="Operation expiree"
98
+ MSG_ERROR_VALIDATION="Erreur de validation"
99
+ MSG_ERROR_GIT_NOT_FOUND="Git introuvable (requis pour le checkpointing)"
100
+ MSG_ERROR_JQ_NOT_FOUND="jq introuvable (requis pour le parsing JSON)"
101
+ MSG_ERROR_YQ_NOT_FOUND="yq introuvable (requis pour le parsing YAML)"
102
+
103
+ # Summary
104
+ MSG_SUMMARY_TITLE="Resume de la session"
105
+ MSG_SUMMARY_ITERATIONS="Iterations totales"
106
+ MSG_SUMMARY_DURATION="Duree"
107
+ MSG_SUMMARY_DOD_STATUS="Statut DoD"
108
+ MSG_SUMMARY_FILES_CHANGED="Fichiers modifies"
109
+ MSG_SUMMARY_EXIT_REASON="Raison de sortie"
110
+
111
+ # Help
112
+ MSG_HELP_USAGE="Utilisation"
113
+ MSG_HELP_DESCRIPTION="Executer Claude en boucle continue jusqu'a completion de la tache"
114
+ MSG_HELP_OPTIONS="Options"
115
+ MSG_HELP_PROMPT="Le prompt de tache pour Claude"
116
+ MSG_HELP_CONFIG="Chemin vers le fichier ralph.yml"
117
+ MSG_HELP_CONTINUE="Reprendre une session existante"
118
+ MSG_HELP_MAX_ITER="Iterations maximum (defaut: 25)"
119
+ MSG_HELP_VERBOSE="Activer la sortie verbose"
120
+ MSG_HELP_DRY_RUN="Montrer ce qui serait fait sans executer"
121
+ MSG_HELP_LANG="Langue (en, fr, es, de, pt)"
122
+ MSG_HELP_HELP="Afficher ce message d'aide"
123
+ MSG_HELP_EXAMPLES="Exemples"
124
+ MSG_HELP_EXAMPLE_BASIC="Utilisation basique avec prompt"
125
+ MSG_HELP_EXAMPLE_CONFIG="Avec fichier de configuration"
126
+ MSG_HELP_EXAMPLE_RESUME="Reprendre une session precedente"
127
+
128
+ # Menu (if interactive)
129
+ MSG_MENU_TITLE="Que souhaitez-vous faire ?"
130
+ MSG_MENU_START="Demarrer nouvelle session Ralph"
131
+ MSG_MENU_RESUME="Reprendre session existante"
132
+ MSG_MENU_LIST="Lister les sessions"
133
+ MSG_MENU_CONFIG="Creer une configuration"
134
+ MSG_MENU_HELP="Aide"
135
+ MSG_MENU_QUIT="Quitter"
136
+
137
+ # Misc
138
+ MSG_PRESS_ENTER="Appuyez sur Entree pour continuer..."
139
+ MSG_YES="oui"
140
+ MSG_NO="non"
141
+ MSG_CANCEL="Annule"
142
+ MSG_GOODBYE="Au revoir !"
143
+ MSG_INVALID_CHOICE="Choix invalide"
144
+ MSG_CONFIRM="Confirmer"
145
+ MSG_WARNING="Attention"
146
+ MSG_INFO="Info"
147
+ MSG_SUCCESS="Succes"