@cat-factory/app 0.258.0 → 0.258.2

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.
@@ -28,6 +28,7 @@ export const REASON_KEY: Record<ToolServerUnavailableReason, string> = {
28
28
  transport_unsupported: 'panels.stepDetail.toolServers.reason.transportUnsupported',
29
29
  missing_secret: 'panels.stepDetail.toolServers.reason.missingSecret',
30
30
  reserved_secret: 'panels.stepDetail.toolServers.reason.reservedSecret',
31
+ unusable_secret: 'panels.stepDetail.toolServers.reason.unusableSecret',
31
32
  oauth_not_connected: 'panels.stepDetail.toolServers.reason.oauthNotConnected',
32
33
  oauth_token_failed: 'panels.stepDetail.toolServers.reason.oauthTokenFailed',
33
34
  over_budget: 'panels.stepDetail.toolServers.reason.overBudget',
@@ -59,6 +60,7 @@ export const REMEDY_KEY: Record<ToolServerUnavailableReason, string> = {
59
60
  transport_unsupported: 'panels.stepDetail.toolServers.remedy.transportUnsupported',
60
61
  missing_secret: 'panels.stepDetail.toolServers.remedy.missingSecret',
61
62
  reserved_secret: 'panels.stepDetail.toolServers.remedy.reservedSecret',
63
+ unusable_secret: 'panels.stepDetail.toolServers.remedy.unusableSecret',
62
64
  oauth_not_connected: 'panels.stepDetail.toolServers.remedy.oauthNotConnected',
63
65
  oauth_token_failed: 'panels.stepDetail.toolServers.remedy.oauthTokenFailed',
64
66
  over_budget: 'panels.stepDetail.toolServers.remedy.overBudget',
@@ -40,6 +40,7 @@ const STATUS_LABELS = computed<Record<ToolServerProbeStatus, string>>(() => ({
40
40
  ok: t('settings.toolServers.status.ok'),
41
41
  credentials_missing: t('settings.toolServers.status.credentialsMissing'),
42
42
  credential_refused: t('settings.toolServers.status.credentialRefused'),
43
+ credential_unusable: t('settings.toolServers.status.credentialUnusable'),
43
44
  oauth_not_connected: t('settings.toolServers.status.oauthNotConnected'),
44
45
  oauth_token_failed: t('settings.toolServers.status.oauthTokenFailed'),
45
46
  unreachable: t('settings.toolServers.status.unreachable'),
@@ -347,6 +348,16 @@ async function runProbe(id: string) {
347
348
  })
348
349
  }}
349
350
  </p>
351
+ <p
352
+ v-if="resultFor(server.id)!.unusableCredentials?.length"
353
+ class="text-[11px] text-red-400"
354
+ >
355
+ {{
356
+ t('settings.toolServers.unusableCredentials', {
357
+ keys: resultFor(server.id)!.unusableCredentials!.join(', '),
358
+ })
359
+ }}
360
+ </p>
350
361
 
351
362
  <!-- Raw backend prose is DETAIL behind a disclosure, never the primary description. It is
352
363
  already scrubbed through `redactSecrets` at the emit site. -->
@@ -656,6 +656,7 @@
656
656
  "ok": "Hat geantwortet",
657
657
  "credentialsMissing": "Keine Zugangsdaten",
658
658
  "credentialRefused": "Zugangsdaten abgelehnt",
659
+ "credentialUnusable": "Zugangsdaten nicht zustellbar",
659
660
  "oauthNotConnected": "Nicht verbunden",
660
661
  "oauthTokenFailed": "Verbindung funktioniert nicht mehr",
661
662
  "unreachable": "Keine Antwort",
@@ -669,6 +670,7 @@
669
670
  "allowedToolsUnchecked": "Die Werkzeugliste war zu lang, um sie vollständig zu lesen, daher konnten die eingeschränkten Namen nicht geprüft werden.",
670
671
  "unresolvedCredentials": "Für {keys} wurde nichts aufgelöst. Trage den Wert unten ein oder setze ihn in der Umgebung der Installation.",
671
672
  "refusedCredentials": "{keys} benennt eine Variable, die zur Konfiguration der Plattform selbst gehört, und wird daher nie aufgelöst. Ändere die Deklaration im Code der Installation.",
673
+ "unusableCredentials": "{keys} benennt keinen Header, daher erreicht der Wert einen HTTP-Server nie. Ergänze im Code der Installation den Header, mit dem sich der Server authentifiziert.",
672
674
  "httpStatus": "HTTP {status}",
673
675
  "showDetails": "Details anzeigen",
674
676
  "hideDetails": "Details verbergen",
@@ -1991,6 +1993,7 @@
1991
1993
  "transportUnsupported": "war nicht verfügbar: die Agenten-CLI dieses Schritts erreicht Server dieser Art nicht.",
1992
1994
  "missingSecret": "war nicht verfügbar: eine benötigte Zugangsinformation ist für dieses Board nicht hinterlegt.",
1993
1995
  "reservedSecret": "war nicht verfügbar: er verlangt eine Variable, die zur Konfiguration der Plattform gehört; die Deklaration muss geändert werden.",
1996
+ "unusableSecret": "war nicht verfügbar: eine seiner deklarierten Zugangsdaten erreicht ihn nicht, er wäre also ohne Authentifizierung gelaufen.",
1994
1997
  "oauthNotConnected": "war nicht verfügbar: dieses Board wurde noch nicht damit verbunden.",
1995
1998
  "oauthTokenFailed": "war nicht verfügbar: die Verbindung liefert kein Zugriffstoken mehr.",
1996
1999
  "overBudget": "war nicht verfügbar: dieser Agent deklariert mehr Tool-Server, als ein Lauf mitführt.",
@@ -2001,6 +2004,7 @@
2001
2004
  "transportUnsupported": "Deklarieren Sie dafür einen stdio-Server, oder führen Sie den Schritt auf einer Agenten-CLI aus, die HTTP-Server erreicht.",
2002
2005
  "missingSecret": "Hinterlegen Sie die genannte Zugangsinformation entweder als Umgebungsvariable des Deployments oder im Infrastruktur-Fenster unter den Capability-Zugangsdaten.",
2003
2006
  "reservedSecret": "Ändern Sie die Deklaration auf einen anderen Schlüssel; das Setzen dieser Variablen hilft gerade nicht.",
2007
+ "unusableSecret": "Korrigiere die Deklaration im Code der Installation: Die Zugangsdaten eines entfernten Servers reisen in einem Header, die eines lokalen werden in den Serverprozess injiziert.",
2004
2008
  "oauthNotConnected": "Verbinden Sie dieses Board im Infrastruktur-Fenster damit. Ein Deployment ohne ENCRYPTION_KEY hat keinen Ort für eine Berechtigung, das muss ein Betreiber also zuerst setzen.",
2005
2009
  "oauthTokenFailed": "Verbinden Sie es im Infrastruktur-Fenster neu, oder warten Sie die Störung des Anbieters ab.",
2006
2010
  "overBudget": "Kürzen Sie, was der Agent deklariert, damit ein Lauf alles mitführen kann."
@@ -1537,6 +1537,7 @@
1537
1537
  "transportUnsupported": "was not available: the agent CLI this step ran on cannot reach this kind of server.",
1538
1538
  "missingSecret": "was not available: a credential it needs is not set for this board.",
1539
1539
  "reservedSecret": "was not available: it asks for a variable the platform's own configuration owns, so the declaration has to change.",
1540
+ "unusableSecret": "was not available: a credential it declares cannot reach it, so the server would have run unauthenticated.",
1540
1541
  "oauthNotConnected": "was not available: nobody has connected this board to it yet.",
1541
1542
  "oauthTokenFailed": "was not available: the connection stopped producing an access token.",
1542
1543
  "overBudget": "was not available: this agent declares more tool servers than one run carries.",
@@ -1547,6 +1548,7 @@
1547
1548
  "transportUnsupported": "Declare a stdio server for it, or run the step on an agent CLI that reaches HTTP servers.",
1548
1549
  "missingSecret": "Set the credential it names, either as a deployment environment variable or under capability credentials in the Infrastructure window.",
1549
1550
  "reservedSecret": "Change the declaration to ask for another key; setting that variable is exactly what will not help.",
1551
+ "unusableSecret": "Fix the declaration in the deployment's code: a remote server's credential rides a header, and a local one is injected into the server's own process.",
1550
1552
  "oauthNotConnected": "Connect this board to it from the Infrastructure window. A deployment with no ENCRYPTION_KEY has nowhere to keep a grant, so an operator has to set that first.",
1551
1553
  "oauthTokenFailed": "Reconnect it from the Infrastructure window, or wait out the vendor's outage.",
1552
1554
  "overBudget": "Trim what the agent declares, so one run can carry all of it."
@@ -3347,6 +3349,7 @@
3347
3349
  "ok": "Answered",
3348
3350
  "credentialsMissing": "No credential",
3349
3351
  "credentialRefused": "Credential refused",
3352
+ "credentialUnusable": "Credential cannot be sent",
3350
3353
  "oauthNotConnected": "Not connected",
3351
3354
  "oauthTokenFailed": "Connection stopped working",
3352
3355
  "unreachable": "No answer",
@@ -3360,6 +3363,7 @@
3360
3363
  "allowedToolsUnchecked": "The tool list was too long to read in full, so the narrowed names could not be checked.",
3361
3364
  "unresolvedCredentials": "Nothing resolved for {keys}. Fill it in below, or set it in the deployment's environment.",
3362
3365
  "refusedCredentials": "{keys} names a variable the platform's own configuration owns, so it is never resolved. Change the declaration in the deployment's code.",
3366
+ "unusableCredentials": "{keys} names no header, so an HTTP server never receives it. Add the header the server authenticates with, in the deployment's code.",
3363
3367
  "httpStatus": "HTTP {status}",
3364
3368
  "showDetails": "Show details",
3365
3369
  "hideDetails": "Hide details",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "no estuvo disponible: la CLI del agente de este paso no puede alcanzar este tipo de servidor.",
1447
1447
  "missingSecret": "no estuvo disponible: falta en este tablero una credencial que necesita.",
1448
1448
  "reservedSecret": "no estuvo disponible: pide una variable que pertenece a la configuración de la plataforma, así que hay que cambiar la declaración.",
1449
+ "unusableSecret": "no estuvo disponible: una credencial que declara no puede llegarle, así que el servidor habría funcionado sin autenticar.",
1449
1450
  "oauthNotConnected": "no estuvo disponible: nadie ha conectado este tablero con él todavía.",
1450
1451
  "oauthTokenFailed": "no estuvo disponible: la conexión dejó de producir un token de acceso.",
1451
1452
  "overBudget": "no estuvo disponible: este agente declara más servidores de los que lleva una ejecución.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "Declara un servidor stdio para él, o ejecuta el paso en una CLI de agente que alcance servidores HTTP.",
1457
1458
  "missingSecret": "Configura la credencial que nombra, ya sea como variable de entorno del despliegue o en las credenciales de capacidades, en la ventana de Infraestructura.",
1458
1459
  "reservedSecret": "Cambia la declaración para que pida otra clave; definir esa variable es justo lo que no ayudará.",
1460
+ "unusableSecret": "Corrige la declaración en el código de la instalación: la credencial de un servidor remoto viaja en una cabecera y la de uno local se inyecta en el proceso del servidor.",
1459
1461
  "oauthNotConnected": "Conecta este tablero con él desde la ventana de Infraestructura. Un despliegue sin ENCRYPTION_KEY no tiene dónde guardar una concesión, así que un operador debe configurarla primero.",
1460
1462
  "oauthTokenFailed": "Vuelve a conectarlo desde la ventana de Infraestructura, o espera a que pase la caída del proveedor.",
1461
1463
  "overBudget": "Recorta lo que declara el agente, para que una ejecución pueda llevarlo todo."
@@ -3087,6 +3089,7 @@
3087
3089
  "ok": "Respondió",
3088
3090
  "credentialsMissing": "Sin credencial",
3089
3091
  "credentialRefused": "Credencial rechazada",
3092
+ "credentialUnusable": "Credencial no enviable",
3090
3093
  "oauthNotConnected": "Sin conexión",
3091
3094
  "oauthTokenFailed": "La conexión dejó de funcionar",
3092
3095
  "unreachable": "Sin respuesta",
@@ -3100,6 +3103,7 @@
3100
3103
  "allowedToolsUnchecked": "La lista de herramientas era demasiado larga para leerla completa, así que no se pudieron comprobar los nombres limitados.",
3101
3104
  "unresolvedCredentials": "No se resolvió nada para {keys}. Rellénalo abajo o defínelo en el entorno de la instalación.",
3102
3105
  "refusedCredentials": "{keys} nombra una variable que pertenece a la configuración de la propia plataforma, así que nunca se resuelve. Cambia la declaración en el código de la instalación.",
3106
+ "unusableCredentials": "{keys} no nombra ninguna cabecera, así que un servidor HTTP nunca lo recibe. Añade en el código de la instalación la cabecera con la que se autentica el servidor.",
3103
3107
  "httpStatus": "HTTP {status}",
3104
3108
  "showDetails": "Ver detalles",
3105
3109
  "hideDetails": "Ocultar detalles",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "n'était pas disponible : la CLI d'agent de cette étape ne peut pas atteindre ce type de serveur.",
1447
1447
  "missingSecret": "n'était pas disponible : un identifiant dont il a besoin n'est pas renseigné pour ce tableau.",
1448
1448
  "reservedSecret": "n'était pas disponible : il demande une variable qui appartient à la configuration de la plateforme, la déclaration doit donc changer.",
1449
+ "unusableSecret": "n’était pas disponible : un identifiant qu’il déclare ne peut pas lui parvenir, le serveur aurait donc tourné sans authentification.",
1449
1450
  "oauthNotConnected": "n'était pas disponible : personne n'a encore connecté ce tableau à ce serveur.",
1450
1451
  "oauthTokenFailed": "n'était pas disponible : la connexion ne produit plus de jeton d'accès.",
1451
1452
  "overBudget": "n'était pas disponible : cet agent déclare plus de serveurs d'outils qu'une exécution n'en transporte.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "Déclarez un serveur stdio à sa place, ou exécutez l’étape sur une CLI d’agent qui atteint les serveurs HTTP.",
1457
1458
  "missingSecret": "Renseignez l’identifiant qu’il nomme, soit comme variable d’environnement du déploiement, soit dans les identifiants de capacités, depuis la fenêtre Infrastructure.",
1458
1459
  "reservedSecret": "Modifiez la déclaration pour demander une autre clé ; définir cette variable est précisément ce qui n’aidera pas.",
1460
+ "unusableSecret": "Corrigez la déclaration dans le code du déploiement : l’identifiant d’un serveur distant voyage dans un en-tête, celui d’un serveur local est injecté dans son processus.",
1459
1461
  "oauthNotConnected": "Connectez ce tableau à ce serveur depuis la fenêtre Infrastructure. Un déploiement sans ENCRYPTION_KEY n’a nulle part où conserver une autorisation : un opérateur doit d’abord la définir.",
1460
1462
  "oauthTokenFailed": "Reconnectez-le depuis la fenêtre Infrastructure, ou attendez la fin de la panne du fournisseur.",
1461
1463
  "overBudget": "Réduisez ce que l’agent déclare, pour qu’une exécution puisse tout transporter."
@@ -3087,6 +3089,7 @@
3087
3089
  "ok": "A répondu",
3088
3090
  "credentialsMissing": "Aucun identifiant",
3089
3091
  "credentialRefused": "Identifiant refusé",
3092
+ "credentialUnusable": "Identifiant non transmissible",
3090
3093
  "oauthNotConnected": "Non connecté",
3091
3094
  "oauthTokenFailed": "La connexion ne fonctionne plus",
3092
3095
  "unreachable": "Aucune réponse",
@@ -3100,6 +3103,7 @@
3100
3103
  "allowedToolsUnchecked": "La liste d’outils était trop longue pour être lue en entier, les noms restreints n’ont donc pas pu être vérifiés.",
3101
3104
  "unresolvedCredentials": "Rien n’a été résolu pour {keys}. Renseignez la valeur ci-dessous, ou définissez-la dans l’environnement du déploiement.",
3102
3105
  "refusedCredentials": "{keys} désigne une variable qui appartient à la configuration de la plateforme elle-même : elle n’est jamais résolue. Modifiez la déclaration dans le code du déploiement.",
3106
+ "unusableCredentials": "{keys} ne désigne aucun en-tête : un serveur HTTP ne le reçoit donc jamais. Ajoutez dans le code du déploiement l’en-tête avec lequel le serveur s’authentifie.",
3103
3107
  "httpStatus": "HTTP {status}",
3104
3108
  "showDetails": "Afficher les détails",
3105
3109
  "hideDetails": "Masquer les détails",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "לא היה זמין: ממשק הסוכן שבו רץ השלב הזה אינו יכול להגיע לשרת מסוג זה.",
1447
1447
  "missingSecret": "לא היה זמין: אישור גישה שהוא צריך אינו מוגדר עבור הלוח הזה.",
1448
1448
  "reservedSecret": "לא היה זמין: הוא מבקש משתנה ששייך לתצורת הפלטפורמה עצמה, ולכן יש לשנות את ההצהרה.",
1449
+ "unusableSecret": "לא היה זמין: אחד מפרטי ההזדהות שהוא מצהיר עליהם אינו יכול להגיע אליו, ולכן השרת היה פועל ללא אימות.",
1449
1450
  "oauthNotConnected": "לא היה זמין: איש עדיין לא חיבר את הלוח הזה אליו.",
1450
1451
  "oauthTokenFailed": "לא היה זמין: החיבור הפסיק להנפיק אסימון גישה.",
1451
1452
  "overBudget": "לא היה זמין: הסוכן הזה מצהיר על יותר שרתי כלים ממה שריצה אחת נושאת.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "הצהירו עבורו שרת stdio, או הריצו את השלב על ממשק סוכן שמגיע לשרתי HTTP.",
1457
1458
  "missingSecret": "הגדירו את אישור הגישה שהוא מבקש, בין כמשתנה סביבה של הפריסה ובין באישורי היכולות בחלון התשתית.",
1458
1459
  "reservedSecret": "שנו את ההצהרה כך שתבקש מפתח אחר; הגדרת המשתנה הזה היא בדיוק מה שלא יעזור.",
1460
+ "unusableSecret": "תקנו את ההצהרה בקוד ההתקנה: פרטי ההזדהות של שרת מרוחק נשלחים בכותרת, ושל שרת מקומי מוזרקים לתהליך של השרת.",
1459
1461
  "oauthNotConnected": "חברו את הלוח הזה אליו מחלון התשתית. בפריסה ללא ENCRYPTION_KEY אין היכן לשמור הרשאה, ולכן מפעיל צריך להגדיר אותו קודם.",
1460
1462
  "oauthTokenFailed": "חברו אותו מחדש מחלון התשתית, או המתינו לסיום התקלה אצל הספק.",
1461
1463
  "overBudget": "צמצמו את מה שהסוכן מצהיר עליו, כדי שריצה אחת תוכל לשאת הכול."
@@ -3228,6 +3230,7 @@
3228
3230
  "ok": "השיב",
3229
3231
  "credentialsMissing": "אין פרטי הזדהות",
3230
3232
  "credentialRefused": "פרטי ההזדהות נדחו",
3233
+ "credentialUnusable": "לא ניתן לשלוח את פרטי ההזדהות",
3231
3234
  "oauthNotConnected": "לא מחובר",
3232
3235
  "oauthTokenFailed": "החיבור הפסיק לעבוד",
3233
3236
  "unreachable": "אין תשובה",
@@ -3241,6 +3244,7 @@
3241
3244
  "allowedToolsUnchecked": "רשימת הכלים הייתה ארוכה מכדי לקרוא אותה במלואה, ולכן לא ניתן היה לבדוק את השמות המוגבלים.",
3242
3245
  "unresolvedCredentials": "לא אותר דבר עבור {keys}. מלאו את הערך למטה, או הגדירו אותו בסביבת ההתקנה.",
3243
3246
  "refusedCredentials": "{keys} מציין משתנה שהוא חלק מהתצורה של הפלטפורמה עצמה, ולכן הוא לעולם אינו מאותר. שנו את ההצהרה בקוד ההתקנה.",
3247
+ "unusableCredentials": "{keys} אינו מציין כותרת, ולכן שרת HTTP לעולם אינו מקבל אותו. הוסיפו בקוד ההתקנה את הכותרת שבה השרת מזדהה.",
3244
3248
  "httpStatus": "HTTP {status}",
3245
3249
  "showDetails": "הצגת פרטים",
3246
3250
  "hideDetails": "הסתרת פרטים",
@@ -656,6 +656,7 @@
656
656
  "ok": "Ha risposto",
657
657
  "credentialsMissing": "Nessuna credenziale",
658
658
  "credentialRefused": "Credenziale rifiutata",
659
+ "credentialUnusable": "Credenziale non inviabile",
659
660
  "oauthNotConnected": "Non collegato",
660
661
  "oauthTokenFailed": "Il collegamento ha smesso di funzionare",
661
662
  "unreachable": "Nessuna risposta",
@@ -669,6 +670,7 @@
669
670
  "allowedToolsUnchecked": "L’elenco degli strumenti era troppo lungo per leggerlo tutto, quindi i nomi limitati non hanno potuto essere verificati.",
670
671
  "unresolvedCredentials": "Nulla è stato risolto per {keys}. Inseriscilo qui sotto, oppure impostalo nell’ambiente dell’installazione.",
671
672
  "refusedCredentials": "{keys} nomina una variabile che appartiene alla configurazione della piattaforma stessa, quindi non viene mai risolta. Modifica la dichiarazione nel codice dell’installazione.",
673
+ "unusableCredentials": "{keys} non nomina alcuna intestazione, quindi un server HTTP non la riceve mai. Aggiungi nel codice dell’installazione l’intestazione con cui il server si autentica.",
672
674
  "httpStatus": "HTTP {status}",
673
675
  "showDetails": "Mostra dettagli",
674
676
  "hideDetails": "Nascondi dettagli",
@@ -1991,6 +1993,7 @@
1991
1993
  "transportUnsupported": "non era disponibile: la CLI dell'agente di questo passo non riesce a raggiungere server di questo tipo.",
1992
1994
  "missingSecret": "non era disponibile: una credenziale che gli serve non è impostata per questa lavagna.",
1993
1995
  "reservedSecret": "non era disponibile: chiede una variabile che appartiene alla configurazione della piattaforma, quindi va cambiata la dichiarazione.",
1996
+ "unusableSecret": "non era disponibile: una credenziale che dichiara non può raggiungerlo, quindi il server sarebbe partito senza autenticazione.",
1994
1997
  "oauthNotConnected": "non era disponibile: nessuno ha ancora collegato questa lavagna al server.",
1995
1998
  "oauthTokenFailed": "non era disponibile: la connessione ha smesso di produrre un token di accesso.",
1996
1999
  "overBudget": "non era disponibile: questo agente dichiara più server di strumenti di quanti ne porti una singola esecuzione.",
@@ -2001,6 +2004,7 @@
2001
2004
  "transportUnsupported": "Dichiara un server stdio al suo posto, oppure esegui il passo su una CLI dell'agente che raggiunge i server HTTP.",
2002
2005
  "missingSecret": "Imposta la credenziale che indica, come variabile d'ambiente del deployment oppure nelle credenziali delle capability, dalla finestra Infrastruttura.",
2003
2006
  "reservedSecret": "Cambia la dichiarazione perché chieda un'altra chiave; impostare quella variabile è proprio ciò che non aiuterà.",
2007
+ "unusableSecret": "Correggi la dichiarazione nel codice dell’installazione: la credenziale di un server remoto viaggia in un’intestazione, quella di uno locale viene iniettata nel processo del server.",
2004
2008
  "oauthNotConnected": "Collega questa lavagna al server dalla finestra Infrastruttura. Un deployment senza ENCRYPTION_KEY non ha dove conservare una concessione, quindi un operatore deve impostarla prima.",
2005
2009
  "oauthTokenFailed": "Ricollegalo dalla finestra Infrastruttura, oppure attendi la fine del disservizio del fornitore.",
2006
2010
  "overBudget": "Riduci ciò che l'agente dichiara, così una singola esecuzione può portarlo tutto."
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "は利用できませんでした: このステップを実行したエージェント CLI はこの種類のサーバーに接続できません。",
1447
1447
  "missingSecret": "は利用できませんでした: 必要な認証情報がこのボードに設定されていません。",
1448
1448
  "reservedSecret": "は利用できませんでした: プラットフォーム自身の設定が使う変数を要求しているため、宣言側を変更する必要があります。",
1449
+ "unusableSecret": "は利用できませんでした: 宣言された認証情報がサーバーに届かないため、認証なしで動作することになります。",
1449
1450
  "oauthNotConnected": "は利用できませんでした: このボードはまだ接続されていません。",
1450
1451
  "oauthTokenFailed": "は利用できませんでした: 接続からアクセストークンが発行されなくなりました。",
1451
1452
  "overBudget": "は利用できませんでした: このエージェントは 1 回の実行が運べる数を超えるツールサーバーを宣言しています。",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "このサーバー用に stdio サーバーを宣言するか、HTTP サーバーに接続できるエージェント CLI でステップを実行してください。",
1457
1458
  "missingSecret": "要求されている認証情報を、デプロイの環境変数として設定するか、インフラストラクチャ ウィンドウのケイパビリティ認証情報で設定してください。",
1458
1459
  "reservedSecret": "別のキーを要求するよう宣言を変更してください。その変数を設定しても解決しません。",
1460
+ "unusableSecret": "デプロイのコードで宣言を修正してください。リモートサーバーの認証情報はヘッダーで送られ、ローカルサーバーのものはサーバープロセスに注入されます。",
1459
1461
  "oauthNotConnected": "インフラストラクチャ ウィンドウからこのボードを接続してください。ENCRYPTION_KEY のないデプロイには許可を保管する場所がないため、まず運用者がそれを設定する必要があります。",
1460
1462
  "oauthTokenFailed": "インフラストラクチャ ウィンドウから接続し直すか、提供元の障害が収まるのを待ってください。",
1461
1463
  "overBudget": "1 回の実行ですべて運べるよう、このエージェントの宣言を減らしてください。"
@@ -3228,6 +3230,7 @@
3228
3230
  "ok": "応答あり",
3229
3231
  "credentialsMissing": "認証情報なし",
3230
3232
  "credentialRefused": "認証情報を拒否",
3233
+ "credentialUnusable": "認証情報を送信できません",
3231
3234
  "oauthNotConnected": "未接続",
3232
3235
  "oauthTokenFailed": "接続が機能しなくなりました",
3233
3236
  "unreachable": "応答なし",
@@ -3241,6 +3244,7 @@
3241
3244
  "allowedToolsUnchecked": "ツール一覧が長すぎて全部を読み取れなかったため、絞り込んだ名前は確認できませんでした。",
3242
3245
  "unresolvedCredentials": "{keys} の値が解決できませんでした。下で入力するか、デプロイの環境変数に設定してください。",
3243
3246
  "refusedCredentials": "{keys} はプラットフォーム自身の設定に属する変数名なので、決して解決されません。デプロイのコード側の宣言を変更してください。",
3247
+ "unusableCredentials": "{keys} はヘッダーを指定していないため、HTTP サーバーには決して届きません。デプロイのコードで、サーバーが認証に使うヘッダーを指定してください。",
3244
3248
  "httpStatus": "HTTP {status}",
3245
3249
  "showDetails": "詳細を表示",
3246
3250
  "hideDetails": "詳細を隠す",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "nie był dostępny: CLI agenta, na którym działał ten krok, nie dosięga serwera tego rodzaju.",
1447
1447
  "missingSecret": "nie był dostępny: potrzebne mu poświadczenie nie jest ustawione dla tej tablicy.",
1448
1448
  "reservedSecret": "nie był dostępny: prosi o zmienną należącą do konfiguracji samej platformy, więc trzeba zmienić deklarację.",
1449
+ "unusableSecret": "nie był dostępny: zadeklarowane dane uwierzytelniające nie mogą do niego dotrzeć, więc serwer działałby bez uwierzytelnienia.",
1449
1450
  "oauthNotConnected": "nie był dostępny: nikt jeszcze nie połączył z nim tej tablicy.",
1450
1451
  "oauthTokenFailed": "nie był dostępny: połączenie przestało wydawać token dostępu.",
1451
1452
  "overBudget": "nie był dostępny: ten agent deklaruje więcej serwerów narzędzi, niż niesie jedno uruchomienie.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "Zadeklaruj dla niego serwer stdio albo uruchom krok na CLI agenta, które dosięga serwerów HTTP.",
1457
1458
  "missingSecret": "Ustaw wskazane poświadczenie jako zmienną środowiskową wdrożenia albo w poświadczeniach możliwości, w oknie Infrastruktura.",
1458
1459
  "reservedSecret": "Zmień deklarację tak, by prosiła o inny klucz; ustawienie tej zmiennej to właśnie to, co nie pomoże.",
1460
+ "unusableSecret": "Popraw deklarację w kodzie instalacji: dane uwierzytelniające serwera zdalnego jadą w nagłówku, a lokalnego są wstrzykiwane do procesu serwera.",
1459
1461
  "oauthNotConnected": "Połącz tę tablicę z serwerem w oknie Infrastruktura. Wdrożenie bez ENCRYPTION_KEY nie ma gdzie przechować zgody, więc operator musi ją najpierw ustawić.",
1460
1462
  "oauthTokenFailed": "Połącz go ponownie w oknie Infrastruktura albo przeczekaj awarię dostawcy.",
1461
1463
  "overBudget": "Skróć to, co deklaruje agent, aby jedno uruchomienie uniosło całość."
@@ -3087,6 +3089,7 @@
3087
3089
  "ok": "Odpowiedział",
3088
3090
  "credentialsMissing": "Brak danych uwierzytelniających",
3089
3091
  "credentialRefused": "Dane uwierzytelniające odrzucone",
3092
+ "credentialUnusable": "Nie można wysłać danych uwierzytelniających",
3090
3093
  "oauthNotConnected": "Niepołączony",
3091
3094
  "oauthTokenFailed": "Połączenie przestało działać",
3092
3095
  "unreachable": "Brak odpowiedzi",
@@ -3100,6 +3103,7 @@
3100
3103
  "allowedToolsUnchecked": "Lista narzędzi była zbyt długa, by odczytać ją w całości, więc zawężonych nazw nie dało się sprawdzić.",
3101
3104
  "unresolvedCredentials": "Nic nie rozwiązano dla {keys}. Wpisz wartość poniżej albo ustaw ją w środowisku instalacji.",
3102
3105
  "refusedCredentials": "{keys} nazywa zmienną należącą do konfiguracji samej platformy, więc nigdy nie jest rozwiązywana. Zmień deklarację w kodzie instalacji.",
3106
+ "unusableCredentials": "{keys} nie nazywa żadnego nagłówka, więc serwer HTTP nigdy go nie otrzyma. Dodaj w kodzie instalacji nagłówek, którym serwer się uwierzytelnia.",
3103
3107
  "httpStatus": "HTTP {status}",
3104
3108
  "showDetails": "Pokaż szczegóły",
3105
3109
  "hideDetails": "Ukryj szczegóły",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "kullanılamadı: bu adımın çalıştığı ajan CLI'si bu türden bir sunucuya erişemiyor.",
1447
1447
  "missingSecret": "kullanılamadı: ihtiyaç duyduğu kimlik bilgisi bu pano için ayarlanmamış.",
1448
1448
  "reservedSecret": "kullanılamadı: platformun kendi yapılandırmasına ait bir değişken istiyor, bu yüzden bildirimin değişmesi gerekiyor.",
1449
+ "unusableSecret": "kullanılamadı: bildirdiği bir kimlik bilgisi ona ulaşamıyor, bu yüzden sunucu kimlik doğrulaması olmadan çalışacaktı.",
1449
1450
  "oauthNotConnected": "kullanılamadı: bu panoyu henüz kimse ona bağlamadı.",
1450
1451
  "oauthTokenFailed": "kullanılamadı: bağlantı artık erişim jetonu üretmiyor.",
1451
1452
  "overBudget": "kullanılamadı: bu ajan tek bir çalıştırmanın taşıdığından fazla araç sunucusu bildiriyor.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "Onun için bir stdio sunucusu bildirin ya da adımı HTTP sunucularına erişen bir ajan CLI'sinde çalıştırın.",
1457
1458
  "missingSecret": "Adı geçen kimlik bilgisini dağıtımın ortam değişkeni olarak ya da Altyapı penceresindeki yetenek kimlik bilgilerinde ayarlayın.",
1458
1459
  "reservedSecret": "Bildirimi başka bir anahtar isteyecek şekilde değiştirin; o değişkeni ayarlamak tam da yardımcı olmayacak şeydir.",
1460
+ "unusableSecret": "Kurulumun kodundaki bildirimi düzeltin: uzak bir sunucunun kimlik bilgisi bir başlıkta taşınır, yerel olanınki sunucunun sürecine enjekte edilir.",
1459
1461
  "oauthNotConnected": "Bu panoyu Altyapı penceresinden ona bağlayın. ENCRYPTION_KEY olmayan bir dağıtımda izni saklayacak bir yer yoktur, bu yüzden önce bir operatörün bunu ayarlaması gerekir.",
1460
1462
  "oauthTokenFailed": "Altyapı penceresinden yeniden bağlayın ya da sağlayıcının kesintisinin geçmesini bekleyin.",
1461
1463
  "overBudget": "Tek bir çalıştırma hepsini taşıyabilsin diye ajanın bildirdiklerini kısaltın."
@@ -3228,6 +3230,7 @@
3228
3230
  "ok": "Yanıt verdi",
3229
3231
  "credentialsMissing": "Kimlik bilgisi yok",
3230
3232
  "credentialRefused": "Kimlik bilgisi reddedildi",
3233
+ "credentialUnusable": "Kimlik bilgisi gönderilemiyor",
3231
3234
  "oauthNotConnected": "Bağlı değil",
3232
3235
  "oauthTokenFailed": "Bağlantı çalışmayı bıraktı",
3233
3236
  "unreachable": "Yanıt yok",
@@ -3241,6 +3244,7 @@
3241
3244
  "allowedToolsUnchecked": "Araç listesi tümüyle okunacak kadar kısa değildi, bu yüzden sınırlanan adlar denetlenemedi.",
3242
3245
  "unresolvedCredentials": "{keys} için hiçbir değer çözülmedi. Aşağıda doldurun ya da kurulumun ortamında tanımlayın.",
3243
3246
  "refusedCredentials": "{keys}, platformun kendi yapılandırmasına ait bir değişkeni adlandırıyor, bu yüzden asla çözülmez. Kurulumun kodundaki bildirimi değiştirin.",
3247
+ "unusableCredentials": "{keys} hiçbir başlık adlandırmıyor, bu yüzden bir HTTP sunucusuna asla ulaşmaz. Kurulumun kodunda, sunucunun kimlik doğrulamasında kullandığı başlığı ekleyin.",
3244
3248
  "httpStatus": "HTTP {status}",
3245
3249
  "showDetails": "Ayrıntıları göster",
3246
3250
  "hideDetails": "Ayrıntıları gizle",
@@ -1446,6 +1446,7 @@
1446
1446
  "transportUnsupported": "був недоступний: CLI агента, на якому виконувався цей крок, не досягає сервера такого типу.",
1447
1447
  "missingSecret": "був недоступний: потрібні йому облікові дані не задані для цієї дошки.",
1448
1448
  "reservedSecret": "був недоступний: він просить змінну, що належить власній конфігурації платформи, тож потрібно змінити оголошення.",
1449
+ "unusableSecret": "був недоступний: оголошені облікові дані не можуть до нього дістатися, тож сервер працював би без автентифікації.",
1449
1450
  "oauthNotConnected": "був недоступний: цю дошку ще ніхто до нього не під’єднав.",
1450
1451
  "oauthTokenFailed": "був недоступний: з’єднання перестало видавати токен доступу.",
1451
1452
  "overBudget": "був недоступний: цей агент оголошує більше серверів інструментів, ніж несе один запуск.",
@@ -1456,6 +1457,7 @@
1456
1457
  "transportUnsupported": "Оголосіть для нього сервер stdio або виконайте крок на CLI агента, що досягає серверів HTTP.",
1457
1458
  "missingSecret": "Задайте названі облікові дані або як змінну середовища розгортання, або в облікових даних можливостей у вікні інфраструктури.",
1458
1459
  "reservedSecret": "Змініть оголошення так, щоб воно просило інший ключ; задати цю змінну це саме те, що не допоможе.",
1460
+ "unusableSecret": "Виправте оголошення в коді інсталяції: облікові дані віддаленого сервера їдуть у заголовку, а локального вставляються у процес сервера.",
1459
1461
  "oauthNotConnected": "Під’єднайте цю дошку до нього у вікні інфраструктури. Розгортання без ENCRYPTION_KEY не має де зберігати дозвіл, тож оператор має спершу задати його.",
1460
1462
  "oauthTokenFailed": "Під’єднайте його заново у вікні інфраструктури або перечекайте збій постачальника.",
1461
1463
  "overBudget": "Скоротіть те, що оголошує агент, щоб один запуск ніс усе."
@@ -3087,6 +3089,7 @@
3087
3089
  "ok": "Відповів",
3088
3090
  "credentialsMissing": "Немає облікових даних",
3089
3091
  "credentialRefused": "Облікові дані відхилено",
3092
+ "credentialUnusable": "Облікові дані неможливо надіслати",
3090
3093
  "oauthNotConnected": "Не під’єднано",
3091
3094
  "oauthTokenFailed": "З’єднання перестало працювати",
3092
3095
  "unreachable": "Немає відповіді",
@@ -3100,6 +3103,7 @@
3100
3103
  "allowedToolsUnchecked": "Список інструментів був завеликий, щоб прочитати його повністю, тож звужені назви перевірити не вдалося.",
3101
3104
  "unresolvedCredentials": "Для {keys} нічого не розв’язано. Введіть значення нижче або задайте його в середовищі інсталяції.",
3102
3105
  "refusedCredentials": "{keys} називає змінну, що належить власній конфігурації платформи, тож вона ніколи не розв’язується. Змініть оголошення в коді інсталяції.",
3106
+ "unusableCredentials": "{keys} не називає жодного заголовка, тож HTTP-сервер ніколи його не отримає. Додайте в коді інсталяції заголовок, яким сервер автентифікується.",
3103
3107
  "httpStatus": "HTTP {status}",
3104
3108
  "showDetails": "Показати деталі",
3105
3109
  "hideDetails": "Сховати деталі",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/app",
3
- "version": "0.258.0",
3
+ "version": "0.258.2",
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",
@@ -40,7 +40,7 @@
40
40
  "valibot": "^1.4.2",
41
41
  "vue": "3.5.41",
42
42
  "wretch": "^3.0.9",
43
- "@cat-factory/contracts": "0.286.0"
43
+ "@cat-factory/contracts": "0.287.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@toad-contracts/testing": "0.3.2",