@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.
@@ -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')
@@ -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",
@@ -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",
@@ -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",
@@ -157,6 +157,7 @@
157
157
  "environmentFailed": "הקצאת הסביבה נכשלה",
158
158
  "bootstrapFailed": "האתחול נכשל",
159
159
  "runFailed": "הריצה נכשלה",
160
+ "stalled": "הריצה נתקעה",
160
161
  "retryBootstrap": "נסה שוב לאתחל",
161
162
  "retryRun": "נסה שוב להריץ",
162
163
  "showDetail": "הצג פרטים",
@@ -157,6 +157,7 @@
157
157
  "environmentFailed": "環境のプロビジョニングに失敗しました",
158
158
  "bootstrapFailed": "ブートストラップに失敗しました",
159
159
  "runFailed": "実行に失敗しました",
160
+ "stalled": "実行が停止しました",
160
161
  "retryBootstrap": "ブートストラップを再試行",
161
162
  "retryRun": "実行を再試行",
162
163
  "showDetail": "詳細を表示",
@@ -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",
@@ -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",
@@ -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.0",
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.74.0"
37
+ "@cat-factory/contracts": "0.75.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@toad-contracts/testing": "0.3.2",