@cat-factory/app 0.278.0 → 0.280.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.
- package/app/components/binaryOutput/BinaryOutputReport.vue +8 -0
- package/app/components/sandbox/SandboxPanel.vue +39 -1
- package/app/components/settings/CapabilityCredentialsPanel.vue +1 -0
- package/app/types/sandbox.ts +25 -3
- package/i18n/locales/de.json +9 -1
- package/i18n/locales/en.json +9 -1
- package/i18n/locales/es.json +9 -1
- package/i18n/locales/fr.json +9 -1
- package/i18n/locales/he.json +9 -1
- package/i18n/locales/it.json +9 -1
- package/i18n/locales/ja.json +9 -1
- package/i18n/locales/pl.json +9 -1
- package/i18n/locales/tr.json +9 -1
- package/i18n/locales/uk.json +9 -1
- package/package.json +2 -2
|
@@ -198,6 +198,14 @@ const state = computed(() => {
|
|
|
198
198
|
>
|
|
199
199
|
{{ t('binaryOutput.unknownGeneratorBadge') }}
|
|
200
200
|
</UBadge>
|
|
201
|
+
<!-- What made the DELIVERABLE, where that is not what made the pixels. Rendered as
|
|
202
|
+
"then <tool>" rather than as a bare second name: the two are a sequence, and side
|
|
203
|
+
by side they would read as two integrations that both produced this artifact. It
|
|
204
|
+
resolves against no registry, so it carries no unknown badge — nothing here can
|
|
205
|
+
judge a label. -->
|
|
206
|
+
<span v-if="row.processedBy" class="font-mono" data-testid="binary-output-processed-by">{{
|
|
207
|
+
t('binaryOutput.processedBy', { tool: row.processedBy })
|
|
208
|
+
}}</span>
|
|
201
209
|
<span v-if="row.entity">{{ row.entity }}</span>
|
|
202
210
|
<span v-if="row.contentType" class="font-mono">{{ row.contentType }}</span>
|
|
203
211
|
<!-- What was actually DELIVERED, beside the media type it was delivered as. Rendered
|
|
@@ -13,6 +13,7 @@ import type {
|
|
|
13
13
|
SandboxPromptOrigin,
|
|
14
14
|
SandboxPromptVersion,
|
|
15
15
|
SandboxRun,
|
|
16
|
+
SandboxUnsupportedReason,
|
|
16
17
|
} from '~/types/sandbox'
|
|
17
18
|
|
|
18
19
|
const ui = useUiStore()
|
|
@@ -34,9 +35,21 @@ const FIXTURE_KIND_LABEL = computed<Record<SandboxFixtureKind, string>>(() => ({
|
|
|
34
35
|
clarity: t('sandbox.fixtureKind.clarity'),
|
|
35
36
|
architecture: t('sandbox.fixtureKind.architecture'),
|
|
36
37
|
'code-review': t('sandbox.fixtureKind.code-review'),
|
|
38
|
+
estimation: t('sandbox.fixtureKind.estimation'),
|
|
39
|
+
'answer-recommendation': t('sandbox.fixtureKind.answer-recommendation'),
|
|
37
40
|
'repo-feature': t('sandbox.fixtureKind.repo-feature'),
|
|
38
41
|
'repo-bug': t('sandbox.fixtureKind.repo-bug'),
|
|
39
42
|
}))
|
|
43
|
+
/**
|
|
44
|
+
* Why the Sandbox cannot run a kind, in the reader's own language.
|
|
45
|
+
*
|
|
46
|
+
* The backend sends the CODE and this maps it: the catalog decides, the SPA words it. Composing
|
|
47
|
+
* the sentence server-side would have put untranslated English under a translated form label, and
|
|
48
|
+
* an exhaustive Record is what stops a new code shipping that way silently.
|
|
49
|
+
*/
|
|
50
|
+
const UNSUPPORTED_REASON_LABEL = computed<Record<SandboxUnsupportedReason, string>>(() => ({
|
|
51
|
+
'container-run-required': t('sandbox.unsupportedReason.container-run-required'),
|
|
52
|
+
}))
|
|
40
53
|
/**
|
|
41
54
|
* Badge colour per prompt origin. An exhaustive Record over the closed union rather than a
|
|
42
55
|
* ternary, so adding an origin fails the typecheck here instead of silently rendering as
|
|
@@ -99,6 +112,19 @@ watch(
|
|
|
99
112
|
)
|
|
100
113
|
|
|
101
114
|
// ---- experiment builder ----------------------------------------------------
|
|
115
|
+
/**
|
|
116
|
+
* The kinds the builder may offer, and the ones it cannot, from the catalog's own answer.
|
|
117
|
+
*
|
|
118
|
+
* Offering an un-runnable kind is worse than omitting it: `POST /sandbox/experiments` refuses it, so
|
|
119
|
+
* the whole matrix is built and then 400s. But omitting it silently would read as "the Sandbox does
|
|
120
|
+
* not know about the coder", so the excluded kinds are NAMED with the catalog's own reason under the
|
|
121
|
+
* field. Their prompts stay in the Prompts tab, where cloning and promoting them still works.
|
|
122
|
+
*/
|
|
123
|
+
const runnableAgentKinds = computed(() => store.agentKinds.filter((k) => k.sandboxRun === 'inline'))
|
|
124
|
+
const unrunnableAgentKinds = computed(() =>
|
|
125
|
+
store.agentKinds.filter((k) => k.sandboxRun !== 'inline'),
|
|
126
|
+
)
|
|
127
|
+
|
|
102
128
|
const agentKind = ref('requirements-review')
|
|
103
129
|
const name = ref('')
|
|
104
130
|
const selectedPromptIds = ref<string[]>([])
|
|
@@ -298,10 +324,22 @@ async function archive(prompt: SandboxPromptVersion) {
|
|
|
298
324
|
<UFormField :label="t('sandbox.builder.agent')">
|
|
299
325
|
<USelect
|
|
300
326
|
v-model="agentKind"
|
|
301
|
-
:items="
|
|
327
|
+
:items="runnableAgentKinds.map((k) => ({ label: k.label, value: k.agentKind }))"
|
|
302
328
|
value-key="value"
|
|
303
329
|
class="w-full"
|
|
304
330
|
/>
|
|
331
|
+
<p
|
|
332
|
+
v-for="excluded in unrunnableAgentKinds"
|
|
333
|
+
:key="excluded.agentKind"
|
|
334
|
+
class="mt-1 text-[11px] leading-snug text-slate-500"
|
|
335
|
+
>
|
|
336
|
+
<span class="font-medium text-slate-400">{{ excluded.label }}:</span>
|
|
337
|
+
{{
|
|
338
|
+
excluded.unsupportedReason
|
|
339
|
+
? UNSUPPORTED_REASON_LABEL[excluded.unsupportedReason]
|
|
340
|
+
: t('sandbox.unsupportedReason.unknown')
|
|
341
|
+
}}
|
|
342
|
+
</p>
|
|
305
343
|
</UFormField>
|
|
306
344
|
|
|
307
345
|
<div>
|
|
@@ -30,6 +30,7 @@ type CredentialSubject = CapabilityCredentialStatus['declaredBy'][number]['subje
|
|
|
30
30
|
const SUBJECT_LABELS = computed<Record<CredentialSubject, string>>(() => ({
|
|
31
31
|
'tool-server': t('settings.capabilityCredentials.subject.toolServer'),
|
|
32
32
|
'binary-generator': t('settings.capabilityCredentials.subject.binaryGenerator'),
|
|
33
|
+
'foundational-service': t('settings.capabilityCredentials.subject.foundationalService'),
|
|
33
34
|
}))
|
|
34
35
|
|
|
35
36
|
// Draft values, keyed by credential key. Never prefilled: nothing here was ever read back, and a
|
package/app/types/sandbox.ts
CHANGED
|
@@ -5,10 +5,16 @@
|
|
|
5
5
|
//
|
|
6
6
|
// All wire shapes are sourced from @cat-factory/contracts (single source of truth).
|
|
7
7
|
// The overview / agent-kind-meta / experiment-detail composites have no exported
|
|
8
|
-
// contract type (the routes model them inline), so they stay frontend-only below
|
|
9
|
-
// and
|
|
8
|
+
// contract type (the routes model them inline), so they stay frontend-only below.
|
|
9
|
+
// `bucket`, `sandboxRun` and `unsupportedReason` reuse the contract's picklist types (the builder
|
|
10
|
+
// branches on `sandboxRun` and MAPS `unsupportedReason` to a locale key, so a widened `string`
|
|
11
|
+
// there would let a typo compile and a new member ship untranslated); `rubric` stays the
|
|
12
|
+
// contract's looser `string`, since nothing here branches on it.
|
|
10
13
|
|
|
11
14
|
export type {
|
|
15
|
+
SandboxAgentBucket,
|
|
16
|
+
SandboxRunMode,
|
|
17
|
+
SandboxUnsupportedReason,
|
|
12
18
|
SandboxPromptOrigin,
|
|
13
19
|
SandboxPromptVersion,
|
|
14
20
|
SandboxFixtureKind,
|
|
@@ -30,19 +36,35 @@ export type {
|
|
|
30
36
|
} from '@cat-factory/contracts'
|
|
31
37
|
|
|
32
38
|
import type {
|
|
39
|
+
SandboxAgentBucket,
|
|
33
40
|
SandboxExperiment,
|
|
34
41
|
SandboxFixture,
|
|
35
42
|
SandboxFixtureKind,
|
|
36
43
|
SandboxGrade,
|
|
37
44
|
SandboxPromptVersion,
|
|
38
45
|
SandboxRun,
|
|
46
|
+
SandboxRunMode,
|
|
47
|
+
SandboxUnsupportedReason,
|
|
39
48
|
} from '@cat-factory/contracts'
|
|
40
49
|
|
|
41
50
|
/** The Sandbox catalog entry for a testable agent kind (from the overview). Frontend-only. */
|
|
42
51
|
export interface SandboxAgentKindMeta {
|
|
43
52
|
agentKind: string
|
|
44
53
|
label: string
|
|
45
|
-
|
|
54
|
+
/** How PRODUCTION dispatches the kind (an inline call, or a container with a checkout). */
|
|
55
|
+
bucket: SandboxAgentBucket
|
|
56
|
+
/**
|
|
57
|
+
* How the SANDBOX runs a cell for it. `unsupported` ⇒ the builder must not offer it: creating an
|
|
58
|
+
* experiment for such a kind is refused server-side, so an enabled option would only ever produce
|
|
59
|
+
* a 400 on a surface that suggested it.
|
|
60
|
+
*/
|
|
61
|
+
sandboxRun: SandboxRunMode
|
|
62
|
+
/**
|
|
63
|
+
* Why the Sandbox cannot run this kind, as the catalog's bounded CODE; null when it can. The
|
|
64
|
+
* builder maps it through an exhaustive `Record` to a locale key, so a new member fails the
|
|
65
|
+
* typecheck instead of reaching a non-English reader in English.
|
|
66
|
+
*/
|
|
67
|
+
unsupportedReason: SandboxUnsupportedReason | null
|
|
46
68
|
rubric: string
|
|
47
69
|
/** Fixture kinds this agent is exercised against (the UI filters the library by these). */
|
|
48
70
|
fixtureKinds: SandboxFixtureKind[]
|
package/i18n/locales/de.json
CHANGED
|
@@ -806,7 +806,8 @@
|
|
|
806
806
|
"noneDeclared": "Keine der registrierten Fähigkeiten dieser Installation fordert Zugangsdaten an.",
|
|
807
807
|
"subject": {
|
|
808
808
|
"toolServer": "Tool-Server",
|
|
809
|
-
"binaryGenerator": "Generative Integration"
|
|
809
|
+
"binaryGenerator": "Generative Integration",
|
|
810
|
+
"foundationalService": "Basisdienst"
|
|
810
811
|
},
|
|
811
812
|
"incomplete": {
|
|
812
813
|
"title": "Diese Liste ist möglicherweise unvollständig",
|
|
@@ -5398,6 +5399,7 @@
|
|
|
5398
5399
|
"unknownGenerators": "Eine generative Integration genannt, die diese Installation nicht registriert: {ids}. Der Eintrag bleibt wie angegeben erhalten; die Integration wird im Code der Installation registriert, nicht in diesem Workspace. | Generative Integrationen genannt, die diese Installation nicht registriert: {ids}. Ihre Einträge bleiben wie angegeben erhalten; Integrationen werden im Code der Installation registriert, nicht in diesem Workspace.",
|
|
5399
5400
|
"generatorsUnverified": "Die generativen Integrationen dieser Installation konnten beim Abschluss des Schritts nicht gelesen werden, daher wurden die unten genannten Integrationen nicht dagegen geprüft. Die Einträge bleiben wie angegeben erhalten."
|
|
5400
5401
|
},
|
|
5402
|
+
"processedBy": "dann {tool}",
|
|
5401
5403
|
"unknownGeneratorBadge": "Nicht registriert",
|
|
5402
5404
|
"missizedBadge": "Falsche Größe",
|
|
5403
5405
|
"candidates": {
|
|
@@ -7019,9 +7021,15 @@
|
|
|
7019
7021
|
"clarity": "Klarheit",
|
|
7020
7022
|
"architecture": "Architektur",
|
|
7021
7023
|
"code-review": "Code-Review",
|
|
7024
|
+
"estimation": "Schätzung",
|
|
7025
|
+
"answer-recommendation": "empfohlene Antworten",
|
|
7022
7026
|
"repo-feature": "Repo-Feature",
|
|
7023
7027
|
"repo-bug": "Repo-Bug"
|
|
7024
7028
|
},
|
|
7029
|
+
"unsupportedReason": {
|
|
7030
|
+
"container-run-required": "Sein Ergebnis ist ein gepushter Commit. Die Bewertung braucht daher einen echten Container-Lauf gegen ein Seed-Repository; eine Inline-Zelle kann nur Text bewerten.",
|
|
7031
|
+
"unknown": "Dieser Agent kann nicht in der Sandbox laufen."
|
|
7032
|
+
},
|
|
7025
7033
|
"fixtureOrigin": {
|
|
7026
7034
|
"builtin": "integriert",
|
|
7027
7035
|
"custom": "benutzerdefiniert"
|
package/i18n/locales/en.json
CHANGED
|
@@ -3659,7 +3659,8 @@
|
|
|
3659
3659
|
"noneDeclared": "None of this deployment's registered capabilities asks for a credential.",
|
|
3660
3660
|
"subject": {
|
|
3661
3661
|
"toolServer": "Tool server",
|
|
3662
|
-
"binaryGenerator": "Generative integration"
|
|
3662
|
+
"binaryGenerator": "Generative integration",
|
|
3663
|
+
"foundationalService": "Foundational service"
|
|
3663
3664
|
},
|
|
3664
3665
|
"incomplete": {
|
|
3665
3666
|
"title": "This list may be incomplete",
|
|
@@ -7001,6 +7002,7 @@
|
|
|
7001
7002
|
"unknownGenerators": "Named a generative integration this deployment does not register: {ids}. The entry is kept as claimed; the integration is registered in the deployment's code, not in this workspace. | Named generative integrations this deployment does not register: {ids}. Their entries are kept as claimed; integrations are registered in the deployment's code, not in this workspace.",
|
|
7002
7003
|
"generatorsUnverified": "This deployment's generative integrations could not be read when the step settled, so the integrations named below were not checked against them. The entries are kept as claimed."
|
|
7003
7004
|
},
|
|
7005
|
+
"processedBy": "then {tool}",
|
|
7004
7006
|
"unknownGeneratorBadge": "Not registered",
|
|
7005
7007
|
"missizedBadge": "Wrong size",
|
|
7006
7008
|
"candidates": {
|
|
@@ -7096,9 +7098,15 @@
|
|
|
7096
7098
|
"clarity": "clarity",
|
|
7097
7099
|
"architecture": "architecture",
|
|
7098
7100
|
"code-review": "code review",
|
|
7101
|
+
"estimation": "estimation",
|
|
7102
|
+
"answer-recommendation": "recommended answers",
|
|
7099
7103
|
"repo-feature": "repo feature",
|
|
7100
7104
|
"repo-bug": "repo bug"
|
|
7101
7105
|
},
|
|
7106
|
+
"unsupportedReason": {
|
|
7107
|
+
"container-run-required": "Its deliverable is a pushed commit, so grading it needs a real container run against a seed repository. An inline cell can only grade text.",
|
|
7108
|
+
"unknown": "This agent cannot run in the Sandbox."
|
|
7109
|
+
},
|
|
7102
7110
|
"fixtureOrigin": {
|
|
7103
7111
|
"builtin": "builtin",
|
|
7104
7112
|
"custom": "custom"
|
package/i18n/locales/es.json
CHANGED
|
@@ -3374,7 +3374,8 @@
|
|
|
3374
3374
|
"noneDeclared": "Ninguna de las capacidades registradas de esta instalación pide credenciales.",
|
|
3375
3375
|
"subject": {
|
|
3376
3376
|
"toolServer": "Servidor de herramientas",
|
|
3377
|
-
"binaryGenerator": "Integración generativa"
|
|
3377
|
+
"binaryGenerator": "Integración generativa",
|
|
3378
|
+
"foundationalService": "Servicio fundacional"
|
|
3378
3379
|
},
|
|
3379
3380
|
"incomplete": {
|
|
3380
3381
|
"title": "Puede que esta lista esté incompleta",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "Nombró una integración generativa que esta instalación no registra: {ids}. La entrada se conserva tal como se declaró; la integración se registra en el código de la instalación, no en este espacio de trabajo. | Nombró integraciones generativas que esta instalación no registra: {ids}. Sus entradas se conservan tal como se declararon; las integraciones se registran en el código de la instalación, no en este espacio de trabajo.",
|
|
6691
6692
|
"generatorsUnverified": "No se han podido leer las integraciones generativas de esta instalación al cerrarse el paso, así que las integraciones indicadas abajo no se han contrastado con ellas. Las entradas se conservan tal como se declararon."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "luego {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "No registrada",
|
|
6694
6696
|
"missizedBadge": "Tamaño incorrecto",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "claridad",
|
|
6777
6779
|
"architecture": "arquitectura",
|
|
6778
6780
|
"code-review": "revisión de código",
|
|
6781
|
+
"estimation": "estimación",
|
|
6782
|
+
"answer-recommendation": "respuestas recomendadas",
|
|
6779
6783
|
"repo-feature": "función de repositorio",
|
|
6780
6784
|
"repo-bug": "error de repositorio"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "Su entregable es un commit publicado, así que evaluarlo requiere una ejecución real en contenedor contra un repositorio semilla; una celda en línea solo puede evaluar texto.",
|
|
6788
|
+
"unknown": "Este agente no puede ejecutarse en el Sandbox."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "integrado",
|
|
6784
6792
|
"custom": "personalizado"
|
package/i18n/locales/fr.json
CHANGED
|
@@ -3374,7 +3374,8 @@
|
|
|
3374
3374
|
"noneDeclared": "Aucune des capacités enregistrées de ce déploiement ne réclame d'identifiant.",
|
|
3375
3375
|
"subject": {
|
|
3376
3376
|
"toolServer": "Serveur d'outils",
|
|
3377
|
-
"binaryGenerator": "Intégration générative"
|
|
3377
|
+
"binaryGenerator": "Intégration générative",
|
|
3378
|
+
"foundationalService": "Service fondamental"
|
|
3378
3379
|
},
|
|
3379
3380
|
"incomplete": {
|
|
3380
3381
|
"title": "Cette liste est peut-être incomplète",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "A nommé une intégration générative que ce déploiement n'enregistre pas : {ids}. L'entrée est conservée telle que déclarée ; l'intégration s'enregistre dans le code du déploiement, pas dans cet espace de travail. | A nommé des intégrations génératives que ce déploiement n'enregistre pas : {ids}. Leurs entrées sont conservées telles que déclarées ; les intégrations s'enregistrent dans le code du déploiement, pas dans cet espace de travail.",
|
|
6691
6692
|
"generatorsUnverified": "Les intégrations génératives de ce déploiement n'ont pas pu être lues à la clôture de l'étape, les intégrations citées ci-dessous n'ont donc pas été vérifiées. Les entrées sont conservées telles que déclarées."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "puis {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "Non enregistrée",
|
|
6694
6696
|
"missizedBadge": "Mauvaise taille",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "clarté",
|
|
6777
6779
|
"architecture": "architecture",
|
|
6778
6780
|
"code-review": "revue de code",
|
|
6781
|
+
"estimation": "estimation",
|
|
6782
|
+
"answer-recommendation": "réponses recommandées",
|
|
6779
6783
|
"repo-feature": "fonctionnalité de dépôt",
|
|
6780
6784
|
"repo-bug": "bogue de dépôt"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "Son livrable est un commit poussé : l’évaluer exige une exécution réelle en conteneur sur un dépôt de départ ; une cellule en ligne ne peut évaluer que du texte.",
|
|
6788
|
+
"unknown": "Cet agent ne peut pas s’exécuter dans le Sandbox."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "intégré",
|
|
6784
6792
|
"custom": "personnalisé"
|
package/i18n/locales/he.json
CHANGED
|
@@ -3516,7 +3516,8 @@
|
|
|
3516
3516
|
"noneDeclared": "אף אחת מהיכולות הרשומות בפריסה הזו אינה מבקשת אישור גישה.",
|
|
3517
3517
|
"subject": {
|
|
3518
3518
|
"toolServer": "שרת כלים",
|
|
3519
|
-
"binaryGenerator": "אינטגרציה גנרטיבית"
|
|
3519
|
+
"binaryGenerator": "אינטגרציה גנרטיבית",
|
|
3520
|
+
"foundationalService": "שירות תשתית"
|
|
3520
3521
|
},
|
|
3521
3522
|
"incomplete": {
|
|
3522
3523
|
"title": "ייתכן שהרשימה הזו חלקית",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "צוינה אינטגרציה גנרטיבית שההתקנה הזו אינה רושמת: {ids}. הרשומה נשמרת כפי שהוצהרה; האינטגרציה נרשמת בקוד ההתקנה, לא במרחב העבודה הזה. | צוינו שתי אינטגרציות גנרטיביות שההתקנה הזו אינה רושמת: {ids}. הרשומות נשמרות כפי שהוצהרו; אינטגרציות נרשמות בקוד ההתקנה, לא במרחב העבודה הזה. | צוינו אינטגרציות גנרטיביות שההתקנה הזו אינה רושמת: {ids}. הרשומות נשמרות כפי שהוצהרו; אינטגרציות נרשמות בקוד ההתקנה, לא במרחב העבודה הזה.",
|
|
6691
6692
|
"generatorsUnverified": "לא ניתן היה לקרוא את האינטגרציות הגנרטיביות של הפריסה הזו בעת סיום השלב, ולכן האינטגרציות המצוינות למטה לא נבדקו מולן. הרשומות נשמרות כפי שהוצהרו."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "ולאחר מכן {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "לא רשומה",
|
|
6694
6696
|
"missizedBadge": "גודל שגוי",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "בהירות",
|
|
6777
6779
|
"architecture": "ארכיטקטורה",
|
|
6778
6780
|
"code-review": "סקירת קוד",
|
|
6781
|
+
"estimation": "אמדן",
|
|
6782
|
+
"answer-recommendation": "תשובות מומלצות",
|
|
6779
6783
|
"repo-feature": "פיצ׳ר במאגר",
|
|
6780
6784
|
"repo-bug": "באג במאגר"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "התוצר שלו הוא קומיט שנדחף, ולכן הערכה שלו דורשת הרצה אמיתית בקונטיינר מול מאגר זרע; תא מוטבע יכול להעריך טקסט בלבד.",
|
|
6788
|
+
"unknown": "סוכן זה אינו יכול לרוץ ב-Sandbox."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "מובנה",
|
|
6784
6792
|
"custom": "מותאם אישית"
|
package/i18n/locales/it.json
CHANGED
|
@@ -806,7 +806,8 @@
|
|
|
806
806
|
"noneDeclared": "Nessuna delle capacità registrate in questo deployment richiede credenziali.",
|
|
807
807
|
"subject": {
|
|
808
808
|
"toolServer": "Server di strumenti",
|
|
809
|
-
"binaryGenerator": "Integrazione generativa"
|
|
809
|
+
"binaryGenerator": "Integrazione generativa",
|
|
810
|
+
"foundationalService": "Servizio fondazionale"
|
|
810
811
|
},
|
|
811
812
|
"incomplete": {
|
|
812
813
|
"title": "Questo elenco potrebbe essere incompleto",
|
|
@@ -5398,6 +5399,7 @@
|
|
|
5398
5399
|
"unknownGenerators": "Ha indicato un'integrazione generativa che questa installazione non registra: {ids}. La voce viene mantenuta come dichiarata; l'integrazione si registra nel codice dell'installazione, non in questo spazio di lavoro. | Ha indicato integrazioni generative che questa installazione non registra: {ids}. Le loro voci vengono mantenute come dichiarate; le integrazioni si registrano nel codice dell'installazione, non in questo spazio di lavoro.",
|
|
5399
5400
|
"generatorsUnverified": "Non è stato possibile leggere le integrazioni generative di questa installazione alla chiusura del passaggio, quindi le integrazioni indicate sotto non sono state verificate. Le voci sono conservate come dichiarate."
|
|
5400
5401
|
},
|
|
5402
|
+
"processedBy": "poi {tool}",
|
|
5401
5403
|
"unknownGeneratorBadge": "Non registrata",
|
|
5402
5404
|
"missizedBadge": "Dimensione errata",
|
|
5403
5405
|
"candidates": {
|
|
@@ -7019,9 +7021,15 @@
|
|
|
7019
7021
|
"clarity": "chiarezza",
|
|
7020
7022
|
"architecture": "architettura",
|
|
7021
7023
|
"code-review": "revisione del codice",
|
|
7024
|
+
"estimation": "stima",
|
|
7025
|
+
"answer-recommendation": "risposte consigliate",
|
|
7022
7026
|
"repo-feature": "funzionalità del repository",
|
|
7023
7027
|
"repo-bug": "bug del repository"
|
|
7024
7028
|
},
|
|
7029
|
+
"unsupportedReason": {
|
|
7030
|
+
"container-run-required": "Il suo risultato è un commit inviato, quindi valutarlo richiede un’esecuzione reale in container su un repository seme; una cella inline può valutare solo testo.",
|
|
7031
|
+
"unknown": "Questo agente non può essere eseguito nella Sandbox."
|
|
7032
|
+
},
|
|
7025
7033
|
"fixtureOrigin": {
|
|
7026
7034
|
"builtin": "integrata",
|
|
7027
7035
|
"custom": "personalizzata"
|
package/i18n/locales/ja.json
CHANGED
|
@@ -3516,7 +3516,8 @@
|
|
|
3516
3516
|
"noneDeclared": "このデプロイに登録された機能で認証情報を要求するものはありません。",
|
|
3517
3517
|
"subject": {
|
|
3518
3518
|
"toolServer": "ツールサーバー",
|
|
3519
|
-
"binaryGenerator": "生成系インテグレーション"
|
|
3519
|
+
"binaryGenerator": "生成系インテグレーション",
|
|
3520
|
+
"foundationalService": "基盤サービス"
|
|
3520
3521
|
},
|
|
3521
3522
|
"incomplete": {
|
|
3522
3523
|
"title": "この一覧は不完全な可能性があります",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "このデプロイメントが登録していない生成統合が指定されました: {ids}。エントリは申告どおり保持されます。統合はこのワークスペースではなくデプロイメントのコードで登録します。",
|
|
6691
6692
|
"generatorsUnverified": "ステップの完了時にこのデプロイメントの生成系インテグレーションを読み取れなかったため、以下に記載されたインテグレーションは照合されていません。エントリは申告どおり保持されます。"
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "その後 {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "未登録",
|
|
6694
6696
|
"missizedBadge": "サイズ不一致",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "明確さ",
|
|
6777
6779
|
"architecture": "アーキテクチャ",
|
|
6778
6780
|
"code-review": "コードレビュー",
|
|
6781
|
+
"estimation": "見積もり",
|
|
6782
|
+
"answer-recommendation": "推奨回答",
|
|
6779
6783
|
"repo-feature": "リポジトリ機能",
|
|
6780
6784
|
"repo-bug": "リポジトリのバグ"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "成果物はプッシュされたコミットのため、評価にはシード用リポジトリに対する実際のコンテナ実行が必要です。インラインのセルはテキストしか評価できません。",
|
|
6788
|
+
"unknown": "このエージェントはサンドボックスでは実行できません。"
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "組み込み",
|
|
6784
6792
|
"custom": "カスタム"
|
package/i18n/locales/pl.json
CHANGED
|
@@ -3374,7 +3374,8 @@
|
|
|
3374
3374
|
"noneDeclared": "Żadna z zarejestrowanych funkcji tego wdrożenia nie prosi o poświadczenia.",
|
|
3375
3375
|
"subject": {
|
|
3376
3376
|
"toolServer": "Serwer narzędzi",
|
|
3377
|
-
"binaryGenerator": "Integracja generatywna"
|
|
3377
|
+
"binaryGenerator": "Integracja generatywna",
|
|
3378
|
+
"foundationalService": "Usługa fundamentalna"
|
|
3378
3379
|
},
|
|
3379
3380
|
"incomplete": {
|
|
3380
3381
|
"title": "Ta lista może być niepełna",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "Wskazano integrację generatywną, której ta instalacja nie rejestruje: {ids}. Wpis zostaje zachowany zgodnie z deklaracją; integrację rejestruje się w kodzie instalacji, a nie w tym obszarze roboczym. | Wskazano integracje generatywne, których ta instalacja nie rejestruje: {ids}. Ich wpisy zostają zachowane zgodnie z deklaracją; integracje rejestruje się w kodzie instalacji, a nie w tym obszarze roboczym. | Wskazano integracji generatywnych, których ta instalacja nie rejestruje: {ids}. Ich wpisy zostają zachowane zgodnie z deklaracją; integracje rejestruje się w kodzie instalacji, a nie w tym obszarze roboczym.",
|
|
6691
6692
|
"generatorsUnverified": "Nie udało się odczytać integracji generatywnych tego wdrożenia przy zamykaniu kroku, więc wymienione poniżej integracje nie zostały z nimi porównane. Wpisy są zachowane w takiej postaci, w jakiej je zgłoszono."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "następnie {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "Niezarejestrowana",
|
|
6694
6696
|
"missizedBadge": "Zły rozmiar",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "klarowność",
|
|
6777
6779
|
"architecture": "architektura",
|
|
6778
6780
|
"code-review": "przegląd kodu",
|
|
6781
|
+
"estimation": "szacowanie",
|
|
6782
|
+
"answer-recommendation": "rekomendowane odpowiedzi",
|
|
6779
6783
|
"repo-feature": "funkcja repozytorium",
|
|
6780
6784
|
"repo-bug": "błąd repozytorium"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "Jego wynikiem jest wypchnięty commit, więc ocena wymaga prawdziwego uruchomienia w kontenerze na repozytorium zalążkowym; komórka inline potrafi ocenić wyłącznie tekst.",
|
|
6788
|
+
"unknown": "Ten agent nie może działać w Sandboksie."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "wbudowany",
|
|
6784
6792
|
"custom": "niestandardowy"
|
package/i18n/locales/tr.json
CHANGED
|
@@ -3516,7 +3516,8 @@
|
|
|
3516
3516
|
"noneDeclared": "Bu kurulumda kayıtlı yeteneklerin hiçbiri kimlik bilgisi istemiyor.",
|
|
3517
3517
|
"subject": {
|
|
3518
3518
|
"toolServer": "Araç sunucusu",
|
|
3519
|
-
"binaryGenerator": "Üretken entegrasyon"
|
|
3519
|
+
"binaryGenerator": "Üretken entegrasyon",
|
|
3520
|
+
"foundationalService": "Temel servis"
|
|
3520
3521
|
},
|
|
3521
3522
|
"incomplete": {
|
|
3522
3523
|
"title": "Bu liste eksik olabilir",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "Bu kurulumun kaydetmediği bir üretken entegrasyon belirtildi: {ids}. Kayıt bildirildiği gibi korunur; entegrasyon bu çalışma alanında değil, kurulumun kodunda kaydedilir. | Bu kurulumun kaydetmediği üretken entegrasyonlar belirtildi: {ids}. Kayıtları bildirildiği gibi korunur; entegrasyonlar bu çalışma alanında değil, kurulumun kodunda kaydedilir.",
|
|
6691
6692
|
"generatorsUnverified": "Adım tamamlanırken bu dağıtımın üretken entegrasyonları okunamadı, bu yüzden aşağıda adı geçen entegrasyonlar bunlarla karşılaştırılmadı. Kayıtlar bildirildiği gibi saklanır."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "ardından {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "Kayıtlı değil",
|
|
6694
6696
|
"missizedBadge": "Yanlış boyut",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "netlik",
|
|
6777
6779
|
"architecture": "mimari",
|
|
6778
6780
|
"code-review": "kod incelemesi",
|
|
6781
|
+
"estimation": "tahmin",
|
|
6782
|
+
"answer-recommendation": "önerilen yanıtlar",
|
|
6779
6783
|
"repo-feature": "depo özelliği",
|
|
6780
6784
|
"repo-bug": "depo hatası"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "Çıktısı gönderilmiş bir commit olduğundan değerlendirilmesi, bir tohum deposu üzerinde gerçek bir konteyner çalıştırması gerektirir; satır içi hücre yalnızca metni değerlendirebilir.",
|
|
6788
|
+
"unknown": "Bu ajan Sandbox’ta çalıştırılamaz."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "yerleşik",
|
|
6784
6792
|
"custom": "özel"
|
package/i18n/locales/uk.json
CHANGED
|
@@ -3374,7 +3374,8 @@
|
|
|
3374
3374
|
"noneDeclared": "Жодна із зареєстрованих можливостей цього розгортання не запитує облікових даних.",
|
|
3375
3375
|
"subject": {
|
|
3376
3376
|
"toolServer": "Сервер інструментів",
|
|
3377
|
-
"binaryGenerator": "Генеративна інтеграція"
|
|
3377
|
+
"binaryGenerator": "Генеративна інтеграція",
|
|
3378
|
+
"foundationalService": "Базовий сервіс"
|
|
3378
3379
|
},
|
|
3379
3380
|
"incomplete": {
|
|
3380
3381
|
"title": "Цей список може бути неповним",
|
|
@@ -6690,6 +6691,7 @@
|
|
|
6690
6691
|
"unknownGenerators": "Названо генеративну інтеграцію, якої ця інсталяція не реєструє: {ids}. Запис збережено як заявлено; інтеграція реєструється в коді інсталяції, а не в цьому робочому просторі. | Названо генеративні інтеграції, яких ця інсталяція не реєструє: {ids}. Їхні записи збережено як заявлено; інтеграції реєструються в коді інсталяції, а не в цьому робочому просторі. | Названо генеративних інтеграцій, яких ця інсталяція не реєструє: {ids}. Їхні записи збережено як заявлено; інтеграції реєструються в коді інсталяції, а не в цьому робочому просторі.",
|
|
6691
6692
|
"generatorsUnverified": "Під час завершення кроку не вдалося прочитати генеративні інтеграції цього розгортання, тому названі нижче інтеграції не було з ними звірено. Записи збережено так, як їх заявлено."
|
|
6692
6693
|
},
|
|
6694
|
+
"processedBy": "потім {tool}",
|
|
6693
6695
|
"unknownGeneratorBadge": "Не зареєстровано",
|
|
6694
6696
|
"missizedBadge": "Неправильний розмір",
|
|
6695
6697
|
"candidates": {
|
|
@@ -6776,9 +6778,15 @@
|
|
|
6776
6778
|
"clarity": "ясність",
|
|
6777
6779
|
"architecture": "архітектура",
|
|
6778
6780
|
"code-review": "огляд коду",
|
|
6781
|
+
"estimation": "оцінювання",
|
|
6782
|
+
"answer-recommendation": "рекомендовані відповіді",
|
|
6779
6783
|
"repo-feature": "функція репозиторію",
|
|
6780
6784
|
"repo-bug": "помилка репозиторію"
|
|
6781
6785
|
},
|
|
6786
|
+
"unsupportedReason": {
|
|
6787
|
+
"container-run-required": "Його результатом є надісланий коміт, тож оцінювання потребує справжнього запуску в контейнері на репозиторії-заготовці; вбудована комірка може оцінювати лише текст.",
|
|
6788
|
+
"unknown": "Цей агент не може працювати в Sandbox."
|
|
6789
|
+
},
|
|
6782
6790
|
"fixtureOrigin": {
|
|
6783
6791
|
"builtin": "вбудована",
|
|
6784
6792
|
"custom": "користувацька"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.280.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",
|
|
@@ -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.
|
|
43
|
+
"@cat-factory/contracts": "0.320.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|