@cat-factory/app 0.63.1 → 0.64.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.
@@ -10,8 +10,11 @@ import type {
10
10
  import type {
11
11
  KubernetesManifestSource,
12
12
  KubernetesRenderer,
13
+ ProvisioningComposeServiceCandidate,
14
+ ProvisioningManifestRootCandidate,
13
15
  ProvisioningOverlayCandidate,
14
16
  ProvisioningRecommendation,
17
+ ProvisioningServiceDirCandidate,
15
18
  } from '@cat-factory/contracts'
16
19
  import RepoTreeBrowser from '~/components/github/RepoTreeBrowser.vue'
17
20
 
@@ -204,6 +207,11 @@ function applyPicked() {
204
207
  const detecting = ref(false)
205
208
  const detectError = ref(false)
206
209
  const detectResult = ref<ProvisioningRecommendation | null>(null)
210
+ // Advisory, LOCAL-ONLY selection: which compose `services:` key the user picked. It is NOT persisted
211
+ // (the compose backend targets the file, not a single service), so it lives only in component state
212
+ // and merely drives the chip highlight. Without it the highlight would compare `composePath` — which
213
+ // every candidate shares — and light up ALL chips at once, making the picker look non-functional.
214
+ const pickedComposeService = ref<string | null>(null)
207
215
 
208
216
  // A detection result is scoped to the inspected block — clear it (and any error) when the
209
217
  // selection changes, so block B never shows block A's stale recommendation / overlay chips.
@@ -212,6 +220,7 @@ watch(
212
220
  () => {
213
221
  detectResult.value = null
214
222
  detectError.value = false
223
+ pickedComposeService.value = null
215
224
  },
216
225
  )
217
226
 
@@ -235,6 +244,9 @@ async function detectFromRepo() {
235
244
  prefer: provisionType.value,
236
245
  })
237
246
  detectResult.value = rec
247
+ // Pre-select the recommended compose service so the picker opens on a real choice.
248
+ pickedComposeService.value =
249
+ rec.composeServiceCandidates?.find((c) => c.recommended)?.service ?? null
238
250
  // Only prefill when the detector actually inferred something. A `detected: false`
239
251
  // recommendation is `infraless`; applying it would WIPE the service's existing
240
252
  // provisioning (board.updateBlock persists immediately). Leave the current config
@@ -255,6 +267,25 @@ function applyOverlay(candidate: ProvisioningOverlayCandidate) {
255
267
  setKubePath(candidate.path)
256
268
  }
257
269
 
270
+ // Point the manifest path at a different k8s root (and match its renderer) the user picks.
271
+ function applyManifestRoot(candidate: ProvisioningManifestRootCandidate) {
272
+ setKubePath(candidate.path)
273
+ setKubeRenderer(candidate.renderer)
274
+ }
275
+
276
+ // Point the manifest path at a different root-shared monorepo deploy slice the user picks.
277
+ function applyServiceDir(candidate: ProvisioningServiceDirCandidate) {
278
+ setKubePath(candidate.path)
279
+ }
280
+
281
+ // Point the compose file at the picked candidate's file and record the advisory service selection.
282
+ // The service KEY is not persisted (the compose backend targets the file, not a single service); the
283
+ // picked key is tracked locally only to drive the chip highlight and the note.
284
+ function applyComposeService(candidate: ProvisioningComposeServiceCandidate) {
285
+ setComposePath(candidate.composePath)
286
+ pickedComposeService.value = candidate.service
287
+ }
288
+
258
289
  function provisionTypeLabel(type: ProvisionType): string {
259
290
  return t(`inspector.testConfig.provisionTypes.${type}`)
260
291
  }
@@ -350,6 +381,42 @@ function setSize(value: InstanceSize) {
350
381
  }}
351
382
  </p>
352
383
 
384
+ <div v-if="detectResult.serviceDirCandidates?.length" class="space-y-1">
385
+ <span class="text-[11px] text-slate-400">{{
386
+ t('inspector.testConfig.detect.serviceDirTitle')
387
+ }}</span>
388
+ <div class="flex flex-wrap gap-1">
389
+ <UButton
390
+ v-for="s in detectResult.serviceDirCandidates"
391
+ :key="s.path"
392
+ :color="kubePath === s.path ? 'primary' : 'neutral'"
393
+ :variant="kubePath === s.path ? 'soft' : 'ghost'"
394
+ size="xs"
395
+ @click="applyServiceDir(s)"
396
+ >
397
+ {{ s.name }}
398
+ </UButton>
399
+ </div>
400
+ </div>
401
+
402
+ <div v-if="detectResult.manifestRootCandidates?.length" class="space-y-1">
403
+ <span class="text-[11px] text-slate-400">{{
404
+ t('inspector.testConfig.detect.manifestRootTitle')
405
+ }}</span>
406
+ <div class="flex flex-wrap gap-1">
407
+ <UButton
408
+ v-for="r in detectResult.manifestRootCandidates"
409
+ :key="r.path"
410
+ :color="kubePath === r.path ? 'primary' : 'neutral'"
411
+ :variant="kubePath === r.path ? 'soft' : 'ghost'"
412
+ size="xs"
413
+ @click="applyManifestRoot(r)"
414
+ >
415
+ {{ r.name }}
416
+ </UButton>
417
+ </div>
418
+ </div>
419
+
353
420
  <div v-if="detectResult.overlayCandidates?.length" class="space-y-1">
354
421
  <span class="text-[11px] text-slate-400">{{
355
422
  t('inspector.testConfig.detect.overlayTitle')
@@ -368,6 +435,24 @@ function setSize(value: InstanceSize) {
368
435
  </div>
369
436
  </div>
370
437
 
438
+ <div v-if="detectResult.composeServiceCandidates?.length" class="space-y-1">
439
+ <span class="text-[11px] text-slate-400">{{
440
+ t('inspector.testConfig.detect.composeServiceTitle')
441
+ }}</span>
442
+ <div class="flex flex-wrap gap-1">
443
+ <UButton
444
+ v-for="c in detectResult.composeServiceCandidates"
445
+ :key="c.service"
446
+ :color="pickedComposeService === c.service ? 'primary' : 'neutral'"
447
+ :variant="pickedComposeService === c.service ? 'soft' : 'ghost'"
448
+ size="xs"
449
+ @click="applyComposeService(c)"
450
+ >
451
+ {{ c.service }}
452
+ </UButton>
453
+ </div>
454
+ </div>
455
+
371
456
  <p v-if="detectResult.urlSource" class="text-[11px] text-slate-500">
372
457
  {{
373
458
  t('inspector.testConfig.detect.urlSource', { source: detectResult.urlSource.source })
@@ -483,6 +483,9 @@
483
483
  "none": "No Kubernetes manifests or Compose file were detected.",
484
484
  "applied": "Suggested a {type} config. Review and adjust the fields below.",
485
485
  "overlayTitle": "Ephemeral overlay",
486
+ "serviceDirTitle": "Service deploy folder",
487
+ "manifestRootTitle": "Manifest location",
488
+ "composeServiceTitle": "Compose service",
486
489
  "urlSource": "Suggested environment URL source: {source}. The workspace handler owns this; set it there.",
487
490
  "namespace": "Manifests pin namespace \"{namespace}\"; recommend honoring it on the workspace handler.",
488
491
  "confidenceHigh": "Detected",
@@ -446,6 +446,9 @@
446
446
  "none": "No se detectaron manifiestos de Kubernetes ni archivo Compose.",
447
447
  "applied": "Se sugirió una configuración {type}. Revisa y ajusta los campos de abajo.",
448
448
  "overlayTitle": "Overlay efímero",
449
+ "serviceDirTitle": "Carpeta de despliegue del servicio",
450
+ "manifestRootTitle": "Ubicación del manifiesto",
451
+ "composeServiceTitle": "Servicio de Compose",
449
452
  "urlSource": "Fuente de URL del entorno sugerida: {source}. El gestor del espacio de trabajo la controla; configúrala allí.",
450
453
  "namespace": "Los manifiestos fijan el espacio de nombres \"{namespace}\"; se recomienda respetarlo en el gestor del espacio de trabajo.",
451
454
  "confidenceHigh": "Detectado",
@@ -446,6 +446,9 @@
446
446
  "none": "Aucun manifeste Kubernetes ni fichier Compose détecté.",
447
447
  "applied": "Configuration {type} suggérée. Vérifiez et ajustez les champs ci-dessous.",
448
448
  "overlayTitle": "Overlay éphémère",
449
+ "serviceDirTitle": "Dossier de déploiement du service",
450
+ "manifestRootTitle": "Emplacement du manifeste",
451
+ "composeServiceTitle": "Service Compose",
449
452
  "urlSource": "Source d'URL d'environnement suggérée : {source}. Le gestionnaire de l'espace de travail la contrôle ; définissez-la là.",
450
453
  "namespace": "Les manifestes fixent l'espace de noms « {namespace} » ; il est recommandé de le respecter sur le gestionnaire de l'espace de travail.",
451
454
  "confidenceHigh": "Détecté",
@@ -446,6 +446,9 @@
446
446
  "none": "לא זוהו מניפסטים של Kubernetes או קובץ Compose.",
447
447
  "applied": "הוצעה תצורת {type}. בדוק והתאם את השדות למטה.",
448
448
  "overlayTitle": "שכבת סביבה זמנית",
449
+ "serviceDirTitle": "תיקיית פריסת השירות",
450
+ "manifestRootTitle": "מיקום המניפסט",
451
+ "composeServiceTitle": "שירות Compose",
449
452
  "urlSource": "מקור כתובת הסביבה המוצע: {source}. המטפל של המרחב שולט בכך; הגדר זאת שם.",
450
453
  "namespace": "המניפסטים מקבעים את מרחב השמות \"{namespace}\"; מומלץ לכבד אותו במטפל של המרחב.",
451
454
  "confidenceHigh": "זוהה",
@@ -446,6 +446,9 @@
446
446
  "none": "Kubernetes マニフェストや Compose ファイルは検出されませんでした。",
447
447
  "applied": "{type} の設定を提案しました。以下のフィールドを確認して調整してください。",
448
448
  "overlayTitle": "一時環境のオーバーレイ",
449
+ "serviceDirTitle": "サービスのデプロイフォルダ",
450
+ "manifestRootTitle": "マニフェストの場所",
451
+ "composeServiceTitle": "Compose サービス",
449
452
  "urlSource": "推奨される環境 URL ソース: {source}。これはワークスペースのハンドラーが管理します。そちらで設定してください。",
450
453
  "namespace": "マニフェストは名前空間「{namespace}」を固定しています。ワークスペースのハンドラーでそれを尊重することを推奨します。",
451
454
  "confidenceHigh": "検出",
@@ -446,6 +446,9 @@
446
446
  "none": "Nie wykryto manifestów Kubernetes ani pliku Compose.",
447
447
  "applied": "Zaproponowano konfigurację {type}. Przejrzyj i dostosuj pola poniżej.",
448
448
  "overlayTitle": "Tymczasowy overlay",
449
+ "serviceDirTitle": "Folder wdrożenia usługi",
450
+ "manifestRootTitle": "Lokalizacja manifestu",
451
+ "composeServiceTitle": "Usługa Compose",
449
452
  "urlSource": "Sugerowane źródło adresu URL środowiska: {source}. Zarządza tym handler przestrzeni roboczej; ustaw to tam.",
450
453
  "namespace": "Manifesty ustalają przestrzeń nazw \"{namespace}\"; zaleca się jej przestrzeganie w handlerze przestrzeni roboczej.",
451
454
  "confidenceHigh": "Wykryto",
@@ -446,6 +446,9 @@
446
446
  "none": "Kubernetes manifesti veya Compose dosyası algılanmadı.",
447
447
  "applied": "{type} yapılandırması önerildi. Aşağıdaki alanları gözden geçirip ayarlayın.",
448
448
  "overlayTitle": "Geçici overlay",
449
+ "serviceDirTitle": "Servis dağıtım klasörü",
450
+ "manifestRootTitle": "Manifest konumu",
451
+ "composeServiceTitle": "Compose servisi",
449
452
  "urlSource": "Önerilen ortam URL kaynağı: {source}. Bunu çalışma alanı işleyicisi yönetir; oradan ayarlayın.",
450
453
  "namespace": "Manifestler \"{namespace}\" ad alanını sabitliyor; çalışma alanı işleyicisinde buna uymanız önerilir.",
451
454
  "confidenceHigh": "Algılandı",
@@ -446,6 +446,9 @@
446
446
  "none": "Маніфести Kubernetes або файл Compose не виявлено.",
447
447
  "applied": "Запропоновано конфігурацію {type}. Перегляньте та скоригуйте поля нижче.",
448
448
  "overlayTitle": "Тимчасовий overlay",
449
+ "serviceDirTitle": "Тека розгортання сервісу",
450
+ "manifestRootTitle": "Розташування маніфесту",
451
+ "composeServiceTitle": "Сервіс Compose",
449
452
  "urlSource": "Запропоноване джерело URL середовища: {source}. Цим керує обробник робочого простору; налаштуйте його там.",
450
453
  "namespace": "Маніфести фіксують простір імен \"{namespace}\"; рекомендуємо дотримуватися його в обробнику робочого простору.",
451
454
  "confidenceHigh": "Виявлено",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/app",
3
- "version": "0.63.1",
3
+ "version": "0.64.0",
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.70.1"
37
+ "@cat-factory/contracts": "0.71.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@toad-contracts/testing": "0.3.2",