mustflow 1.30.0 → 2.11.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/README.md +35 -11
- package/dist/cli/commands/classify.js +61 -6
- package/dist/cli/commands/contract-lint.js +13 -4
- package/dist/cli/commands/dashboard.js +6 -0
- package/dist/cli/commands/index.js +5 -0
- package/dist/cli/commands/run.js +224 -48
- package/dist/cli/commands/upgrade.js +65 -0
- package/dist/cli/commands/verify.js +550 -33
- package/dist/cli/i18n/en.js +73 -10
- package/dist/cli/i18n/es.js +73 -10
- package/dist/cli/i18n/fr.js +73 -10
- package/dist/cli/i18n/hi.js +73 -10
- package/dist/cli/i18n/ko.js +73 -10
- package/dist/cli/i18n/zh.js +73 -10
- package/dist/cli/index.js +27 -46
- package/dist/cli/lib/command-registry.js +5 -0
- package/dist/cli/lib/dashboard-export.js +62 -12
- package/dist/cli/lib/dashboard-html/client-script.js +1936 -0
- package/dist/cli/lib/dashboard-html/locale-bootstrap.js +8 -0
- package/dist/cli/lib/dashboard-html/styles.js +572 -0
- package/dist/cli/lib/dashboard-html/template.js +134 -0
- package/dist/cli/lib/dashboard-html/types.js +1 -0
- package/dist/cli/lib/dashboard-html.js +1 -1907
- package/dist/cli/lib/dashboard-locale.js +37 -0
- package/dist/cli/lib/local-index/constants.js +48 -0
- package/dist/cli/lib/local-index/index.js +2256 -0
- package/dist/cli/lib/local-index/sql.js +15 -0
- package/dist/cli/lib/local-index/types.js +1 -0
- package/dist/cli/lib/local-index.js +1 -1908
- package/dist/cli/lib/reporter.js +6 -0
- package/dist/cli/lib/run-plan.js +96 -4
- package/dist/cli/lib/templates.js +18 -1
- package/dist/cli/lib/validation/command-intents.js +11 -0
- package/dist/cli/lib/validation/constants.js +238 -0
- package/dist/cli/lib/validation/index.js +1384 -0
- package/dist/cli/lib/validation/primitives.js +198 -0
- package/dist/cli/lib/validation/test-selection.js +95 -0
- package/dist/cli/lib/validation/types.js +1 -0
- package/dist/cli/lib/validation.js +1 -1661
- package/dist/core/bounded-output.js +38 -0
- package/dist/core/change-classification.js +6 -2
- package/dist/core/change-verification.js +240 -6
- package/dist/core/check-issues.js +12 -0
- package/dist/core/command-contract-validation.js +20 -0
- package/dist/core/command-effects.js +13 -0
- package/dist/core/completion-verdict.js +209 -0
- package/dist/core/contract-lint.js +316 -7
- package/dist/core/dashboard-verification.js +8 -0
- package/dist/core/external-evidence.js +9 -0
- package/dist/core/public-json-contracts.js +28 -0
- package/dist/core/repeated-failure.js +17 -0
- package/dist/core/repro-evidence.js +53 -0
- package/dist/core/run-performance-history.js +307 -0
- package/dist/core/run-profile.js +87 -0
- package/dist/core/run-receipt.js +171 -4
- package/dist/core/run-write-drift.js +18 -2
- package/dist/core/scope-risk.js +64 -0
- package/dist/core/skill-route-alignment.js +110 -0
- package/dist/core/source-anchor-status.js +4 -1
- package/dist/core/test-selection.js +227 -0
- package/dist/core/validation-ratchet.js +52 -0
- package/dist/core/verification-decision-graph.js +67 -0
- package/dist/core/verification-evidence.js +249 -0
- package/dist/core/verification-scheduler.js +96 -2
- package/examples/README.md +12 -4
- package/package.json +1 -1
- package/schemas/README.md +18 -4
- package/schemas/change-verification-report.schema.json +169 -5
- package/schemas/commands.schema.json +51 -1
- package/schemas/contract-lint-report.schema.json +80 -0
- package/schemas/dashboard-export.schema.json +500 -0
- package/schemas/explain-report.schema.json +2 -0
- package/schemas/latest-run-pointer.schema.json +384 -0
- package/schemas/run-receipt.schema.json +113 -0
- package/schemas/test-selection.schema.json +81 -0
- package/schemas/verify-report.schema.json +361 -1
- package/schemas/verify-run-manifest.schema.json +410 -0
- package/templates/default/common/.mustflow/config/commands.toml +1 -1
- package/templates/default/i18n.toml +1 -1
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +124 -29
- package/templates/default/locales/en/.mustflow/skills/routes.toml +289 -0
- package/templates/default/manifest.toml +29 -2
package/dist/cli/i18n/en.js
CHANGED
|
@@ -27,6 +27,7 @@ export const enMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "Lint the command contract",
|
|
28
28
|
"command.status.summary": "Show local mustflow install status",
|
|
29
29
|
"command.update.summary": "Preview or apply mustflow workflow updates",
|
|
30
|
+
"command.upgrade.summary": "Check the package version and safely update installed workflow files",
|
|
30
31
|
"command.map.summary": "Generate REPO_MAP.md",
|
|
31
32
|
"command.lineEndings.summary": "Inspect and normalize line-ending policy",
|
|
32
33
|
"command.run.summary": "Run a configured oneshot command",
|
|
@@ -55,6 +56,7 @@ export const enMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "mustflow strict check passed",
|
|
56
57
|
"contractLint.help.summary": "Inspect .mustflow/config/commands.toml for command-contract errors and warnings.",
|
|
57
58
|
"contractLint.help.option.coverage": "Also report required_after coverage for change-classification reasons",
|
|
59
|
+
"contractLint.help.option.suggest": "Suggest non-runnable intent snippets from package.json, Makefile, or justfile",
|
|
58
60
|
"contractLint.help.exit.ok": "The command contract was inspected without blocking errors",
|
|
59
61
|
"contractLint.help.exit.fail": "Command-contract errors were found or input was invalid",
|
|
60
62
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -72,6 +74,7 @@ export const enMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "required_after reasons",
|
|
73
75
|
"contractLint.label.runnableReasons": "Runnable reasons",
|
|
74
76
|
"contractLint.label.coverageFindings": "Coverage findings",
|
|
77
|
+
"contractLint.label.suggestions": "Suggestions",
|
|
75
78
|
"contractLint.label.issues": "Issues",
|
|
76
79
|
"context.help.summary": "Print the agent context for the current mustflow root.",
|
|
77
80
|
"context.help.option.json": "Print machine-readable context JSON",
|
|
@@ -148,12 +151,28 @@ export const enMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "Unsaved changes",
|
|
149
152
|
"dashboard.ui.reloaded": "Reloaded",
|
|
150
153
|
"dashboard.ui.saved": "Saved",
|
|
154
|
+
"dashboard.ui.loading": "Loading",
|
|
155
|
+
"dashboard.ui.lastUpdated": "Last updated: {time}",
|
|
156
|
+
"dashboard.ui.copied": "Copied",
|
|
151
157
|
"dashboard.ui.reload": "Reload",
|
|
152
158
|
"dashboard.ui.save": "Save",
|
|
153
159
|
"dashboard.ui.locked": "Locked",
|
|
154
160
|
"dashboard.ui.customLocale": "Custom language tag",
|
|
155
161
|
"dashboard.ui.openMustflow": "Open .mustflow folder",
|
|
156
162
|
"dashboard.ui.openedMustflow": ".mustflow folder opened",
|
|
163
|
+
"dashboard.settings.pendingHeading": "Unsaved settings ({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "Reset changes",
|
|
166
|
+
"dashboard.filter.search": "Search",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "name, path, command, or reason",
|
|
168
|
+
"dashboard.filter.state": "State",
|
|
169
|
+
"dashboard.filter.all": "All",
|
|
170
|
+
"dashboard.filter.runnable": "Runnable",
|
|
171
|
+
"dashboard.filter.unavailable": "Unavailable",
|
|
172
|
+
"dashboard.filter.aligned": "Aligned",
|
|
173
|
+
"dashboard.filter.mismatch": "Mismatch",
|
|
174
|
+
"dashboard.filter.missing": "Missing",
|
|
175
|
+
"dashboard.filter.noMatches": "No matching items.",
|
|
157
176
|
"dashboard.tab.status": "Status",
|
|
158
177
|
"dashboard.tab.verification": "Verification",
|
|
159
178
|
"dashboard.tab.commands": "Commands",
|
|
@@ -163,6 +182,24 @@ export const enMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "Skills",
|
|
164
183
|
"dashboard.tab.settings": "Settings",
|
|
165
184
|
"dashboard.tab.documents": "Documents",
|
|
185
|
+
"dashboard.actions.heading": "Next actions",
|
|
186
|
+
"dashboard.actions.empty": "No actions.",
|
|
187
|
+
"dashboard.actions.missingFiles": "Missing files: {count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "Issues: {count}",
|
|
189
|
+
"dashboard.actions.verification": "Verification recommendations: {count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "Update blockers: {count}",
|
|
191
|
+
"dashboard.actions.documents": "Documents needing review: {count}",
|
|
192
|
+
"dashboard.actions.latestRun": "Latest run needs attention",
|
|
193
|
+
"dashboard.actions.openStatus": "Open status",
|
|
194
|
+
"dashboard.actions.openVerification": "Open verification",
|
|
195
|
+
"dashboard.actions.openUpdate": "Open update",
|
|
196
|
+
"dashboard.actions.openDocuments": "Open documents",
|
|
197
|
+
"dashboard.actions.openRuns": "Open runs",
|
|
198
|
+
"dashboard.a11y.state.ok": "OK",
|
|
199
|
+
"dashboard.a11y.state.warn": "Needs attention",
|
|
200
|
+
"dashboard.a11y.state.neutral": "Status",
|
|
201
|
+
"dashboard.a11y.copyCommand": "Copy command: {command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "Copy verification plan",
|
|
166
203
|
"dashboard.status.reloaded": "Status reloaded",
|
|
167
204
|
"dashboard.status.overview": "Overview",
|
|
168
205
|
"dashboard.status.installed": "Installed",
|
|
@@ -321,6 +358,8 @@ export const enMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "Reviewer kind",
|
|
322
359
|
"dashboard.docs.reviewerId": "Reviewer ID",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "human, LLM, or tool ID",
|
|
361
|
+
"dashboard.docs.reviewerState": "Reviewing as {kind}: {id}",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "Enter a reviewer ID before using review actions.",
|
|
324
363
|
"dashboard.docs.summary": "Review summary",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "optional",
|
|
326
365
|
"dashboard.docs.comment": "Comment",
|
|
@@ -349,6 +388,7 @@ export const enMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "Mark this document as needing another review by a human, LLM, tool, or external process.",
|
|
350
389
|
"dashboard.docs.action.ignore": "Ignore",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "Skip review for this document and hide it from the default list.",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "Already {status}",
|
|
352
392
|
"dashboard.locked.git.auto_push": "Remote pushes require an explicit request.",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "Commit message",
|
|
@@ -524,7 +564,7 @@ Read these files before working:
|
|
|
524
564
|
"init.help.option.interactive": "Choose init settings from prompts",
|
|
525
565
|
"init.help.option.merge": "Merge a mustflow managed block into an existing AGENTS.md",
|
|
526
566
|
"init.help.option.force": "Back up conflicting files and overwrite them",
|
|
527
|
-
"init.help.option.profile": "Set project profile: minimal, oss, team, product, or library",
|
|
567
|
+
"init.help.option.profile": "Set project profile: minimal, patterns, oss, team, product, or library",
|
|
528
568
|
"init.help.option.locale": "Set installed mustflow document locale",
|
|
529
569
|
"init.help.option.agentLang": "Set the preferred agent response language",
|
|
530
570
|
"init.help.option.set": "Set a safe preference value such as git.auto_commit=true or git.auto_push=false",
|
|
@@ -611,6 +651,7 @@ Read these files before working:
|
|
|
611
651
|
"run.help.option.json": "Print the run record or command plan as JSON",
|
|
612
652
|
"run.help.exit.ok": "The command completed with an allowed exit code",
|
|
613
653
|
"run.help.exit.fail": "The command was invalid, refused, timed out, or failed",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "Suggested command contract snippet",
|
|
614
655
|
"run.error.missingIntent": "Missing command name",
|
|
615
656
|
"run.error.unknownIntent": "Unknown command: {intent}",
|
|
616
657
|
"run.error.statusNotConfigured": 'Command "{intent}" is {status}; only configured commands can be run',
|
|
@@ -658,8 +699,20 @@ Read these files before working:
|
|
|
658
699
|
"version.check.upToDate": "latest {version}; already up to date",
|
|
659
700
|
"version.check.updateCommand": "Update command:",
|
|
660
701
|
"version.error.checkFailed": "Could not check npm for a newer version: {message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "Check whether the installed mustflow package is current, then safely apply bundled workflow template updates when possible.",
|
|
703
|
+
"upgrade.help.option.dryRun": "Check package status and print the project update plan without writing files",
|
|
704
|
+
"upgrade.help.exit.ok": "The package was current and the project update check completed",
|
|
705
|
+
"upgrade.help.exit.fail": "A package update is required, a project update blocker was found, or input was invalid",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "Package:",
|
|
708
|
+
"upgrade.projectSection": "Project template:",
|
|
709
|
+
"upgrade.packageUpdateRequired": "Update the mustflow package first, then run `mf upgrade` again.",
|
|
710
|
+
"upgrade.noFilesWritten": "No project files were written.",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "Could not check npm for a newer version: {message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "Continuing with the bundled template in the current CLI.",
|
|
713
|
+
"classify.help.summary": "Classify changed paths, public surfaces, and required validation reasons.",
|
|
662
714
|
"classify.help.option.changed": "Read paths from git status --short --untracked-files=all",
|
|
715
|
+
"classify.help.option.write": "Write the classification report to a JSON file inside this repository",
|
|
663
716
|
"classify.help.exit.ok": "Change classification was inspected and printed",
|
|
664
717
|
"classify.title": "mustflow classify",
|
|
665
718
|
"classify.label.source": "Source",
|
|
@@ -674,6 +727,7 @@ Read these files before working:
|
|
|
674
727
|
"classify.source.changed": "changed files",
|
|
675
728
|
"classify.source.paths": "explicit paths",
|
|
676
729
|
"classify.error.missingInput": "Specify --changed or at least one path",
|
|
730
|
+
"classify.error.write_path_outside_root": "Classification report path must stay inside the mustflow root",
|
|
677
731
|
"impact.help.summary": "Report whether changed paths require a package or template version decision without modifying files.",
|
|
678
732
|
"impact.help.option.changed": "Read paths from git status --short --untracked-files=all",
|
|
679
733
|
"impact.help.exit.ok": "Version impact was inspected and printed",
|
|
@@ -689,9 +743,12 @@ Read these files before working:
|
|
|
689
743
|
"impact.error.missingInput": "Specify --changed or at least one path",
|
|
690
744
|
"verify.help.summary": "Run configured verification intents selected by required_after metadata.",
|
|
691
745
|
"verify.help.option.reason": "Select the required_after reason to verify",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "Read verification reasons from an mf classify report inside this repository",
|
|
747
|
+
"verify.help.option.fromPlan": "Compatibility alias for --from-classification",
|
|
693
748
|
"verify.help.option.changed": "Classify current Git changes and verify the matching reasons",
|
|
694
|
-
"verify.help.option.writePlan": "
|
|
749
|
+
"verify.help.option.writePlan": "Compatibility option that writes the changed-file classification report",
|
|
750
|
+
"verify.help.option.reproEvidence": "Read structured bug-fix reproduction evidence from a repository-local JSON summary",
|
|
751
|
+
"verify.help.option.externalEvidence": "Read lower-authority external CI evidence from a repository-local JSON summary",
|
|
695
752
|
"verify.help.option.planOnly": "Print the verification plan without running commands; requires --json",
|
|
696
753
|
"verify.help.exit.ok": "All selected verification intents passed",
|
|
697
754
|
"verify.help.exit.fail": "Verification failed, was partial, was blocked, or input was invalid",
|
|
@@ -701,14 +758,20 @@ Read these files before working:
|
|
|
701
758
|
"verify.label.status": "Status",
|
|
702
759
|
"verify.label.results": "Results",
|
|
703
760
|
"verify.error.missingReason": "Missing verification reason",
|
|
704
|
-
"verify.error.conflictingInputs": "Use only one of --reason, --from-plan, or --changed",
|
|
761
|
+
"verify.error.conflictingInputs": "Use only one of --reason, --from-classification, --from-plan, or --changed",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan requires --changed",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only requires --json",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence cannot be used with --plan-only",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence cannot be used with --plan-only",
|
|
766
|
+
"verify.error.invalid_plan_file": "Classification report must be a readable JSON file",
|
|
767
|
+
"verify.error.unsupported_plan_source": "Verification input must be an mf classify report",
|
|
768
|
+
"verify.error.plan_root_mismatch": "Classification report must come from this mustflow root",
|
|
769
|
+
"verify.error.missing_plan_reasons": "Classification report must include summary.validationReasons",
|
|
770
|
+
"verify.error.plan_path_outside_root": "Classification report path must stay inside the mustflow root",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "Repro evidence must be a readable JSON summary with structured evidence fields",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "Repro evidence input must use command repro-evidence",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "External evidence must be a readable JSON summary with checks",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "External evidence input must use command external-evidence",
|
|
712
775
|
"explain.help.summary": "Explain why a mustflow policy decision applies without modifying files.",
|
|
713
776
|
"explain.help.exit.ok": "The policy decision was inspected and printed",
|
|
714
777
|
"explain.title": "mustflow explain",
|
package/dist/cli/i18n/es.js
CHANGED
|
@@ -27,6 +27,7 @@ export const esMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "Revisa el contrato de comandos",
|
|
28
28
|
"command.status.summary": "Muestra el estado de la instalación local de mustflow",
|
|
29
29
|
"command.update.summary": "Previsualiza o aplica actualizaciones del flujo de trabajo mustflow",
|
|
30
|
+
"command.upgrade.summary": "Comprueba la versión del paquete y actualiza con seguridad los archivos de flujo instalados",
|
|
30
31
|
"command.map.summary": "Genera REPO_MAP.md",
|
|
31
32
|
"command.lineEndings.summary": "Inspecciona y normaliza la política de finales de línea",
|
|
32
33
|
"command.run.summary": "Ejecuta un comando configurado de una sola ejecución",
|
|
@@ -55,6 +56,7 @@ export const esMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "comprobacion estricta de mustflow superada",
|
|
56
57
|
"contractLint.help.summary": "Inspecciona .mustflow/config/commands.toml para encontrar errores y advertencias del contrato de comandos.",
|
|
57
58
|
"contractLint.help.option.coverage": "También informa cobertura required_after para razones de clasificación de cambios",
|
|
59
|
+
"contractLint.help.option.suggest": "Sugiere fragmentos de intent no ejecutables desde package.json, Makefile o justfile",
|
|
58
60
|
"contractLint.help.exit.ok": "El contrato de comandos se inspeccionó sin errores bloqueantes",
|
|
59
61
|
"contractLint.help.exit.fail": "Se encontraron errores del contrato de comandos o la entrada no es válida",
|
|
60
62
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -72,6 +74,7 @@ export const esMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "Razones required_after",
|
|
73
75
|
"contractLint.label.runnableReasons": "Razones ejecutables",
|
|
74
76
|
"contractLint.label.coverageFindings": "Hallazgos de cobertura",
|
|
77
|
+
"contractLint.label.suggestions": "Sugerencias",
|
|
75
78
|
"contractLint.label.issues": "Problemas",
|
|
76
79
|
"context.help.summary": "Imprime el contexto de agente para la raíz mustflow actual.",
|
|
77
80
|
"context.help.option.json": "Imprime JSON de contexto legible por máquinas",
|
|
@@ -148,12 +151,28 @@ export const esMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "Cambios sin guardar",
|
|
149
152
|
"dashboard.ui.reloaded": "Recargado",
|
|
150
153
|
"dashboard.ui.saved": "Guardado",
|
|
154
|
+
"dashboard.ui.loading": "Cargando",
|
|
155
|
+
"dashboard.ui.lastUpdated": "Última actualización: {time}",
|
|
156
|
+
"dashboard.ui.copied": "Copiado",
|
|
151
157
|
"dashboard.ui.reload": "Recargar",
|
|
152
158
|
"dashboard.ui.save": "Guardar",
|
|
153
159
|
"dashboard.ui.locked": "Bloqueado",
|
|
154
160
|
"dashboard.ui.customLocale": "Etiqueta de idioma personalizada",
|
|
155
161
|
"dashboard.ui.openMustflow": "Abrir carpeta .mustflow",
|
|
156
162
|
"dashboard.ui.openedMustflow": "Carpeta .mustflow abierta",
|
|
163
|
+
"dashboard.settings.pendingHeading": "Ajustes sin guardar ({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "Restablecer cambios",
|
|
166
|
+
"dashboard.filter.search": "Buscar",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "nombre, ruta, comando o motivo",
|
|
168
|
+
"dashboard.filter.state": "Estado",
|
|
169
|
+
"dashboard.filter.all": "Todos",
|
|
170
|
+
"dashboard.filter.runnable": "Ejecutable",
|
|
171
|
+
"dashboard.filter.unavailable": "No disponible",
|
|
172
|
+
"dashboard.filter.aligned": "Alineado",
|
|
173
|
+
"dashboard.filter.mismatch": "No coincide",
|
|
174
|
+
"dashboard.filter.missing": "Falta",
|
|
175
|
+
"dashboard.filter.noMatches": "No hay elementos coincidentes.",
|
|
157
176
|
"dashboard.tab.status": "Estado",
|
|
158
177
|
"dashboard.tab.verification": "Verificación",
|
|
159
178
|
"dashboard.tab.commands": "Comandos",
|
|
@@ -163,6 +182,24 @@ export const esMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "Skills",
|
|
164
183
|
"dashboard.tab.settings": "Configuración",
|
|
165
184
|
"dashboard.tab.documents": "Revisión de documentos",
|
|
185
|
+
"dashboard.actions.heading": "Siguientes acciones",
|
|
186
|
+
"dashboard.actions.empty": "No hay acciones.",
|
|
187
|
+
"dashboard.actions.missingFiles": "Archivos faltantes: {count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "Problemas: {count}",
|
|
189
|
+
"dashboard.actions.verification": "Recomendaciones de verificación: {count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "Bloqueos de actualización: {count}",
|
|
191
|
+
"dashboard.actions.documents": "Documentos por revisar: {count}",
|
|
192
|
+
"dashboard.actions.latestRun": "Revisar la última ejecución",
|
|
193
|
+
"dashboard.actions.openStatus": "Abrir estado",
|
|
194
|
+
"dashboard.actions.openVerification": "Abrir verificación",
|
|
195
|
+
"dashboard.actions.openUpdate": "Abrir actualización",
|
|
196
|
+
"dashboard.actions.openDocuments": "Abrir documentos",
|
|
197
|
+
"dashboard.actions.openRuns": "Abrir ejecuciones",
|
|
198
|
+
"dashboard.a11y.state.ok": "Correcto",
|
|
199
|
+
"dashboard.a11y.state.warn": "Requiere atención",
|
|
200
|
+
"dashboard.a11y.state.neutral": "Estado",
|
|
201
|
+
"dashboard.a11y.copyCommand": "Copiar comando: {command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "Copiar plan de verificación",
|
|
166
203
|
"dashboard.status.reloaded": "Estado recargado",
|
|
167
204
|
"dashboard.status.overview": "Resumen",
|
|
168
205
|
"dashboard.status.installed": "Instalado",
|
|
@@ -321,6 +358,8 @@ export const esMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "Tipo de revisor",
|
|
322
359
|
"dashboard.docs.reviewerId": "ID de revisor",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "persona, LLM o herramienta",
|
|
361
|
+
"dashboard.docs.reviewerState": "Revisando como {kind}: {id}",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "Introduce un ID de revisor antes de usar acciones de revisión.",
|
|
324
363
|
"dashboard.docs.summary": "Resumen de revisión",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "opcional",
|
|
326
365
|
"dashboard.docs.comment": "Comentario",
|
|
@@ -349,6 +388,7 @@ export const esMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "Marca este documento para otra revisión por una persona, LLM, herramienta o proceso externo.",
|
|
350
389
|
"dashboard.docs.action.ignore": "Ignorar",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "Omite la revisión de este documento y lo oculta de la lista predeterminada.",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "Ya está en estado {status}",
|
|
352
392
|
"dashboard.locked.git.auto_push": "Los push remotos requieren una solicitud explícita.",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "Mensaje de commit",
|
|
@@ -524,7 +564,7 @@ Lee estos archivos antes de trabajar:
|
|
|
524
564
|
"init.help.option.interactive": "Elige ajustes de inicio mediante preguntas",
|
|
525
565
|
"init.help.option.merge": "Fusiona un bloque administrado por mustflow en un AGENTS.md existente",
|
|
526
566
|
"init.help.option.force": "Respalda los archivos en conflicto y los sobrescribe",
|
|
527
|
-
"init.help.option.profile": "Define el perfil del proyecto: minimal, oss, team, product o library",
|
|
567
|
+
"init.help.option.profile": "Define el perfil del proyecto: minimal, patterns, oss, team, product o library",
|
|
528
568
|
"init.help.option.locale": "Define el idioma de los documentos mustflow instalados",
|
|
529
569
|
"init.help.option.agentLang": "Define el idioma preferido para las respuestas del agente",
|
|
530
570
|
"init.help.option.set": "Define una preferencia segura como git.auto_commit=true o git.auto_push=false",
|
|
@@ -611,6 +651,7 @@ Lee estos archivos antes de trabajar:
|
|
|
611
651
|
"run.help.option.json": "Imprime el registro de ejecución o el plan de comando como JSON",
|
|
612
652
|
"run.help.exit.ok": "El comando se completo con un codigo de salida permitido",
|
|
613
653
|
"run.help.exit.fail": "El comando no era válido, fue rechazado, agotó el tiempo o falló",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "Snippet sugerido para el contrato de comandos",
|
|
614
655
|
"run.error.missingIntent": "Falta el nombre del comando",
|
|
615
656
|
"run.error.unknownIntent": "Comando desconocido: {intent}",
|
|
616
657
|
"run.error.statusNotConfigured": 'El comando "{intent}" está en estado {status}; sólo se pueden ejecutar comandos configurados',
|
|
@@ -658,8 +699,20 @@ Lee estos archivos antes de trabajar:
|
|
|
658
699
|
"version.check.upToDate": "última versión {version}; ya está actualizado",
|
|
659
700
|
"version.check.updateCommand": "Comando de actualización:",
|
|
660
701
|
"version.error.checkFailed": "No se pudo consultar npm para una versión nueva: {message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "Comprueba si el paquete mustflow instalado está actualizado y luego aplica de forma segura las actualizaciones de la plantilla incluida cuando sea posible.",
|
|
703
|
+
"upgrade.help.option.dryRun": "Comprueba el estado del paquete e imprime el plan de actualización del proyecto sin escribir archivos",
|
|
704
|
+
"upgrade.help.exit.ok": "El paquete estaba actualizado y la comprobación de actualización del proyecto terminó",
|
|
705
|
+
"upgrade.help.exit.fail": "Hace falta actualizar el paquete, hay un bloqueo de actualización del proyecto o la entrada es inválida",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "Paquete:",
|
|
708
|
+
"upgrade.projectSection": "Plantilla del proyecto:",
|
|
709
|
+
"upgrade.packageUpdateRequired": "Actualiza primero el paquete mustflow y luego vuelve a ejecutar `mf upgrade`.",
|
|
710
|
+
"upgrade.noFilesWritten": "No se escribieron archivos del proyecto.",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "No se pudo consultar npm para una versión nueva: {message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "Continuando con la plantilla incluida en el CLI actual.",
|
|
713
|
+
"classify.help.summary": "Clasifica rutas cambiadas, superficies publicas y razones de verificacion.",
|
|
662
714
|
"classify.help.option.changed": "Lee rutas desde git status --short --untracked-files=all",
|
|
715
|
+
"classify.help.option.write": "Escribe el informe de clasificacion en un archivo JSON dentro de este repositorio",
|
|
663
716
|
"classify.help.exit.ok": "La clasificacion de cambios fue inspeccionada e impresa",
|
|
664
717
|
"classify.title": "mustflow classify",
|
|
665
718
|
"classify.label.source": "Origen",
|
|
@@ -674,6 +727,7 @@ Lee estos archivos antes de trabajar:
|
|
|
674
727
|
"classify.source.changed": "archivos cambiados",
|
|
675
728
|
"classify.source.paths": "rutas explicitas",
|
|
676
729
|
"classify.error.missingInput": "Indica --changed o al menos una ruta",
|
|
730
|
+
"classify.error.write_path_outside_root": "La ruta del informe de clasificacion debe permanecer dentro de la raiz mustflow",
|
|
677
731
|
"impact.help.summary": "Informa si las rutas cambiadas requieren una decision de version de paquete o plantilla sin modificar archivos.",
|
|
678
732
|
"impact.help.option.changed": "Lee rutas desde git status --short --untracked-files=all",
|
|
679
733
|
"impact.help.exit.ok": "El impacto de version fue inspeccionado e impreso",
|
|
@@ -689,9 +743,12 @@ Lee estos archivos antes de trabajar:
|
|
|
689
743
|
"impact.error.missingInput": "Indica --changed o al menos una ruta",
|
|
690
744
|
"verify.help.summary": "Ejecuta intenciones de verificación configuradas seleccionadas por metadatos required_after.",
|
|
691
745
|
"verify.help.option.reason": "Selecciona la razón required_after que se debe verificar",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "Lee razones de verificación desde un informe de mf classify dentro de este repositorio",
|
|
747
|
+
"verify.help.option.fromPlan": "Alias de compatibilidad para --from-classification",
|
|
693
748
|
"verify.help.option.changed": "Clasifica los cambios actuales de Git y verifica las razones correspondientes",
|
|
694
|
-
"verify.help.option.writePlan": "
|
|
749
|
+
"verify.help.option.writePlan": "Opción de compatibilidad que escribe el informe de clasificación de cambios",
|
|
750
|
+
"verify.help.option.reproEvidence": "Lee evidencia estructurada de reproducción de errores desde un resumen JSON local del repositorio",
|
|
751
|
+
"verify.help.option.externalEvidence": "Lee evidencia de CI externa de menor autoridad desde un resumen JSON local del repositorio",
|
|
695
752
|
"verify.help.option.planOnly": "Imprime el plan de verificación sin ejecutar comandos; requiere --json",
|
|
696
753
|
"verify.help.exit.ok": "Todas las intenciones de verificación seleccionadas pasaron",
|
|
697
754
|
"verify.help.exit.fail": "La verificación falló, fue parcial, quedó bloqueada o la entrada no fue válida",
|
|
@@ -701,14 +758,20 @@ Lee estos archivos antes de trabajar:
|
|
|
701
758
|
"verify.label.status": "Estado",
|
|
702
759
|
"verify.label.results": "Resultados",
|
|
703
760
|
"verify.error.missingReason": "Falta la razón de verificación",
|
|
704
|
-
"verify.error.conflictingInputs": "Usa solo uno de --reason, --from-plan o --changed",
|
|
761
|
+
"verify.error.conflictingInputs": "Usa solo uno de --reason, --from-classification, --from-plan o --changed",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan requiere --changed",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only requiere --json",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence no se puede usar con --plan-only",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence no se puede usar con --plan-only",
|
|
766
|
+
"verify.error.invalid_plan_file": "El informe de clasificación debe ser un archivo JSON legible",
|
|
767
|
+
"verify.error.unsupported_plan_source": "La entrada de verificación debe ser un informe de mf classify",
|
|
768
|
+
"verify.error.plan_root_mismatch": "El informe de clasificación debe provenir de esta raíz mustflow",
|
|
769
|
+
"verify.error.missing_plan_reasons": "El informe de clasificación debe incluir summary.validationReasons",
|
|
770
|
+
"verify.error.plan_path_outside_root": "La ruta del informe de clasificación debe permanecer dentro de la raíz mustflow",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "La evidencia de reproducción debe ser un resumen JSON legible con campos de evidencia estructurados",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "La entrada de evidencia de reproducción debe usar command repro-evidence",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "La evidencia externa debe ser un resumen JSON legible con checks",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "La entrada de evidencia externa debe usar command external-evidence",
|
|
712
775
|
"explain.help.summary": "Explica por qué se aplica una decisión de política de mustflow sin modificar archivos.",
|
|
713
776
|
"explain.help.exit.ok": "La decisión de política se inspeccionó e imprimió",
|
|
714
777
|
"explain.title": "explicación mustflow",
|
package/dist/cli/i18n/fr.js
CHANGED
|
@@ -27,6 +27,7 @@ export const frMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "Vérifie le contrat de commandes",
|
|
28
28
|
"command.status.summary": "Affiche l'état de l'installation locale de mustflow",
|
|
29
29
|
"command.update.summary": "Prévisualise ou applique les mises à jour du flux de travail mustflow",
|
|
30
|
+
"command.upgrade.summary": "Vérifie la version du paquet et met à jour en sécurité les fichiers de workflow installés",
|
|
30
31
|
"command.map.summary": "Génère REPO_MAP.md",
|
|
31
32
|
"command.lineEndings.summary": "Inspecte et normalise la politique de fins de ligne",
|
|
32
33
|
"command.run.summary": "Exécute une commande configurée à exécution unique",
|
|
@@ -55,6 +56,7 @@ export const frMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "vérification stricte mustflow réussie",
|
|
56
57
|
"contractLint.help.summary": "Inspecte .mustflow/config/commands.toml pour trouver les erreurs et avertissements du contrat de commandes.",
|
|
57
58
|
"contractLint.help.option.coverage": "Signale aussi la couverture required_after des raisons de classification",
|
|
59
|
+
"contractLint.help.option.suggest": "Suggère des fragments d'intent non exécutables depuis package.json, Makefile ou justfile",
|
|
58
60
|
"contractLint.help.exit.ok": "Le contrat de commandes a été inspecté sans erreur bloquante",
|
|
59
61
|
"contractLint.help.exit.fail": "Des erreurs de contrat de commandes ont été trouvées ou l'entrée est invalide",
|
|
60
62
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -72,6 +74,7 @@ export const frMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "Raisons required_after",
|
|
73
75
|
"contractLint.label.runnableReasons": "Raisons exécutables",
|
|
74
76
|
"contractLint.label.coverageFindings": "Constats de couverture",
|
|
77
|
+
"contractLint.label.suggestions": "Suggestions",
|
|
75
78
|
"contractLint.label.issues": "Problèmes",
|
|
76
79
|
"context.help.summary": "Imprime le contexte d'agent pour la racine mustflow actuelle.",
|
|
77
80
|
"context.help.option.json": "Imprime le JSON de contexte lisible par machine",
|
|
@@ -148,12 +151,28 @@ export const frMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "Changements non enregistrés",
|
|
149
152
|
"dashboard.ui.reloaded": "Rechargé",
|
|
150
153
|
"dashboard.ui.saved": "Enregistré",
|
|
154
|
+
"dashboard.ui.loading": "Chargement",
|
|
155
|
+
"dashboard.ui.lastUpdated": "Dernière mise à jour : {time}",
|
|
156
|
+
"dashboard.ui.copied": "Copié",
|
|
151
157
|
"dashboard.ui.reload": "Recharger",
|
|
152
158
|
"dashboard.ui.save": "Enregistrer",
|
|
153
159
|
"dashboard.ui.locked": "Verrouillé",
|
|
154
160
|
"dashboard.ui.customLocale": "Balise de langue personnalisée",
|
|
155
161
|
"dashboard.ui.openMustflow": "Ouvrir le dossier .mustflow",
|
|
156
162
|
"dashboard.ui.openedMustflow": "Dossier .mustflow ouvert",
|
|
163
|
+
"dashboard.settings.pendingHeading": "Paramètres non enregistrés ({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "Réinitialiser les changements",
|
|
166
|
+
"dashboard.filter.search": "Rechercher",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "nom, chemin, commande ou raison",
|
|
168
|
+
"dashboard.filter.state": "État",
|
|
169
|
+
"dashboard.filter.all": "Tous",
|
|
170
|
+
"dashboard.filter.runnable": "Exécutable",
|
|
171
|
+
"dashboard.filter.unavailable": "Indisponible",
|
|
172
|
+
"dashboard.filter.aligned": "Aligné",
|
|
173
|
+
"dashboard.filter.mismatch": "Incohérent",
|
|
174
|
+
"dashboard.filter.missing": "Manquant",
|
|
175
|
+
"dashboard.filter.noMatches": "Aucun élément correspondant.",
|
|
157
176
|
"dashboard.tab.status": "État",
|
|
158
177
|
"dashboard.tab.verification": "Vérification",
|
|
159
178
|
"dashboard.tab.commands": "Commandes",
|
|
@@ -163,6 +182,24 @@ export const frMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "Skills",
|
|
164
183
|
"dashboard.tab.settings": "Réglages",
|
|
165
184
|
"dashboard.tab.documents": "Revue des documents",
|
|
185
|
+
"dashboard.actions.heading": "Actions suivantes",
|
|
186
|
+
"dashboard.actions.empty": "Aucune action.",
|
|
187
|
+
"dashboard.actions.missingFiles": "Fichiers manquants : {count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "Problèmes : {count}",
|
|
189
|
+
"dashboard.actions.verification": "Recommandations de vérification : {count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "Blocages de mise à jour : {count}",
|
|
191
|
+
"dashboard.actions.documents": "Documents à relire : {count}",
|
|
192
|
+
"dashboard.actions.latestRun": "Dernière exécution à vérifier",
|
|
193
|
+
"dashboard.actions.openStatus": "Ouvrir l'état",
|
|
194
|
+
"dashboard.actions.openVerification": "Ouvrir la vérification",
|
|
195
|
+
"dashboard.actions.openUpdate": "Ouvrir la mise à jour",
|
|
196
|
+
"dashboard.actions.openDocuments": "Ouvrir les documents",
|
|
197
|
+
"dashboard.actions.openRuns": "Ouvrir les exécutions",
|
|
198
|
+
"dashboard.a11y.state.ok": "OK",
|
|
199
|
+
"dashboard.a11y.state.warn": "À vérifier",
|
|
200
|
+
"dashboard.a11y.state.neutral": "État",
|
|
201
|
+
"dashboard.a11y.copyCommand": "Copier la commande : {command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "Copier le plan de vérification",
|
|
166
203
|
"dashboard.status.reloaded": "État rechargé",
|
|
167
204
|
"dashboard.status.overview": "Aperçu",
|
|
168
205
|
"dashboard.status.installed": "Installé",
|
|
@@ -321,6 +358,8 @@ export const frMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "Type de relecteur",
|
|
322
359
|
"dashboard.docs.reviewerId": "ID de relecteur",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "personne, LLM ou outil",
|
|
361
|
+
"dashboard.docs.reviewerState": "Relecture avec {kind}: {id}",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "Saisissez un ID de relecteur avant d'utiliser les actions de revue.",
|
|
324
363
|
"dashboard.docs.summary": "Résumé de revue",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "facultatif",
|
|
326
365
|
"dashboard.docs.comment": "Commentaire",
|
|
@@ -349,6 +388,7 @@ export const frMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "Marque ce document comme nécessitant une autre relecture par une personne, un LLM, un outil ou un processus externe.",
|
|
350
389
|
"dashboard.docs.action.ignore": "Ignorer",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "Ignore la relecture de ce document et le masque de la liste par défaut.",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "Déjà {status}",
|
|
352
392
|
"dashboard.locked.git.auto_push": "Les push distants exigent une demande explicite.",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "Message de commit",
|
|
@@ -524,7 +564,7 @@ Lisez ces fichiers avant de travailler :
|
|
|
524
564
|
"init.help.option.interactive": "Choisit les paramètres d'initialisation depuis des invites",
|
|
525
565
|
"init.help.option.merge": "Fusionne un bloc géré par mustflow dans un AGENTS.md existant",
|
|
526
566
|
"init.help.option.force": "Sauvegarde les fichiers en conflit et les écrase",
|
|
527
|
-
"init.help.option.profile": "Définit le profil du projet : minimal, oss, team, product ou library",
|
|
567
|
+
"init.help.option.profile": "Définit le profil du projet : minimal, patterns, oss, team, product ou library",
|
|
528
568
|
"init.help.option.locale": "Définit la langue des documents mustflow installés",
|
|
529
569
|
"init.help.option.agentLang": "Définit la langue de réponse préférée de l'agent",
|
|
530
570
|
"init.help.option.set": "Définit une préférence sûre comme git.auto_commit=true ou git.auto_push=false",
|
|
@@ -611,6 +651,7 @@ Lisez ces fichiers avant de travailler :
|
|
|
611
651
|
"run.help.option.json": "Imprime l'enregistrement d'exécution ou le plan de commande en JSON",
|
|
612
652
|
"run.help.exit.ok": "La commande s'est terminée avec un code de sortie autorisé",
|
|
613
653
|
"run.help.exit.fail": "La commande était non valide, refusée, expirée ou a échoué",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "Extrait suggéré de contrat de commande",
|
|
614
655
|
"run.error.missingIntent": "Nom de commande manquant",
|
|
615
656
|
"run.error.unknownIntent": "Commande inconnue : {intent}",
|
|
616
657
|
"run.error.statusNotConfigured": 'La commande "{intent}" est {status} ; seules les commandes configurées peuvent être exécutées',
|
|
@@ -658,8 +699,20 @@ Lisez ces fichiers avant de travailler :
|
|
|
658
699
|
"version.check.upToDate": "dernière version {version}; déjà à jour",
|
|
659
700
|
"version.check.updateCommand": "Commande de mise à jour :",
|
|
660
701
|
"version.error.checkFailed": "Impossible de vérifier une nouvelle version sur npm : {message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "Vérifie si le paquet mustflow installé est à jour, puis applique en sécurité les mises à jour du modèle inclus quand c'est possible.",
|
|
703
|
+
"upgrade.help.option.dryRun": "Vérifie l'état du paquet et affiche le plan de mise à jour du projet sans écrire de fichiers",
|
|
704
|
+
"upgrade.help.exit.ok": "Le paquet était à jour et la vérification de mise à jour du projet est terminée",
|
|
705
|
+
"upgrade.help.exit.fail": "Une mise à jour du paquet est requise, un blocage de mise à jour du projet existe, ou l'entrée est invalide",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "Paquet :",
|
|
708
|
+
"upgrade.projectSection": "Modèle de projet :",
|
|
709
|
+
"upgrade.packageUpdateRequired": "Mettez d'abord à jour le paquet mustflow, puis relancez `mf upgrade`.",
|
|
710
|
+
"upgrade.noFilesWritten": "Aucun fichier du projet n'a été écrit.",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "Impossible de vérifier une nouvelle version sur npm : {message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "Poursuite avec le modèle inclus dans le CLI actuel.",
|
|
713
|
+
"classify.help.summary": "Classe les chemins modifies, les surfaces publiques et les raisons de verification.",
|
|
662
714
|
"classify.help.option.changed": "Lire les chemins depuis git status --short --untracked-files=all",
|
|
715
|
+
"classify.help.option.write": "Ecrit le rapport de classification dans un fichier JSON dans ce depot",
|
|
663
716
|
"classify.help.exit.ok": "La classification des changements a ete inspectee et affichee",
|
|
664
717
|
"classify.title": "mustflow classify",
|
|
665
718
|
"classify.label.source": "Source",
|
|
@@ -674,6 +727,7 @@ Lisez ces fichiers avant de travailler :
|
|
|
674
727
|
"classify.source.changed": "fichiers modifies",
|
|
675
728
|
"classify.source.paths": "chemins explicites",
|
|
676
729
|
"classify.error.missingInput": "Indiquez --changed ou au moins un chemin",
|
|
730
|
+
"classify.error.write_path_outside_root": "Le chemin du rapport de classification doit rester dans la racine mustflow",
|
|
677
731
|
"impact.help.summary": "Signale si les chemins modifies exigent une decision de version de paquet ou de modele sans modifier les fichiers.",
|
|
678
732
|
"impact.help.option.changed": "Lire les chemins depuis git status --short --untracked-files=all",
|
|
679
733
|
"impact.help.exit.ok": "L'impact de version a ete inspecte et affiche",
|
|
@@ -689,9 +743,12 @@ Lisez ces fichiers avant de travailler :
|
|
|
689
743
|
"impact.error.missingInput": "Indiquez --changed ou au moins un chemin",
|
|
690
744
|
"verify.help.summary": "Exécute les intentions de vérification configurées sélectionnées par les métadonnées required_after.",
|
|
691
745
|
"verify.help.option.reason": "Sélectionne la raison required_after à vérifier",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "Lit les raisons de vérification depuis un rapport mf classify dans ce dépôt",
|
|
747
|
+
"verify.help.option.fromPlan": "Alias de compatibilité pour --from-classification",
|
|
693
748
|
"verify.help.option.changed": "Classe les changements Git actuels et vérifie les raisons correspondantes",
|
|
694
|
-
"verify.help.option.writePlan": "
|
|
749
|
+
"verify.help.option.writePlan": "Option de compatibilité qui écrit le rapport de classification des changements",
|
|
750
|
+
"verify.help.option.reproEvidence": "Lit une preuve structurée de reproduction de bogue depuis un résumé JSON local au dépôt",
|
|
751
|
+
"verify.help.option.externalEvidence": "Lit une preuve CI externe de moindre autorité depuis un résumé JSON local au dépôt",
|
|
695
752
|
"verify.help.option.planOnly": "Affiche le plan de vérification sans exécuter de commandes; nécessite --json",
|
|
696
753
|
"verify.help.exit.ok": "Toutes les intentions de vérification sélectionnées ont réussi",
|
|
697
754
|
"verify.help.exit.fail": "La vérification a échoué, est partielle, est bloquée ou l'entrée est invalide",
|
|
@@ -701,14 +758,20 @@ Lisez ces fichiers avant de travailler :
|
|
|
701
758
|
"verify.label.status": "État",
|
|
702
759
|
"verify.label.results": "Résultats",
|
|
703
760
|
"verify.error.missingReason": "Raison de vérification manquante",
|
|
704
|
-
"verify.error.conflictingInputs": "Utilisez un seul de --reason, --from-plan ou --changed",
|
|
761
|
+
"verify.error.conflictingInputs": "Utilisez un seul de --reason, --from-classification, --from-plan ou --changed",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan nécessite --changed",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only nécessite --json",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence ne peut pas être utilisé avec --plan-only",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence ne peut pas être utilisé avec --plan-only",
|
|
766
|
+
"verify.error.invalid_plan_file": "Le rapport de classification doit être un fichier JSON lisible",
|
|
767
|
+
"verify.error.unsupported_plan_source": "L'entrée de vérification doit être un rapport mf classify",
|
|
768
|
+
"verify.error.plan_root_mismatch": "Le rapport de classification doit venir de cette racine mustflow",
|
|
769
|
+
"verify.error.missing_plan_reasons": "Le rapport de classification doit inclure summary.validationReasons",
|
|
770
|
+
"verify.error.plan_path_outside_root": "Le chemin du rapport de classification doit rester dans la racine mustflow",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "La preuve de reproduction doit être un résumé JSON lisible avec des champs de preuve structurés",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "L'entrée de preuve de reproduction doit utiliser command repro-evidence",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "La preuve externe doit être un résumé JSON lisible avec checks",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "L'entrée de preuve externe doit utiliser command external-evidence",
|
|
712
775
|
"explain.help.summary": "Explique pourquoi une décision de politique mustflow s'applique sans modifier de fichiers.",
|
|
713
776
|
"explain.help.exit.ok": "La décision de politique a été inspectée et affichée",
|
|
714
777
|
"explain.title": "explication mustflow",
|