@cat-factory/app 0.69.0 → 0.69.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.
- package/app/components/board/AgentFailureCard.vue +3 -0
- package/i18n/locales/en.json +1 -0
- package/i18n/locales/es.json +1 -0
- package/i18n/locales/fr.json +1 -0
- package/i18n/locales/he.json +1 -0
- package/i18n/locales/ja.json +1 -0
- package/i18n/locales/pl.json +1 -0
- package/i18n/locales/tr.json +1 -0
- package/i18n/locales/uk.json +1 -0
- package/package.json +2 -2
|
@@ -24,6 +24,9 @@ const title = computed(() => {
|
|
|
24
24
|
// An `environment` failure means the deployer's EnvironmentProvider could not provision —
|
|
25
25
|
// name it, with the provider's verbatim error in the collapsible detail below.
|
|
26
26
|
if (failure.value?.kind === 'environment') return t('board.failure.environmentFailed')
|
|
27
|
+
// A `stalled` failure means the run's durable driver was lost (crashed/restarted
|
|
28
|
+
// orchestrator) and recovery couldn't resume it — name it so it doesn't read as an agent bug.
|
|
29
|
+
if (failure.value?.kind === 'stalled') return t('board.failure.stalled')
|
|
27
30
|
return props.run.kind === 'bootstrap'
|
|
28
31
|
? t('board.failure.bootstrapFailed')
|
|
29
32
|
: t('board.failure.runFailed')
|
package/i18n/locales/en.json
CHANGED
|
@@ -175,6 +175,7 @@
|
|
|
175
175
|
"environmentFailed": "Environment provisioning failed",
|
|
176
176
|
"bootstrapFailed": "Bootstrap failed",
|
|
177
177
|
"runFailed": "Run failed",
|
|
178
|
+
"stalled": "Run stalled",
|
|
178
179
|
"retryBootstrap": "Retry bootstrap",
|
|
179
180
|
"retryRun": "Retry run",
|
|
180
181
|
"showDetail": "Show detail",
|
package/i18n/locales/es.json
CHANGED
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
"environmentFailed": "No se pudo aprovisionar el entorno",
|
|
158
158
|
"bootstrapFailed": "El arranque falló",
|
|
159
159
|
"runFailed": "La ejecución falló",
|
|
160
|
+
"stalled": "La ejecución se estancó",
|
|
160
161
|
"retryBootstrap": "Reintentar arranque",
|
|
161
162
|
"retryRun": "Reintentar ejecución",
|
|
162
163
|
"showDetail": "Mostrar detalle",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
"environmentFailed": "Échec du provisionnement de l’environnement",
|
|
158
158
|
"bootstrapFailed": "L’initialisation a échoué",
|
|
159
159
|
"runFailed": "L’exécution a échoué",
|
|
160
|
+
"stalled": "L’exécution est bloquée",
|
|
160
161
|
"retryBootstrap": "Relancer l’initialisation",
|
|
161
162
|
"retryRun": "Relancer l’exécution",
|
|
162
163
|
"showDetail": "Afficher le détail",
|
package/i18n/locales/he.json
CHANGED
package/i18n/locales/ja.json
CHANGED
package/i18n/locales/pl.json
CHANGED
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
"environmentFailed": "Nie udało się przygotować środowiska",
|
|
158
158
|
"bootstrapFailed": "Inicjalizacja nie powiodła się",
|
|
159
159
|
"runFailed": "Uruchomienie nie powiodło się",
|
|
160
|
+
"stalled": "Uruchomienie utknęło",
|
|
160
161
|
"retryBootstrap": "Ponów inicjalizację",
|
|
161
162
|
"retryRun": "Ponów uruchomienie",
|
|
162
163
|
"showDetail": "Pokaż szczegóły",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
"environmentFailed": "Ortam sağlama başarısız oldu",
|
|
158
158
|
"bootstrapFailed": "Bootstrap başarısız oldu",
|
|
159
159
|
"runFailed": "Çalıştırma başarısız oldu",
|
|
160
|
+
"stalled": "Çalıştırma askıda kaldı",
|
|
160
161
|
"retryBootstrap": "Bootstrap'ı yeniden dene",
|
|
161
162
|
"retryRun": "Çalıştırmayı yeniden dene",
|
|
162
163
|
"showDetail": "Ayrıntıyı göster",
|
package/i18n/locales/uk.json
CHANGED
|
@@ -157,6 +157,7 @@
|
|
|
157
157
|
"environmentFailed": "Не вдалося підготувати середовище",
|
|
158
158
|
"bootstrapFailed": "Не вдалося ініціалізувати",
|
|
159
159
|
"runFailed": "Запуск не вдався",
|
|
160
|
+
"stalled": "Запуск завис",
|
|
160
161
|
"retryBootstrap": "Повторити ініціалізацію",
|
|
161
162
|
"retryRun": "Повторити запуск",
|
|
162
163
|
"showDetail": "Показати деталі",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.1",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"valibot": "^1.4.2",
|
|
35
35
|
"vue": "^3.5.39",
|
|
36
36
|
"wretch": "^3.0.9",
|
|
37
|
-
"@cat-factory/contracts": "0.
|
|
37
|
+
"@cat-factory/contracts": "0.75.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@toad-contracts/testing": "0.3.2",
|