@cat-factory/app 0.295.0 → 0.296.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.
@@ -8,7 +8,11 @@ import type {
8
8
  TaskTypeMeta,
9
9
  } from '~/types/domain'
10
10
  import type { BadgeColor } from '~/utils/badge'
11
- import { isBuiltinGatableKind } from '@cat-factory/contracts'
11
+ import {
12
+ isBuiltinGatableKind,
13
+ MONOREPO_ADOPTION_AGENT_KIND,
14
+ REPO_BOOTSTRAP_AGENT_KIND,
15
+ } from '@cat-factory/contracts'
12
16
 
13
17
  /** Simple unique id helper (fine for a client-only prototype). */
14
18
  export function uid(prefix = 'id'): string {
@@ -636,6 +640,33 @@ export const SYSTEM_AGENT_META: Record<string, AgentArchetype> = {
636
640
  'Re-examines a single challenged PR-review finding against the full source, then upholds ' +
637
641
  '(strengthening it) or retracts it with a justification. Configurable separately from the reviewer.',
638
642
  },
643
+ // The two agent kinds a REPO BOOTSTRAP run files its telemetry under. Neither is placeable
644
+ // and neither is a model-routing key (the bootstrapper runs on the `architect` routing, the
645
+ // advisor on the workspace default): they are here so the observability panel a bootstrap run
646
+ // opens names what actually ran. Without them both roll up as the generic "Agent" fallback,
647
+ // which puts the survey's model calls and the apply container's under one unnamed heading on
648
+ // the one panel whose job is telling them apart.
649
+ //
650
+ // Keyed off the contracts constants the BACKEND stamps on those rows, never a second spelling:
651
+ // a rename that missed one side would fall back to the unnamed heading with nothing failing.
652
+ [REPO_BOOTSTRAP_AGENT_KIND]: {
653
+ kind: REPO_BOOTSTRAP_AGENT_KIND,
654
+ tier: 'advanced',
655
+ label: 'Repo Bootstrapper',
656
+ icon: 'i-lucide-package-plus',
657
+ color: '#f59e0b',
658
+ description:
659
+ 'Scaffolds a new repository from a reference architecture, or writes a new service into a monorepo and opens the pull request.',
660
+ },
661
+ [MONOREPO_ADOPTION_AGENT_KIND]: {
662
+ kind: MONOREPO_ADOPTION_AGENT_KIND,
663
+ tier: 'advanced',
664
+ label: 'Adoption Advisor',
665
+ icon: 'i-lucide-scale',
666
+ color: '#f59e0b',
667
+ description:
668
+ 'Reads a monorepo and the reference template and proposes what a new service should adopt from each. Its suggestion is the one a human settles before anything is written.',
669
+ },
639
670
  // The Initiative Planning pipeline's steps. Only runnable on an initiative
640
671
  // block (pl_initiative — enforced by the engine), so they are display-metadata
641
672
  // system kinds, never palette archetypes. The analyst runs FIRST, ahead of the
@@ -3195,7 +3195,8 @@
3195
3195
  "retrying": "Wird wiederholt…",
3196
3196
  "history": {
3197
3197
  "previousErrors": "{count} vorheriger Fehler | {count} vorherige Fehler"
3198
- }
3198
+ },
3199
+ "resumeBootstrap": "Fortsetzen ab: {step}"
3199
3200
  },
3200
3201
  "stop": {
3201
3202
  "label": "Stoppen",
@@ -3814,7 +3815,8 @@
3814
3815
  "cacheRead": "{tokens} aus dem Cache gelesen",
3815
3816
  "cacheReadHint": "Eingabe-Tokens, die aus dem Cache des Providers bedient wurden (etwa 0,1x der Preis frischer Eingabe-Tokens)",
3816
3817
  "cacheWrite": "{tokens} in den Cache geschrieben",
3817
- "cacheWriteHint": "Eingabe-Tokens, die in den Cache des Providers geschrieben wurden (1,25x bis 2x der Preis frischer Eingabe-Tokens)"
3818
+ "cacheWriteHint": "Eingabe-Tokens, die in den Cache des Providers geschrieben wurden (1,25x bis 2x der Preis frischer Eingabe-Tokens)",
3819
+ "costNoRollup": "Nicht bepreist: Die Schätzung wird aus der Aufstellung pro Schritt gebildet, und dieser Lauf hat keine. Was seine Aufrufe verbraucht haben, steht unten."
3818
3820
  },
3819
3821
  "phase": {
3820
3822
  "title": "Wohin die Tokens geflossen sind",
@@ -3829,7 +3831,8 @@
3829
3831
  "costHint": "Geschätzte Kosten der Token dieser Phase zu Listenpreisen. Ein Strich bedeutet, dass diese Installation keinen Satz für das ausgeführte Modell kennt.",
3830
3832
  "carryCostHint": "Wie stark jede Phase die nachfolgenden Runden belastet hat: ihr Kontext einmal für jede spätere Runde gezählt, die ihn erneut senden musste. Vergleichen Sie die Phasen eines Laufs miteinander; für sich allein sagt die Zahl nichts aus. Eine spät laufende Phase schleppt wenig mit, wie viel sie auch verbraucht hat; lesen Sie diese Spalte daher zusammen mit den Tokens daneben.",
3831
3833
  "unattributed": "Nicht zugeordnet",
3832
- "unattributedHint": "von einem Kanal erfasst, der keine Phase meldet"
3834
+ "unattributedHint": "von einem Kanal erfasst, der keine Phase meldet",
3835
+ "noRollup": "Dieser Lauf hat keine Pipeline-Schritte, daher gibt es keine Aufstellung nach Phasen: Seine Modellaufrufe sind unten erfasst, aber nichts gruppiert oder bepreist sie."
3833
3836
  },
3834
3837
  "metricsBar": {
3835
3838
  "calls": "{count} Aufruf | {count} Aufrufe",
@@ -3937,7 +3940,8 @@
3937
3940
  "result": "Ergebnis",
3938
3941
  "dropped": "{chars} Zeichen bei der Erfassung verworfen",
3939
3942
  "truncated": "Es werden die ersten {shown} Aufrufe dieses Laufs angezeigt. Die Zahlen oben gelten für den gesamten Lauf; filtere auf die Fehlschläge, um alle zu sehen.",
3940
- "failuresTruncated": "Es werden die ersten {shown} fehlgeschlagenen Aufrufe angezeigt. Die Zahl oben gilt für den gesamten Lauf."
3943
+ "failuresTruncated": "Es werden die ersten {shown} fehlgeschlagenen Aufrufe angezeigt. Die Zahl oben gilt für den gesamten Lauf.",
3944
+ "surveyReadsElsewhere": "Die Lesevorgänge der Erhebung stehen nicht hier: Sie erkundet über den begrenzten Leser der Plattform, und jeder Lesevorgang ist im Übernahmeprotokoll des Laufs erfasst. Unten stehen die Tool-Aufrufe des Containers, der den Service geschrieben hat."
3941
3945
  }
3942
3946
  },
3943
3947
  "platformObservability": {
@@ -5250,7 +5254,26 @@
5250
5254
  "approvedDesc": "Der Agent schreibt jetzt {directory} und öffnet einen Pull Request.",
5251
5255
  "failed": "Prüfung konnte nicht abgeschickt werden"
5252
5256
  }
5253
- }
5257
+ },
5258
+ "steps": {
5259
+ "title": "Bootstrap-Schritte",
5260
+ "name": {
5261
+ "scaffold": "Repository aufsetzen",
5262
+ "survey": "Monorepo und Vorlage untersuchen",
5263
+ "review": "Deine Übernahme-Entscheidungen",
5264
+ "apply": "Service schreiben und Pull Request öffnen"
5265
+ },
5266
+ "state": {
5267
+ "pending": "Nicht begonnen",
5268
+ "running": "Läuft",
5269
+ "awaiting_review": "Wartet auf dich",
5270
+ "done": "Fertig",
5271
+ "failed": "Fehlgeschlagen",
5272
+ "stopped": "Gestoppt",
5273
+ "unknown": "Status nicht lesbar"
5274
+ }
5275
+ },
5276
+ "runKind": "Repository-Bootstrap"
5254
5277
  },
5255
5278
  "fragments": {
5256
5279
  "panel": {
@@ -464,6 +464,10 @@
464
464
  "@previousErrors": {
465
465
  "description": "Count-based tally of a run's earlier failed attempts, rendered as e.g. '3 previous errors' (count is always >= 1). Provide ALL plural forms your language needs (English has 2; Polish/Ukrainian need 3 - one/few/many - via the custom pluralRules in i18n.config.ts)."
466
466
  }
467
+ },
468
+ "resumeBootstrap": "Resume from: {step}",
469
+ "@resumeBootstrap": {
470
+ "description": "Retry label for a multi-step (monorepo) bootstrap, which resumes at the step the run reached rather than starting over. {step} is one of the bootstrap.steps.name values."
467
471
  }
468
472
  },
469
473
  "stop": {
@@ -1872,7 +1876,8 @@
1872
1876
  "cacheRead": "{tokens} cache read",
1873
1877
  "cacheReadHint": "Input tokens served from the provider's cache (about 0.1x the price of fresh input)",
1874
1878
  "cacheWrite": "{tokens} cache write",
1875
- "cacheWriteHint": "Input tokens written into the provider's cache (1.25x to 2x the price of fresh input)"
1879
+ "cacheWriteHint": "Input tokens written into the provider's cache (1.25x to 2x the price of fresh input)",
1880
+ "costNoRollup": "Not priced: the estimate is folded from a run's per-step rollup, and this run has none. What its calls consumed is listed below."
1876
1881
  },
1877
1882
  "phase": {
1878
1883
  "title": "Where the tokens went",
@@ -1887,7 +1892,8 @@
1887
1892
  "costHint": "Estimated cost of this phase's tokens at list rates. A dash means this deployment has no rate for the model that ran.",
1888
1893
  "carryCostHint": "How much each phase burdened the turns that came after it: its context counted once for every later turn that had to re-send it. Compare a run's phases with each other; on its own the number means nothing. A phase that runs late carries little however much it spent, so read this column alongside the tokens beside it.",
1889
1894
  "unattributed": "Unattributed",
1890
- "unattributedHint": "recorded by a channel that reports no phase"
1895
+ "unattributedHint": "recorded by a channel that reports no phase",
1896
+ "noRollup": "This run has no pipeline steps, so there is no per-phase rollup to fold: its model calls are recorded below, but nothing groups or prices them."
1891
1897
  },
1892
1898
  "metricsBar": {
1893
1899
  "calls": "{count} call | {count} calls",
@@ -1995,7 +2001,8 @@
1995
2001
  "result": "Result",
1996
2002
  "dropped": "{chars} characters dropped at capture",
1997
2003
  "truncated": "Showing the first {shown} calls of this run. The counts above are for the whole run; narrow to the failures to see all of them.",
1998
- "failuresTruncated": "Showing the first {shown} failing calls. The count above is for the whole run."
2004
+ "failuresTruncated": "Showing the first {shown} failing calls. The count above is for the whole run.",
2005
+ "surveyReadsElsewhere": "The survey's own reads are not here: it explores through the platform's bounded reader, and every read it made is recorded on the run's adoption transcript. Below are the tool calls of the container that wrote the service."
1999
2006
  }
2000
2007
  },
2001
2008
  "platformObservability": {
@@ -7440,6 +7447,31 @@
7440
7447
  "approvedDesc": "The agent is now writing {directory} and will open a pull request.",
7441
7448
  "failed": "Could not submit the review"
7442
7449
  }
7450
+ },
7451
+ "steps": {
7452
+ "title": "Bootstrap steps",
7453
+ "name": {
7454
+ "scaffold": "Scaffold the repository",
7455
+ "survey": "Survey the monorepo and the template",
7456
+ "review": "Your adoption decisions",
7457
+ "apply": "Write the service and open the pull request"
7458
+ },
7459
+ "state": {
7460
+ "pending": "Not started",
7461
+ "running": "Running",
7462
+ "awaiting_review": "Waiting for you",
7463
+ "done": "Done",
7464
+ "failed": "Failed",
7465
+ "stopped": "Stopped",
7466
+ "unknown": "State unreadable"
7467
+ }
7468
+ },
7469
+ "@steps": {
7470
+ "description": "The moves a bootstrap run is made of. A new-repo bootstrap is only `scaffold`; a monorepo bootstrap is survey → your decisions → apply. `state.stopped` is a run a person stopped, which is stored as a failure without being one; `state.unknown` is for a stored run status this build no longer defines."
7471
+ },
7472
+ "runKind": "Repo bootstrap",
7473
+ "@runKind": {
7474
+ "description": "The kind of run the observability panel is showing, in the line under its title where a task run names its pipeline instead. Keep it short."
7443
7475
  }
7444
7476
  },
7445
7477
  "initiative": {
@@ -413,7 +413,8 @@
413
413
  "retrying": "Reintentando…",
414
414
  "history": {
415
415
  "previousErrors": "{count} error anterior | {count} errores anteriores"
416
- }
416
+ },
417
+ "resumeBootstrap": "Reanudar desde: {step}"
417
418
  },
418
419
  "stop": {
419
420
  "label": "Detener",
@@ -1768,7 +1769,8 @@
1768
1769
  "cacheRead": "{tokens} leídos de caché",
1769
1770
  "cacheReadHint": "Tokens de entrada servidos desde la caché del proveedor (unas 0,1 veces el precio de la entrada fresca)",
1770
1771
  "cacheWrite": "{tokens} escritos en caché",
1771
- "cacheWriteHint": "Tokens de entrada escritos en la caché del proveedor (de 1,25 a 2 veces el precio de la entrada fresca)"
1772
+ "cacheWriteHint": "Tokens de entrada escritos en la caché del proveedor (de 1,25 a 2 veces el precio de la entrada fresca)",
1773
+ "costNoRollup": "Sin valorar: la estimación se calcula a partir del resumen por paso, y esta ejecución no tiene ninguno. Abajo se indica lo que consumieron sus llamadas."
1772
1774
  },
1773
1775
  "phase": {
1774
1776
  "title": "Adónde fueron los tokens",
@@ -1783,7 +1785,8 @@
1783
1785
  "costHint": "Coste estimado de los tokens de esta fase a precios de lista. Un guion indica que esta instalación no tiene tarifa para el modelo que se ejecutó.",
1784
1786
  "carryCostHint": "Cuánto cargó cada fase sobre los turnos posteriores: su contexto contado una vez por cada turno que tuvo que reenviarlo. Compara entre sí las fases de una ejecución; por sí sola la cifra no significa nada. Una fase que se ejecuta al final arrastra poco por mucho que haya gastado, así que lee esta columna junto a los tokens de al lado.",
1785
1787
  "unattributed": "Sin atribuir",
1786
- "unattributedHint": "registrado por un canal que no informa de la fase"
1788
+ "unattributedHint": "registrado por un canal que no informa de la fase",
1789
+ "noRollup": "Esta ejecución no tiene pasos de pipeline, así que no hay un resumen por fase: sus llamadas al modelo están registradas abajo, pero nada las agrupa ni las valora."
1787
1790
  },
1788
1791
  "metricsBar": {
1789
1792
  "calls": "{count} llamada | {count} llamadas",
@@ -1891,7 +1894,8 @@
1891
1894
  "result": "Resultado",
1892
1895
  "dropped": "{chars} caracteres descartados al capturar",
1893
1896
  "truncated": "Se muestran las primeras {shown} llamadas de esta ejecución. Los recuentos de arriba corresponden a la ejecución completa; filtra por los fallos para verlos todos.",
1894
- "failuresTruncated": "Se muestran las primeras {shown} llamadas fallidas. El recuento de arriba corresponde a la ejecución completa."
1897
+ "failuresTruncated": "Se muestran las primeras {shown} llamadas fallidas. El recuento de arriba corresponde a la ejecución completa.",
1898
+ "surveyReadsElsewhere": "Las lecturas del estudio no están aquí: explora mediante el lector acotado de la plataforma y cada lectura queda registrada en la transcripción de adopción de la ejecución. Abajo están las llamadas a herramientas del contenedor que escribió el servicio."
1895
1899
  }
1896
1900
  },
1897
1901
  "platformObservability": {
@@ -7120,7 +7124,26 @@
7120
7124
  "approvedDesc": "El agente está escribiendo {directory} y abrirá un pull request.",
7121
7125
  "failed": "No se pudo enviar la revisión"
7122
7126
  }
7123
- }
7127
+ },
7128
+ "steps": {
7129
+ "title": "Pasos del bootstrap",
7130
+ "name": {
7131
+ "scaffold": "Crear la estructura del repositorio",
7132
+ "survey": "Analizar el monorepo y la plantilla",
7133
+ "review": "Tus decisiones de adopción",
7134
+ "apply": "Escribir el servicio y abrir la pull request"
7135
+ },
7136
+ "state": {
7137
+ "pending": "Sin empezar",
7138
+ "running": "En curso",
7139
+ "awaiting_review": "Esperándote",
7140
+ "done": "Hecho",
7141
+ "failed": "Con error",
7142
+ "stopped": "Detenido",
7143
+ "unknown": "Estado ilegible"
7144
+ }
7145
+ },
7146
+ "runKind": "Arranque de repositorio"
7124
7147
  },
7125
7148
  "riskPolicy": {
7126
7149
  "health": {
@@ -413,7 +413,8 @@
413
413
  "retrying": "Nouvelle tentative…",
414
414
  "history": {
415
415
  "previousErrors": "{count} erreur précédente | {count} erreurs précédentes"
416
- }
416
+ },
417
+ "resumeBootstrap": "Reprendre à : {step}"
417
418
  },
418
419
  "stop": {
419
420
  "label": "Arrêter",
@@ -1768,7 +1769,8 @@
1768
1769
  "cacheRead": "{tokens} lus depuis le cache",
1769
1770
  "cacheReadHint": "Tokens d'entrée servis depuis le cache du fournisseur (environ 0,1 fois le prix d'une entrée fraîche)",
1770
1771
  "cacheWrite": "{tokens} écrits dans le cache",
1771
- "cacheWriteHint": "Tokens d'entrée écrits dans le cache du fournisseur (1,25 à 2 fois le prix d'une entrée fraîche)"
1772
+ "cacheWriteHint": "Tokens d'entrée écrits dans le cache du fournisseur (1,25 à 2 fois le prix d'une entrée fraîche)",
1773
+ "costNoRollup": "Non chiffré : l’estimation est calculée à partir du récapitulatif par étape, et cette exécution n’en a aucun. Ce que ses appels ont consommé figure ci-dessous."
1772
1774
  },
1773
1775
  "phase": {
1774
1776
  "title": "Où sont passés les tokens",
@@ -1783,7 +1785,8 @@
1783
1785
  "costHint": "Coût estimé des tokens de cette phase aux tarifs publics. Un tiret signifie que cette installation n'a aucun tarif pour le modèle utilisé.",
1784
1786
  "carryCostHint": "Ce que chaque phase a fait peser sur les tours suivants : son contexte compté une fois pour chaque tour ultérieur ayant dû le renvoyer. Comparez les phases d'une exécution entre elles ; isolée, la valeur ne signifie rien. Une phase qui s'exécute en dernier reporte peu, quoi qu'elle ait dépensé : lisez donc cette colonne avec les tokens voisins.",
1785
1787
  "unattributed": "Non attribué",
1786
- "unattributedHint": "enregistré par un canal qui ne rapporte aucune phase"
1788
+ "unattributedHint": "enregistré par un canal qui ne rapporte aucune phase",
1789
+ "noRollup": "Cette exécution n’a pas d’étapes de pipeline, donc aucun récapitulatif par phase n’est disponible : ses appels de modèle sont enregistrés ci-dessous, mais rien ne les regroupe ni ne les chiffre."
1787
1790
  },
1788
1791
  "metricsBar": {
1789
1792
  "calls": "{count} appel | {count} appels",
@@ -1891,7 +1894,8 @@
1891
1894
  "result": "Résultat",
1892
1895
  "dropped": "{chars} caractères supprimés à la capture",
1893
1896
  "truncated": "Affichage des {shown} premiers appels de cette exécution. Les compteurs ci-dessus portent sur l'exécution entière ; filtrez sur les échecs pour tous les voir.",
1894
- "failuresTruncated": "Affichage des {shown} premiers appels en échec. Le compteur ci-dessus porte sur l'exécution entière."
1897
+ "failuresTruncated": "Affichage des {shown} premiers appels en échec. Le compteur ci-dessus porte sur l'exécution entière.",
1898
+ "surveyReadsElsewhere": "Les lectures de l’étude ne figurent pas ici : elle explore via le lecteur borné de la plateforme, et chaque lecture est consignée dans la transcription d’adoption de l’exécution. Ci-dessous, les appels d’outils du conteneur qui a écrit le service."
1895
1899
  }
1896
1900
  },
1897
1901
  "platformObservability": {
@@ -7120,7 +7124,26 @@
7120
7124
  "approvedDesc": "L’agent écrit {directory} et ouvrira une pull request.",
7121
7125
  "failed": "Impossible d’envoyer la revue"
7122
7126
  }
7123
- }
7127
+ },
7128
+ "steps": {
7129
+ "title": "Étapes du bootstrap",
7130
+ "name": {
7131
+ "scaffold": "Créer la structure du dépôt",
7132
+ "survey": "Analyser le monorepo et le modèle",
7133
+ "review": "Vos décisions d'adoption",
7134
+ "apply": "Écrire le service et ouvrir la pull request"
7135
+ },
7136
+ "state": {
7137
+ "pending": "Pas commencé",
7138
+ "running": "En cours",
7139
+ "awaiting_review": "En attente de vous",
7140
+ "done": "Terminé",
7141
+ "failed": "En échec",
7142
+ "stopped": "Arrêté",
7143
+ "unknown": "État illisible"
7144
+ }
7145
+ },
7146
+ "runKind": "Amorçage de dépôt"
7124
7147
  },
7125
7148
  "riskPolicy": {
7126
7149
  "health": {
@@ -413,7 +413,8 @@
413
413
  "retrying": "מנסה שוב…",
414
414
  "history": {
415
415
  "previousErrors": "שגיאה קודמת אחת | שתי שגיאות קודמות | {count} שגיאות קודמות"
416
- }
416
+ },
417
+ "resumeBootstrap": "המשך מ: {step}"
417
418
  },
418
419
  "stop": {
419
420
  "label": "עצור",
@@ -1768,7 +1769,8 @@
1768
1769
  "cacheRead": "{tokens} נקראו מהמטמון",
1769
1770
  "cacheReadHint": "טוקני קלט שהוגשו ממטמון הספק (כ-0.1 ממחיר קלט חדש)",
1770
1771
  "cacheWrite": "{tokens} נכתבו למטמון",
1771
- "cacheWriteHint": "טוקני קלט שנכתבו למטמון הספק (פי 1.25 עד 2 ממחיר קלט חדש)"
1772
+ "cacheWriteHint": "טוקני קלט שנכתבו למטמון הספק (פי 1.25 עד 2 ממחיר קלט חדש)",
1773
+ "costNoRollup": "ללא תמחור: ההערכה נגזרת מהפירוט לפי שלב, ולהרצה הזו אין פירוט כזה. מה שהקריאות שלה צרכו מוצג למטה."
1772
1774
  },
1773
1775
  "phase": {
1774
1776
  "title": "לאן הלכו הטוקנים",
@@ -1783,7 +1785,8 @@
1783
1785
  "costHint": "עלות משוערת של הטוקנים בשלב זה לפי מחירון. מקף מציין שלהתקנה הזו אין תעריף עבור המודל שרץ.",
1784
1786
  "carryCostHint": "כמה כל שלב העמיס על התורים שבאו אחריו: ההקשר שלו נספר פעם אחת עבור כל תור מאוחר יותר שנאלץ לשלוח אותו שוב. השוו בין שלבי ההרצה זה לזה; בפני עצמו המספר אינו אומר דבר. שלב שרץ בסוף גורר מעט גם אם צרך הרבה, ולכן קראו את העמודה הזאת יחד עם הטוקנים שלצדה.",
1785
1787
  "unattributed": "ללא שיוך",
1786
- "unattributedHint": "נרשם על ידי ערוץ שאינו מדווח על שלב"
1788
+ "unattributedHint": "נרשם על ידי ערוץ שאינו מדווח על שלב",
1789
+ "noRollup": "להרצה הזו אין שלבי צינור, ולכן אין פירוט לפי שלב: קריאות המודל שלה מתועדות למטה, אבל דבר אינו מקבץ או מתמחר אותן."
1787
1790
  },
1788
1791
  "metricsBar": {
1789
1792
  "calls": "{count} קריאה | שתי קריאות | {count} קריאות",
@@ -1891,7 +1894,8 @@
1891
1894
  "result": "תוצאה",
1892
1895
  "dropped": "{chars} תווים הושמטו בעת הלכידה",
1893
1896
  "truncated": "מוצגות {shown} הקריאות הראשונות של הריצה. המספרים למעלה מתייחסים לריצה כולה; סננו לכשלים כדי לראות את כולם.",
1894
- "failuresTruncated": "מוצגות {shown} הקריאות הכושלות הראשונות. המספר למעלה מתייחס לריצה כולה."
1897
+ "failuresTruncated": "מוצגות {shown} הקריאות הכושלות הראשונות. המספר למעלה מתייחס לריצה כולה.",
1898
+ "surveyReadsElsewhere": "הקריאות של הסקירה עצמה אינן כאן: היא חוקרת דרך הקורא המוגבל של הפלטפורמה, וכל קריאה שביצעה מתועדת בתמליל האימוץ של ההרצה. למטה מופיעות קריאות הכלים של המכולה שכתבה את השירות."
1895
1899
  }
1896
1900
  },
1897
1901
  "platformObservability": {
@@ -7120,7 +7124,26 @@
7120
7124
  "approvedDesc": "הסוכן כותב כעת את {directory} ויפתח בקשת משיכה.",
7121
7125
  "failed": "לא ניתן היה לשלוח את הסקירה"
7122
7126
  }
7123
- }
7127
+ },
7128
+ "steps": {
7129
+ "title": "שלבי האתחול",
7130
+ "name": {
7131
+ "scaffold": "יצירת שלד המאגר",
7132
+ "survey": "סקירת המונורפו והתבנית",
7133
+ "review": "ההחלטות שלך על מה לאמץ",
7134
+ "apply": "כתיבת השירות ופתיחת בקשת משיכה"
7135
+ },
7136
+ "state": {
7137
+ "pending": "טרם התחיל",
7138
+ "running": "פועל",
7139
+ "awaiting_review": "ממתין לך",
7140
+ "done": "הושלם",
7141
+ "failed": "נכשל",
7142
+ "stopped": "הופסק",
7143
+ "unknown": "מצב לא קריא"
7144
+ }
7145
+ },
7146
+ "runKind": "אתחול מאגר"
7124
7147
  },
7125
7148
  "riskPolicy": {
7126
7149
  "health": {
@@ -3195,7 +3195,8 @@
3195
3195
  "retrying": "Nuovo tentativo…",
3196
3196
  "history": {
3197
3197
  "previousErrors": "{count} errore precedente | {count} errori precedenti"
3198
- }
3198
+ },
3199
+ "resumeBootstrap": "Riprendi da: {step}"
3199
3200
  },
3200
3201
  "stop": {
3201
3202
  "label": "Interrompi",
@@ -3814,7 +3815,8 @@
3814
3815
  "cacheRead": "{tokens} letti dalla cache",
3815
3816
  "cacheReadHint": "Token di input serviti dalla cache del provider (circa 0,1 volte il prezzo dell'input fresco)",
3816
3817
  "cacheWrite": "{tokens} scritti nella cache",
3817
- "cacheWriteHint": "Token di input scritti nella cache del provider (da 1,25 a 2 volte il prezzo dell'input fresco)"
3818
+ "cacheWriteHint": "Token di input scritti nella cache del provider (da 1,25 a 2 volte il prezzo dell'input fresco)",
3819
+ "costNoRollup": "Non valorizzato: la stima si ricava dal riepilogo per step, e questa esecuzione non ne ha. Qui sotto è indicato quanto hanno consumato le sue chiamate."
3818
3820
  },
3819
3821
  "phase": {
3820
3822
  "title": "Dove sono finiti i token",
@@ -3829,7 +3831,8 @@
3829
3831
  "costHint": "Costo stimato dei token di questa fase ai prezzi di listino. Un trattino indica che questa installazione non ha una tariffa per il modello eseguito.",
3830
3832
  "carryCostHint": "Quanto ogni fase ha gravato sui turni successivi: il suo contesto contato una volta per ogni turno che ha dovuto rinviarlo. Confronta tra loro le fasi di un'esecuzione; da solo il numero non significa nulla. Una fase che viene eseguita per ultima trascina poco per quanto abbia speso, quindi leggi questa colonna insieme ai token accanto.",
3831
3833
  "unattributed": "Non attribuito",
3832
- "unattributedHint": "registrato da un canale che non riporta la fase"
3834
+ "unattributedHint": "registrato da un canale che non riporta la fase",
3835
+ "noRollup": "Questa esecuzione non ha step di pipeline, quindi non esiste un riepilogo per fase: le sue chiamate al modello sono registrate qui sotto, ma nulla le raggruppa né le valorizza."
3833
3836
  },
3834
3837
  "metricsBar": {
3835
3838
  "calls": "{count} chiamata | {count} chiamate",
@@ -3937,7 +3940,8 @@
3937
3940
  "result": "Risultato",
3938
3941
  "dropped": "{chars} caratteri scartati all'acquisizione",
3939
3942
  "truncated": "Sono mostrate le prime {shown} chiamate di questa esecuzione. I conteggi sopra si riferiscono all'intera esecuzione; filtra sui fallimenti per vederli tutti.",
3940
- "failuresTruncated": "Sono mostrate le prime {shown} chiamate fallite. Il conteggio sopra si riferisce all'intera esecuzione."
3943
+ "failuresTruncated": "Sono mostrate le prime {shown} chiamate fallite. Il conteggio sopra si riferisce all'intera esecuzione.",
3944
+ "surveyReadsElsewhere": "Le letture dell’indagine non sono qui: esplora tramite il lettore limitato della piattaforma e ogni lettura è registrata nella trascrizione di adozione dell’esecuzione. Sotto ci sono le chiamate agli strumenti del container che ha scritto il servizio."
3941
3945
  }
3942
3946
  },
3943
3947
  "platformObservability": {
@@ -5250,7 +5254,26 @@
5250
5254
  "approvedDesc": "L'agente sta scrivendo {directory} e aprirà una pull request.",
5251
5255
  "failed": "Impossibile inviare la revisione"
5252
5256
  }
5253
- }
5257
+ },
5258
+ "steps": {
5259
+ "title": "Passaggi del bootstrap",
5260
+ "name": {
5261
+ "scaffold": "Creare la struttura del repository",
5262
+ "survey": "Analizzare il monorepo e il template",
5263
+ "review": "Le tue decisioni di adozione",
5264
+ "apply": "Scrivere il servizio e aprire la pull request"
5265
+ },
5266
+ "state": {
5267
+ "pending": "Non iniziato",
5268
+ "running": "In corso",
5269
+ "awaiting_review": "In attesa di te",
5270
+ "done": "Completato",
5271
+ "failed": "Fallito",
5272
+ "stopped": "Interrotto",
5273
+ "unknown": "Stato illeggibile"
5274
+ }
5275
+ },
5276
+ "runKind": "Bootstrap del repository"
5254
5277
  },
5255
5278
  "fragments": {
5256
5279
  "panel": {
@@ -413,7 +413,8 @@
413
413
  "retrying": "再試行中…",
414
414
  "history": {
415
415
  "previousErrors": "以前のエラー {count} 件 | 以前のエラー {count} 件"
416
- }
416
+ },
417
+ "resumeBootstrap": "再開: {step}"
417
418
  },
418
419
  "stop": {
419
420
  "label": "停止",
@@ -1768,7 +1769,8 @@
1768
1769
  "cacheRead": "{tokens} キャッシュ読み取り",
1769
1770
  "cacheReadHint": "プロバイダーのキャッシュから提供された入力トークン (新規入力の約 0.1 倍の価格)",
1770
1771
  "cacheWrite": "{tokens} キャッシュ書き込み",
1771
- "cacheWriteHint": "プロバイダーのキャッシュに書き込まれた入力トークン (新規入力の 1.25 倍から 2 倍の価格)"
1772
+ "cacheWriteHint": "プロバイダーのキャッシュに書き込まれた入力トークン (新規入力の 1.25 倍から 2 倍の価格)",
1773
+ "costNoRollup": "費用は算出されていません。見積もりはステップ別の集計から求めますが、この実行には集計がありません。各呼び出しの消費量は下に表示されます。"
1772
1774
  },
1773
1775
  "phase": {
1774
1776
  "title": "トークンの使われ先",
@@ -1783,7 +1785,8 @@
1783
1785
  "costHint": "このフェーズのトークンの定価ベースの推定コストです。ダッシュは、この環境に実行されたモデルの単価が設定されていないことを示します。",
1784
1786
  "carryCostHint": "各フェーズが後続のターンにどれだけ負担をかけたか。そのコンテキストを、再送が必要になった後続ターンの数だけ数えた値です。1 回の実行内でフェーズ同士を比較してください。単独の数値には意味がありません。最後に実行されるフェーズは、どれだけ消費しても持ち越しはわずかです。この列は隣のトークン数と併せて読んでください。",
1785
1787
  "unattributed": "未特定",
1786
- "unattributedHint": "フェーズを報告しないチャネルで記録"
1788
+ "unattributedHint": "フェーズを報告しないチャネルで記録",
1789
+ "noRollup": "この実行にはパイプラインのステップがないため、フェーズ別の集計はありません。モデル呼び出しは下に記録されていますが、それらを集約したり費用を算出したりするものはありません。"
1787
1790
  },
1788
1791
  "metricsBar": {
1789
1792
  "calls": "{count} 件の呼び出し | {count} 件の呼び出し",
@@ -1891,7 +1894,8 @@
1891
1894
  "result": "結果",
1892
1895
  "dropped": "記録時に {chars} 文字を破棄",
1893
1896
  "truncated": "この実行の最初の {shown} 件の呼び出しを表示しています。上の件数は実行全体のものです。すべての失敗を見るには失敗で絞り込んでください。",
1894
- "failuresTruncated": "最初の {shown} 件の失敗した呼び出しを表示しています。上の件数は実行全体のものです。"
1897
+ "failuresTruncated": "最初の {shown} 件の失敗した呼び出しを表示しています。上の件数は実行全体のものです。",
1898
+ "surveyReadsElsewhere": "調査自体の読み取りはここには表示されません。調査はプラットフォームの制限付きリーダーを通じて探索し、行った読み取りはすべて実行の採用トランスクリプトに記録されます。以下はサービスを書き込んだコンテナーのツール呼び出しです。"
1895
1899
  }
1896
1900
  },
1897
1901
  "platformObservability": {
@@ -7120,7 +7124,26 @@
7120
7124
  "approvedDesc": "エージェントが {directory} を作成し、プルリクエストを開きます。",
7121
7125
  "failed": "レビューを送信できませんでした"
7122
7126
  }
7123
- }
7127
+ },
7128
+ "steps": {
7129
+ "title": "ブートストラップの手順",
7130
+ "name": {
7131
+ "scaffold": "リポジトリの雛形を作成",
7132
+ "survey": "モノレポとテンプレートを調査",
7133
+ "review": "採用方針の決定",
7134
+ "apply": "サービスを作成してプルリクエストを開く"
7135
+ },
7136
+ "state": {
7137
+ "pending": "未着手",
7138
+ "running": "実行中",
7139
+ "awaiting_review": "あなたの対応待ち",
7140
+ "done": "完了",
7141
+ "failed": "失敗",
7142
+ "stopped": "停止しました",
7143
+ "unknown": "状態を判別できません"
7144
+ }
7145
+ },
7146
+ "runKind": "リポジトリのブートストラップ"
7124
7147
  },
7125
7148
  "riskPolicy": {
7126
7149
  "health": {
@@ -413,7 +413,8 @@
413
413
  "retrying": "Ponawianie…",
414
414
  "history": {
415
415
  "previousErrors": "{count} poprzedni błąd | {count} poprzednie błędy | {count} poprzednich błędów"
416
- }
416
+ },
417
+ "resumeBootstrap": "Wznów od: {step}"
417
418
  },
418
419
  "stop": {
419
420
  "label": "Zatrzymaj",
@@ -1768,7 +1769,8 @@
1768
1769
  "cacheRead": "{tokens} odczytane z pamięci podręcznej",
1769
1770
  "cacheReadHint": "Tokeny wejściowe obsłużone z pamięci podręcznej dostawcy (około 0,1 ceny świeżego wejścia)",
1770
1771
  "cacheWrite": "{tokens} zapisane do pamięci podręcznej",
1771
- "cacheWriteHint": "Tokeny wejściowe zapisane do pamięci podręcznej dostawcy (od 1,25 do 2 razy cena świeżego wejścia)"
1772
+ "cacheWriteHint": "Tokeny wejściowe zapisane do pamięci podręcznej dostawcy (od 1,25 do 2 razy cena świeżego wejścia)",
1773
+ "costNoRollup": "Bez wyceny: szacunek powstaje z zestawienia według kroków, a ten przebieg go nie ma. Poniżej widać, ile zużyły jego wywołania."
1772
1774
  },
1773
1775
  "phase": {
1774
1776
  "title": "Na co poszły tokeny",
@@ -1783,7 +1785,8 @@
1783
1785
  "costHint": "Szacowany koszt tokenów tej fazy według cennika. Myślnik oznacza, że ta instalacja nie ma stawki dla uruchomionego modelu.",
1784
1786
  "carryCostHint": "Jak bardzo każda faza obciążyła kolejne tury: jej kontekst policzony raz za każdą późniejszą turę, która musiała go wysłać ponownie. Porównuj fazy jednego przebiegu ze sobą; sama liczba nic nie znaczy. Faza wykonywana na końcu przenosi niewiele, choć by zużyła dużo, dlatego czytaj tę kolumnę razem z tokenami obok.",
1785
1787
  "unattributed": "Bez przypisania",
1786
- "unattributedHint": "zarejestrowane przez kanał, który nie podaje fazy"
1788
+ "unattributedHint": "zarejestrowane przez kanał, który nie podaje fazy",
1789
+ "noRollup": "Ten przebieg nie ma kroków potoku, więc nie ma zestawienia według faz: jego wywołania modelu są zapisane poniżej, ale nic ich nie grupuje ani nie wycenia."
1787
1790
  },
1788
1791
  "metricsBar": {
1789
1792
  "calls": "{count} wywołanie | {count} wywołania | {count} wywołań",
@@ -1891,7 +1894,8 @@
1891
1894
  "result": "Wynik",
1892
1895
  "dropped": "{chars} znaków odrzuconych przy zapisie",
1893
1896
  "truncated": "Pokazano pierwsze {shown} wywołań tego uruchomienia. Liczby powyżej dotyczą całego uruchomienia; zawęź do nieudanych, aby zobaczyć wszystkie.",
1894
- "failuresTruncated": "Pokazano pierwsze {shown} nieudanych wywołań. Liczba powyżej dotyczy całego uruchomienia."
1897
+ "failuresTruncated": "Pokazano pierwsze {shown} nieudanych wywołań. Liczba powyżej dotyczy całego uruchomienia.",
1898
+ "surveyReadsElsewhere": "Odczytów samego przeglądu tu nie ma: prowadzi je przez ograniczony czytnik platformy, a każdy odczyt jest zapisany w transkrypcji adopcji tego przebiegu. Poniżej znajdują się wywołania narzędzi kontenera, który zapisał usługę."
1895
1899
  }
1896
1900
  },
1897
1901
  "platformObservability": {
@@ -7120,7 +7124,26 @@
7120
7124
  "approvedDesc": "Agent zapisuje {directory} i otworzy pull request.",
7121
7125
  "failed": "Nie udało się wysłać przeglądu"
7122
7126
  }
7123
- }
7127
+ },
7128
+ "steps": {
7129
+ "title": "Kroki bootstrapu",
7130
+ "name": {
7131
+ "scaffold": "Utworzenie szkieletu repozytorium",
7132
+ "survey": "Analiza monorepo i szablonu",
7133
+ "review": "Twoje decyzje o tym, co przejąć",
7134
+ "apply": "Napisanie usługi i otwarcie pull requesta"
7135
+ },
7136
+ "state": {
7137
+ "pending": "Nierozpoczęty",
7138
+ "running": "W toku",
7139
+ "awaiting_review": "Czeka na Ciebie",
7140
+ "done": "Gotowe",
7141
+ "failed": "Niepowodzenie",
7142
+ "stopped": "Zatrzymano",
7143
+ "unknown": "Stan nieczytelny"
7144
+ }
7145
+ },
7146
+ "runKind": "Inicjalizacja repozytorium"
7124
7147
  },
7125
7148
  "riskPolicy": {
7126
7149
  "health": {