mustflow 1.18.16 → 1.31.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 +28 -8
- package/dist/cli/commands/adapters.js +90 -0
- package/dist/cli/commands/classify.js +3 -4
- package/dist/cli/commands/contract-lint.js +26 -6
- package/dist/cli/commands/dashboard.js +103 -4
- package/dist/cli/commands/explain-verify.js +213 -0
- package/dist/cli/commands/explain.js +48 -4
- package/dist/cli/commands/handoff.js +136 -0
- package/dist/cli/commands/run.js +302 -168
- package/dist/cli/commands/update.js +91 -61
- package/dist/cli/commands/upgrade.js +65 -0
- package/dist/cli/commands/verify.js +304 -139
- package/dist/cli/i18n/en.js +77 -4
- package/dist/cli/i18n/es.js +77 -4
- package/dist/cli/i18n/fr.js +77 -4
- package/dist/cli/i18n/hi.js +77 -4
- package/dist/cli/i18n/ko.js +77 -4
- package/dist/cli/i18n/zh.js +77 -4
- package/dist/cli/index.js +34 -42
- package/dist/cli/lib/command-registry.js +15 -0
- package/dist/cli/lib/dashboard-export.js +775 -0
- package/dist/cli/lib/dashboard-html.js +1 -1
- package/dist/cli/lib/local-index.js +33 -14
- package/dist/cli/lib/reporter.js +6 -0
- package/dist/cli/lib/run-plan.js +239 -0
- package/dist/cli/lib/templates.js +18 -3
- package/dist/cli/lib/update-diff-preview.js +163 -0
- package/dist/cli/lib/validation.js +132 -1
- package/dist/core/adapter-compatibility.js +235 -0
- package/dist/core/bounded-output.js +38 -0
- package/dist/core/change-classification.js +14 -1
- package/dist/core/change-verification.js +246 -5
- package/dist/core/check-issues.js +10 -0
- package/dist/core/command-contract-validation.js +34 -0
- package/dist/core/command-cwd.js +18 -6
- package/dist/core/command-effects.js +13 -0
- package/dist/core/command-env.js +91 -0
- package/dist/core/contract-lint.js +260 -4
- package/dist/core/contract-models.js +172 -0
- package/dist/core/dashboard-verification.js +10 -0
- package/dist/core/doc-review-triage.js +1 -0
- package/dist/core/handoff-record.js +376 -0
- package/dist/core/public-json-contracts.js +23 -0
- package/dist/core/run-performance-history.js +307 -0
- package/dist/core/run-profile.js +87 -0
- package/dist/core/run-receipt.js +217 -11
- package/dist/core/run-write-drift.js +196 -0
- package/dist/core/secret-redaction.js +39 -0
- package/dist/core/skill-route-alignment.js +90 -0
- package/dist/core/source-anchors.js +3 -5
- package/dist/core/test-selection.js +224 -0
- package/dist/core/verification-decision-graph.js +290 -0
- package/dist/core/verification-scheduler.js +96 -2
- package/package.json +3 -1
- package/schemas/README.md +15 -4
- package/schemas/adapter-compatibility-report.schema.json +184 -0
- package/schemas/change-verification-report.schema.json +286 -4
- package/schemas/commands.schema.json +55 -2
- package/schemas/contract-lint-report.schema.json +99 -0
- package/schemas/dashboard-export.schema.json +273 -0
- package/schemas/explain-report.schema.json +267 -2
- package/schemas/handoff-validation-report.schema.json +68 -0
- package/schemas/run-receipt.schema.json +183 -1
- package/templates/default/common/.mustflow/config/commands.toml +3 -1
- package/templates/default/i18n.toml +78 -234
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +7 -3
- package/templates/default/locales/en/.mustflow/skills/architecture-deepening-review/SKILL.md +154 -0
- package/templates/default/locales/en/.mustflow/skills/behavior-preserving-refactor/SKILL.md +8 -3
- package/templates/default/locales/en/.mustflow/skills/code-review/SKILL.md +9 -4
- package/templates/default/locales/en/.mustflow/skills/date-number-audit/SKILL.md +19 -4
- package/templates/default/locales/en/.mustflow/skills/diff-risk-review/SKILL.md +4 -2
- package/templates/default/locales/en/.mustflow/skills/external-skill-intake/SKILL.md +141 -0
- package/templates/default/locales/en/.mustflow/skills/release-notes-authoring/SKILL.md +143 -0
- package/templates/default/locales/en/.mustflow/skills/repro-first-debug/SKILL.md +22 -8
- package/templates/default/locales/en/.mustflow/skills/skill-authoring/SKILL.md +3 -3
- package/templates/default/locales/en/.mustflow/skills/source-freshness-check/SKILL.md +22 -9
- package/templates/default/locales/en/.mustflow/skills/ui-quality-gate/SKILL.md +21 -13
- package/templates/default/locales/en/.mustflow/skills/vertical-slice-tdd/SKILL.md +167 -0
- package/templates/default/manifest.toml +16 -1
- package/templates/default/locales/es/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/es/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/es/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/es/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/es/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/es/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/es/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/es/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/es/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/es/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/es/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/es/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/es/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/es/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/es/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/es/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/es/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/es/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/es/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/es/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/es/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/es/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/es/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/es/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/es/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/es/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/es/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/es/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/es/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/es/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/es/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/es/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/es/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/es/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/es/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/es/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/fr/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/fr/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/fr/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/fr/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/fr/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/fr/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/fr/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/fr/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/fr/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/fr/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/fr/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/fr/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/fr/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/fr/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/fr/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/fr/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/fr/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/fr/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/fr/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/fr/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/fr/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/fr/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/fr/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/fr/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/fr/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/fr/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/fr/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/fr/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/fr/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/fr/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/fr/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/fr/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/fr/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/fr/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/fr/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/fr/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/hi/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/hi/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/hi/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/hi/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/hi/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/hi/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/hi/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/hi/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/hi/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/hi/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/hi/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/hi/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/hi/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/hi/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/hi/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/hi/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/hi/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/hi/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/hi/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/hi/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/hi/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/hi/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/hi/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/hi/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/hi/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/hi/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/hi/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/hi/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/hi/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/hi/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/hi/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/hi/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/hi/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/hi/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/hi/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/hi/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/ko/.mustflow/skills/INDEX.md +0 -80
- package/templates/default/locales/ko/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/ko/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/ko/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/ko/.mustflow/skills/code-review/SKILL.md +0 -118
- package/templates/default/locales/ko/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/ko/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/ko/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/ko/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/ko/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/ko/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/ko/.mustflow/skills/docs-update/SKILL.md +0 -107
- package/templates/default/locales/ko/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/ko/.mustflow/skills/failure-triage/SKILL.md +0 -119
- package/templates/default/locales/ko/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/ko/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/ko/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/ko/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -259
- package/templates/default/locales/ko/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/ko/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/ko/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/ko/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/ko/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/ko/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/ko/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/ko/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/ko/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/ko/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/ko/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/ko/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/ko/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/ko/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/ko/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/ko/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/ko/.mustflow/skills/test-maintenance/SKILL.md +0 -130
- package/templates/default/locales/ko/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/ko/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/zh/.mustflow/skills/INDEX.md +0 -74
- package/templates/default/locales/zh/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/zh/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/zh/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/zh/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/zh/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/zh/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/zh/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/zh/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/zh/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/zh/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/zh/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/zh/.mustflow/skills/failure-triage/SKILL.md +0 -96
- package/templates/default/locales/zh/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/zh/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/zh/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/zh/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/zh/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/zh/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/zh/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/zh/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/zh/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/zh/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/zh/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/zh/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/zh/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/zh/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/zh/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/zh/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/zh/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/zh/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/zh/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/zh/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/zh/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/zh/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/zh/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
package/dist/cli/i18n/en.js
CHANGED
|
@@ -20,18 +20,21 @@ export const enMessages = {
|
|
|
20
20
|
"value.yes": "yes",
|
|
21
21
|
"value.no": "no",
|
|
22
22
|
"value.none": "none",
|
|
23
|
+
"command.adapters.summary": "Inspect host adapter compatibility without generating adapter files",
|
|
23
24
|
"command.init.summary": "Copy the default mustflow agent workflow",
|
|
24
25
|
"command.check.summary": "Validate mustflow files",
|
|
25
26
|
"command.classify.summary": "Classify changed files and public surfaces",
|
|
26
27
|
"command.contractLint.summary": "Lint the command contract",
|
|
27
28
|
"command.status.summary": "Show local mustflow install status",
|
|
28
29
|
"command.update.summary": "Preview or apply mustflow workflow updates",
|
|
30
|
+
"command.upgrade.summary": "Check the package version and safely update installed workflow files",
|
|
29
31
|
"command.map.summary": "Generate REPO_MAP.md",
|
|
30
32
|
"command.lineEndings.summary": "Inspect and normalize line-ending policy",
|
|
31
33
|
"command.run.summary": "Run a configured oneshot command",
|
|
32
34
|
"command.context.summary": "Print machine-readable agent context",
|
|
33
35
|
"command.doctor.summary": "Inspect mustflow health and next steps",
|
|
34
36
|
"command.docs.summary": "Track documentation review queue entries",
|
|
37
|
+
"command.handoff.summary": "Validate restricted work-item and handoff records",
|
|
35
38
|
"command.index.summary": "Build the local mustflow SQLite index",
|
|
36
39
|
"command.search.summary": "Search the local mustflow SQLite index",
|
|
37
40
|
"command.dashboard.summary": "Start the local mustflow dashboard",
|
|
@@ -52,6 +55,7 @@ export const enMessages = {
|
|
|
52
55
|
"check.result.passed": "mustflow check passed",
|
|
53
56
|
"check.result.strictPassed": "mustflow strict check passed",
|
|
54
57
|
"contractLint.help.summary": "Inspect .mustflow/config/commands.toml for command-contract errors and warnings.",
|
|
58
|
+
"contractLint.help.option.coverage": "Also report required_after coverage for change-classification reasons",
|
|
55
59
|
"contractLint.help.exit.ok": "The command contract was inspected without blocking errors",
|
|
56
60
|
"contractLint.help.exit.fail": "Command-contract errors were found or input was invalid",
|
|
57
61
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +68,11 @@ export const enMessages = {
|
|
|
64
68
|
"contractLint.label.errors": "Errors",
|
|
65
69
|
"contractLint.label.warnings": "Warnings",
|
|
66
70
|
"contractLint.label.sourceFiles": "Source files",
|
|
71
|
+
"contractLint.label.coverage": "Coverage",
|
|
72
|
+
"contractLint.label.classificationReasons": "Classification reasons",
|
|
73
|
+
"contractLint.label.requiredAfterReasons": "required_after reasons",
|
|
74
|
+
"contractLint.label.runnableReasons": "Runnable reasons",
|
|
75
|
+
"contractLint.label.coverageFindings": "Coverage findings",
|
|
67
76
|
"contractLint.label.issues": "Issues",
|
|
68
77
|
"context.help.summary": "Print the agent context for the current mustflow root.",
|
|
69
78
|
"context.help.option.json": "Print machine-readable context JSON",
|
|
@@ -89,16 +98,51 @@ export const enMessages = {
|
|
|
89
98
|
"label.results": "Results",
|
|
90
99
|
"label.comment": "Comment",
|
|
91
100
|
"label.mode": "Mode",
|
|
101
|
+
"adapters.help.summary": "Inspect repository-visible host adapter files without generating or authorizing adapter surfaces.",
|
|
102
|
+
"adapters.help.exit.ok": "Adapter compatibility was inspected and printed",
|
|
103
|
+
"adapters.help.exit.fail": "The command received invalid input",
|
|
104
|
+
"adapters.error.missingAction": "Specify an adapters action: status",
|
|
105
|
+
"adapters.error.unknownAction": "Unknown adapters action: {action}",
|
|
106
|
+
"adapters.title": "mustflow adapters status",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "Host instruction files",
|
|
109
|
+
"adapters.label.adapterSurfaces": "Adapter surfaces present",
|
|
110
|
+
"adapters.label.compatibilityNotes": "Compatibility notes",
|
|
111
|
+
"adapters.label.requiredChanges": "Required changes",
|
|
112
|
+
"adapters.label.commandAuthority": "Command authority",
|
|
92
113
|
"dashboard.help.summary": "Start a local dashboard for safe mustflow preferences and document review.",
|
|
93
114
|
"dashboard.help.option.host": "Bind the dashboard to a local host. Default: 127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "Bind the dashboard to a port. Default: 0 chooses an available port",
|
|
95
116
|
"dashboard.help.option.open": "Open the dashboard in the default browser after the server starts",
|
|
96
117
|
"dashboard.help.option.noOpen": "Keep the browser closed. This is the default",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "Write a static HTML snapshot without starting a server",
|
|
119
|
+
"dashboard.help.option.exportJson": "Write a structured JSON snapshot without starting a server",
|
|
120
|
+
"dashboard.help.exit.ok": "Dashboard was started, an export was written, or help was printed",
|
|
98
121
|
"dashboard.help.exit.fail": "Dashboard could not start or input was invalid",
|
|
99
122
|
"dashboard.error.invalidPort": "Invalid dashboard port: {port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "Refused dashboard host {host}. Use localhost, 127.0.0.1, or ::1.",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "Use only one dashboard export mode",
|
|
125
|
+
"dashboard.error.exportServerOptions": "Dashboard export cannot be combined with server options",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "Dashboard export path must stay inside the mustflow root: {path}",
|
|
127
|
+
"dashboard.export.wrote": "Wrote dashboard export to {path} ({bytes} bytes)",
|
|
101
128
|
"dashboard.listening": "mf dashboard listening at {url}",
|
|
129
|
+
"handoff.help.summary": "Validate a restricted work-item or handoff JSON record without writing files.",
|
|
130
|
+
"handoff.help.exit.ok": "The handoff record is valid",
|
|
131
|
+
"handoff.help.exit.fail": "The handoff record is invalid or could not be read",
|
|
132
|
+
"handoff.error.missingAction": "Specify a handoff action: validate",
|
|
133
|
+
"handoff.error.unknownAction": "Unknown handoff action: {action}",
|
|
134
|
+
"handoff.error.missingPath": "Missing handoff record path",
|
|
135
|
+
"handoff.error.notFile": "Handoff record path must be a regular file.",
|
|
136
|
+
"handoff.error.tooLarge": "Handoff record is larger than the allowed read limit.",
|
|
137
|
+
"handoff.error.unreadable": "Could not read handoff record: {message}",
|
|
138
|
+
"handoff.title": "mustflow handoff validate",
|
|
139
|
+
"handoff.label.path": "Path",
|
|
140
|
+
"handoff.label.status": "Status",
|
|
141
|
+
"handoff.label.kind": "Kind",
|
|
142
|
+
"handoff.label.task": "Task",
|
|
143
|
+
"handoff.label.issues": "Issues",
|
|
144
|
+
"handoff.value.valid": "valid",
|
|
145
|
+
"handoff.value.invalid": "invalid",
|
|
102
146
|
"dashboard.ui.title": "mustflow dashboard",
|
|
103
147
|
"dashboard.ui.language": "Language",
|
|
104
148
|
"dashboard.ui.noChanges": "No changes",
|
|
@@ -563,7 +607,9 @@ Read these files before working:
|
|
|
563
607
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
608
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
609
|
"run.help.summary": "Run a configured oneshot command from .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "Print a non-executing command plan",
|
|
611
|
+
"run.help.option.planOnly": "Alias for --dry-run",
|
|
612
|
+
"run.help.option.json": "Print the run record or command plan as JSON",
|
|
567
613
|
"run.help.exit.ok": "The command completed with an allowed exit code",
|
|
568
614
|
"run.help.exit.fail": "The command was invalid, refused, timed out, or failed",
|
|
569
615
|
"run.error.missingIntent": "Missing command name",
|
|
@@ -574,6 +620,13 @@ Read these files before working:
|
|
|
574
620
|
"run.error.stdin": 'Command "{intent}" must set stdin = "closed"',
|
|
575
621
|
"run.error.timeout": 'Command "{intent}" must define timeout_seconds',
|
|
576
622
|
"run.error.commandSource": 'Command "{intent}" must define argv or mode = "shell" with cmd',
|
|
623
|
+
"run.error.unsafeIntent": 'Intent "{intent}" has an unsafe name. {detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "Use a shell-safe intent name.",
|
|
625
|
+
"run.error.blockedShellBackground": 'Intent "{intent}" is blocked. {detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "Shell commands must not spawn background work.",
|
|
627
|
+
"run.error.cwdOutsideProject": 'Command "{intent}" has an invalid cwd: {detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "Intent cwd must stay inside the current root.",
|
|
629
|
+
"run.error.conflictingPreviewModes": "Use either --dry-run or --plan-only, not both",
|
|
577
630
|
"run.error.timedOut": 'Command "{intent}" timed out after {seconds} seconds',
|
|
578
631
|
"run.error.startFailed": 'Command "{intent}" failed to start: {message}',
|
|
579
632
|
"search.help.summary": "Search the local SQLite index for the mustflow workflow.",
|
|
@@ -606,6 +659,17 @@ Read these files before working:
|
|
|
606
659
|
"version.check.upToDate": "latest {version}; already up to date",
|
|
607
660
|
"version.check.updateCommand": "Update command:",
|
|
608
661
|
"version.error.checkFailed": "Could not check npm for a newer version: {message}",
|
|
662
|
+
"upgrade.help.summary": "Check whether the installed mustflow package is current, then safely apply bundled workflow template updates when possible.",
|
|
663
|
+
"upgrade.help.option.dryRun": "Check package status and print the project update plan without writing files",
|
|
664
|
+
"upgrade.help.exit.ok": "The package was current and the project update check completed",
|
|
665
|
+
"upgrade.help.exit.fail": "A package update is required, a project update blocker was found, or input was invalid",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "Package:",
|
|
668
|
+
"upgrade.projectSection": "Project template:",
|
|
669
|
+
"upgrade.packageUpdateRequired": "Update the mustflow package first, then run `mf upgrade` again.",
|
|
670
|
+
"upgrade.noFilesWritten": "No project files were written.",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "Could not check npm for a newer version: {message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "Continuing with the bundled template in the current CLI.",
|
|
609
673
|
"classify.help.summary": "Classify changed paths, public surfaces, and required validation reasons without modifying files.",
|
|
610
674
|
"classify.help.option.changed": "Read paths from git status --short --untracked-files=all",
|
|
611
675
|
"classify.help.exit.ok": "Change classification was inspected and printed",
|
|
@@ -638,6 +702,8 @@ Read these files before working:
|
|
|
638
702
|
"verify.help.summary": "Run configured verification intents selected by required_after metadata.",
|
|
639
703
|
"verify.help.option.reason": "Select the required_after reason to verify",
|
|
640
704
|
"verify.help.option.fromPlan": "Read verification reasons from a JSON plan inside this repository",
|
|
705
|
+
"verify.help.option.changed": "Classify current Git changes and verify the matching reasons",
|
|
706
|
+
"verify.help.option.writePlan": "Write the changed-file classification plan inside this repository",
|
|
641
707
|
"verify.help.option.planOnly": "Print the verification plan without running commands; requires --json",
|
|
642
708
|
"verify.help.exit.ok": "All selected verification intents passed",
|
|
643
709
|
"verify.help.exit.fail": "Verification failed, was partial, was blocked, or input was invalid",
|
|
@@ -647,10 +713,13 @@ Read these files before working:
|
|
|
647
713
|
"verify.label.status": "Status",
|
|
648
714
|
"verify.label.results": "Results",
|
|
649
715
|
"verify.error.missingReason": "Missing verification reason",
|
|
650
|
-
"verify.error.conflictingInputs": "Use
|
|
716
|
+
"verify.error.conflictingInputs": "Use only one of --reason, --from-plan, or --changed",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan requires --changed",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only requires --json",
|
|
652
719
|
"verify.error.invalid_plan_file": "Verification plan must be a readable JSON file",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "Verification plan must be produced by mf classify --json",
|
|
721
|
+
"verify.error.plan_root_mismatch": "Verification plan must come from this mustflow root",
|
|
722
|
+
"verify.error.missing_plan_reasons": "Verification plan must include summary.validationReasons",
|
|
654
723
|
"verify.error.plan_path_outside_root": "Verification plan path must stay inside the mustflow root",
|
|
655
724
|
"explain.help.summary": "Explain why a mustflow policy decision applies without modifying files.",
|
|
656
725
|
"explain.help.exit.ok": "The policy decision was inspected and printed",
|
|
@@ -680,10 +749,12 @@ Read these files before working:
|
|
|
680
749
|
"explain.error.unknownTopic": "Unknown explain topic: {topic}",
|
|
681
750
|
"update.help.summary": "Preview or apply updates for the installed mustflow workflow.",
|
|
682
751
|
"update.help.option.dryRun": "Print the update plan without writing files",
|
|
752
|
+
"update.help.option.diff": "Include a bounded diff preview with --dry-run",
|
|
683
753
|
"update.help.option.apply": "Apply safe template updates when no local changes are blocked",
|
|
684
754
|
"update.help.exit.ok": "Plan was printed or safe updates were applied",
|
|
685
755
|
"update.help.exit.fail": "Plan found blocked changes, missing state, or invalid input",
|
|
686
756
|
"update.error.cannotCombineModes": "Cannot combine --dry-run and --apply.",
|
|
757
|
+
"update.error.diffRequiresDryRun": "Use --diff with --dry-run.",
|
|
687
758
|
"update.error.missingMode": "Specify --dry-run or --apply.",
|
|
688
759
|
"update.backup.files": "Backed up {count} {fileWord} to {path}",
|
|
689
760
|
"update.action.created": "Created {path}",
|
|
@@ -700,6 +771,8 @@ Read these files before working:
|
|
|
700
771
|
"update.plan.wouldUpdate": "Would update",
|
|
701
772
|
"update.plan.wouldCreate": "Would create",
|
|
702
773
|
"update.plan.noUpdates": "No template updates needed.",
|
|
774
|
+
"update.diff.title": "Diff preview:",
|
|
775
|
+
"update.diff.unavailable": "diff preview unavailable: {reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "No files were written.",
|
|
704
777
|
"update.complete": "mustflow update complete: {updated} updated, {created} created.",
|
|
705
778
|
};
|
package/dist/cli/i18n/es.js
CHANGED
|
@@ -20,18 +20,21 @@ export const esMessages = {
|
|
|
20
20
|
"value.yes": "sí",
|
|
21
21
|
"value.no": "no",
|
|
22
22
|
"value.none": "ninguno",
|
|
23
|
+
"command.adapters.summary": "Inspecciona compatibilidad de adaptadores sin generar archivos",
|
|
23
24
|
"command.init.summary": "Copia el flujo de trabajo de agente mustflow predeterminado",
|
|
24
25
|
"command.check.summary": "Valida los archivos mustflow",
|
|
25
26
|
"command.classify.summary": "Clasifica cambios y superficies publicas",
|
|
26
27
|
"command.contractLint.summary": "Revisa el contrato de comandos",
|
|
27
28
|
"command.status.summary": "Muestra el estado de la instalación local de mustflow",
|
|
28
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",
|
|
29
31
|
"command.map.summary": "Genera REPO_MAP.md",
|
|
30
32
|
"command.lineEndings.summary": "Inspecciona y normaliza la política de finales de línea",
|
|
31
33
|
"command.run.summary": "Ejecuta un comando configurado de una sola ejecución",
|
|
32
34
|
"command.context.summary": "Imprime contexto de agente legible por máquinas",
|
|
33
35
|
"command.doctor.summary": "Inspecciona la salud de mustflow y los siguientes pasos",
|
|
34
36
|
"command.docs.summary": "Rastrea la cola de revisión de documentación",
|
|
37
|
+
"command.handoff.summary": "Valida registros restringidos de trabajo y handoff",
|
|
35
38
|
"command.index.summary": "Construye el índice SQLite local de mustflow",
|
|
36
39
|
"command.search.summary": "Busca en el índice SQLite local de mustflow",
|
|
37
40
|
"command.dashboard.summary": "Inicia el dashboard local de mustflow",
|
|
@@ -52,6 +55,7 @@ export const esMessages = {
|
|
|
52
55
|
"check.result.passed": "comprobacion mustflow superada",
|
|
53
56
|
"check.result.strictPassed": "comprobacion estricta de mustflow superada",
|
|
54
57
|
"contractLint.help.summary": "Inspecciona .mustflow/config/commands.toml para encontrar errores y advertencias del contrato de comandos.",
|
|
58
|
+
"contractLint.help.option.coverage": "También informa cobertura required_after para razones de clasificación de cambios",
|
|
55
59
|
"contractLint.help.exit.ok": "El contrato de comandos se inspeccionó sin errores bloqueantes",
|
|
56
60
|
"contractLint.help.exit.fail": "Se encontraron errores del contrato de comandos o la entrada no es válida",
|
|
57
61
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +68,11 @@ export const esMessages = {
|
|
|
64
68
|
"contractLint.label.errors": "Errores",
|
|
65
69
|
"contractLint.label.warnings": "Advertencias",
|
|
66
70
|
"contractLint.label.sourceFiles": "Archivos fuente",
|
|
71
|
+
"contractLint.label.coverage": "Cobertura",
|
|
72
|
+
"contractLint.label.classificationReasons": "Razones de clasificación",
|
|
73
|
+
"contractLint.label.requiredAfterReasons": "Razones required_after",
|
|
74
|
+
"contractLint.label.runnableReasons": "Razones ejecutables",
|
|
75
|
+
"contractLint.label.coverageFindings": "Hallazgos de cobertura",
|
|
67
76
|
"contractLint.label.issues": "Problemas",
|
|
68
77
|
"context.help.summary": "Imprime el contexto de agente para la raíz mustflow actual.",
|
|
69
78
|
"context.help.option.json": "Imprime JSON de contexto legible por máquinas",
|
|
@@ -89,16 +98,51 @@ export const esMessages = {
|
|
|
89
98
|
"label.results": "Resultados",
|
|
90
99
|
"label.comment": "Comentario",
|
|
91
100
|
"label.mode": "Modo",
|
|
101
|
+
"adapters.help.summary": "Inspecciona archivos de adaptadores visibles en el repositorio sin generarlos ni autorizarlos.",
|
|
102
|
+
"adapters.help.exit.ok": "La compatibilidad de adaptadores fue inspeccionada e impresa",
|
|
103
|
+
"adapters.help.exit.fail": "El comando recibió entrada inválida",
|
|
104
|
+
"adapters.error.missingAction": "Indica una acción de adapters: status",
|
|
105
|
+
"adapters.error.unknownAction": "Acción de adapters desconocida: {action}",
|
|
106
|
+
"adapters.title": "estado de adaptadores mustflow",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "Archivos de instrucciones del host",
|
|
109
|
+
"adapters.label.adapterSurfaces": "Superficies de adaptador presentes",
|
|
110
|
+
"adapters.label.compatibilityNotes": "Notas de compatibilidad",
|
|
111
|
+
"adapters.label.requiredChanges": "Cambios requeridos",
|
|
112
|
+
"adapters.label.commandAuthority": "Autoridad de comandos",
|
|
92
113
|
"dashboard.help.summary": "Inicia un dashboard local para preferencias seguras de mustflow y revisión de documentos.",
|
|
93
114
|
"dashboard.help.option.host": "Vincula el dashboard a un host local. Predeterminado: 127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "Vincula el dashboard a un puerto. Predeterminado: 0 elige un puerto disponible",
|
|
95
116
|
"dashboard.help.option.open": "Abre el dashboard en el navegador predeterminado cuando el servidor inicia",
|
|
96
117
|
"dashboard.help.option.noOpen": "Mantiene cerrado el navegador. Es el comportamiento predeterminado",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "Escribe una instantánea HTML estática sin iniciar un servidor",
|
|
119
|
+
"dashboard.help.option.exportJson": "Escribe una instantánea JSON estructurada sin iniciar un servidor",
|
|
120
|
+
"dashboard.help.exit.ok": "El dashboard se inició, se escribió una exportación o se imprimió la ayuda",
|
|
98
121
|
"dashboard.help.exit.fail": "No se pudo iniciar el dashboard o la entrada no fue válida",
|
|
99
122
|
"dashboard.error.invalidPort": "Puerto de dashboard no válido: {port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "Se rechazo el host de dashboard {host}. Usa localhost, 127.0.0.1 o ::1.",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "Usa solo un modo de exportación de dashboard",
|
|
125
|
+
"dashboard.error.exportServerOptions": "La exportación de dashboard no se puede combinar con opciones de servidor",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "La ruta de exportación del dashboard debe quedar dentro de la raíz mustflow: {path}",
|
|
127
|
+
"dashboard.export.wrote": "Exportación de dashboard escrita en {path} ({bytes} bytes)",
|
|
101
128
|
"dashboard.listening": "mf dashboard escuchando en {url}",
|
|
129
|
+
"handoff.help.summary": "Valida un registro JSON restringido de trabajo o handoff sin escribir archivos.",
|
|
130
|
+
"handoff.help.exit.ok": "El registro de handoff es válido",
|
|
131
|
+
"handoff.help.exit.fail": "El registro de handoff no es válido o no se pudo leer",
|
|
132
|
+
"handoff.error.missingAction": "Indica una acción de handoff: validate",
|
|
133
|
+
"handoff.error.unknownAction": "Acción de handoff desconocida: {action}",
|
|
134
|
+
"handoff.error.missingPath": "Falta la ruta del registro de handoff",
|
|
135
|
+
"handoff.error.notFile": "La ruta del registro de handoff debe ser un archivo normal.",
|
|
136
|
+
"handoff.error.tooLarge": "El registro de handoff supera el límite de lectura permitido.",
|
|
137
|
+
"handoff.error.unreadable": "No se pudo leer el registro de handoff: {message}",
|
|
138
|
+
"handoff.title": "mustflow handoff validate",
|
|
139
|
+
"handoff.label.path": "Ruta",
|
|
140
|
+
"handoff.label.status": "Estado",
|
|
141
|
+
"handoff.label.kind": "Tipo",
|
|
142
|
+
"handoff.label.task": "Tarea",
|
|
143
|
+
"handoff.label.issues": "Incidencias",
|
|
144
|
+
"handoff.value.valid": "válido",
|
|
145
|
+
"handoff.value.invalid": "no válido",
|
|
102
146
|
"dashboard.ui.title": "Dashboard de mustflow",
|
|
103
147
|
"dashboard.ui.language": "Idioma",
|
|
104
148
|
"dashboard.ui.noChanges": "Sin cambios",
|
|
@@ -563,7 +607,9 @@ Lee estos archivos antes de trabajar:
|
|
|
563
607
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
608
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
609
|
"run.help.summary": "Ejecuta un comando configurado de una sola ejecución desde .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "Imprime un plan de comando sin ejecutarlo",
|
|
611
|
+
"run.help.option.planOnly": "Alias de --dry-run",
|
|
612
|
+
"run.help.option.json": "Imprime el registro de ejecución o el plan de comando como JSON",
|
|
567
613
|
"run.help.exit.ok": "El comando se completo con un codigo de salida permitido",
|
|
568
614
|
"run.help.exit.fail": "El comando no era válido, fue rechazado, agotó el tiempo o falló",
|
|
569
615
|
"run.error.missingIntent": "Falta el nombre del comando",
|
|
@@ -574,6 +620,13 @@ Lee estos archivos antes de trabajar:
|
|
|
574
620
|
"run.error.stdin": 'El comando "{intent}" debe establecer stdin = "closed"',
|
|
575
621
|
"run.error.timeout": 'El comando "{intent}" debe definir timeout_seconds',
|
|
576
622
|
"run.error.commandSource": 'El comando "{intent}" debe definir argv o mode = "shell" con cmd',
|
|
623
|
+
"run.error.unsafeIntent": 'La intención "{intent}" tiene un nombre no seguro. {detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "Usa un nombre de intención seguro para shell.",
|
|
625
|
+
"run.error.blockedShellBackground": 'La intención "{intent}" está bloqueada. {detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "Los comandos de shell no deben iniciar trabajo en segundo plano.",
|
|
627
|
+
"run.error.cwdOutsideProject": 'El comando "{intent}" tiene un cwd no válido: {detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "El cwd de la intención debe permanecer dentro de la raíz actual.",
|
|
629
|
+
"run.error.conflictingPreviewModes": "Usa --dry-run o --plan-only, no ambos",
|
|
577
630
|
"run.error.timedOut": 'El comando "{intent}" agotó el tiempo después de {seconds} segundos',
|
|
578
631
|
"run.error.startFailed": 'No se pudo iniciar el comando "{intent}": {message}',
|
|
579
632
|
"search.help.summary": "Busca en el índice SQLite local del flujo de trabajo mustflow.",
|
|
@@ -606,6 +659,17 @@ Lee estos archivos antes de trabajar:
|
|
|
606
659
|
"version.check.upToDate": "última versión {version}; ya está actualizado",
|
|
607
660
|
"version.check.updateCommand": "Comando de actualización:",
|
|
608
661
|
"version.error.checkFailed": "No se pudo consultar npm para una versión nueva: {message}",
|
|
662
|
+
"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.",
|
|
663
|
+
"upgrade.help.option.dryRun": "Comprueba el estado del paquete e imprime el plan de actualización del proyecto sin escribir archivos",
|
|
664
|
+
"upgrade.help.exit.ok": "El paquete estaba actualizado y la comprobación de actualización del proyecto terminó",
|
|
665
|
+
"upgrade.help.exit.fail": "Hace falta actualizar el paquete, hay un bloqueo de actualización del proyecto o la entrada es inválida",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "Paquete:",
|
|
668
|
+
"upgrade.projectSection": "Plantilla del proyecto:",
|
|
669
|
+
"upgrade.packageUpdateRequired": "Actualiza primero el paquete mustflow y luego vuelve a ejecutar `mf upgrade`.",
|
|
670
|
+
"upgrade.noFilesWritten": "No se escribieron archivos del proyecto.",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "No se pudo consultar npm para una versión nueva: {message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "Continuando con la plantilla incluida en el CLI actual.",
|
|
609
673
|
"classify.help.summary": "Clasifica rutas cambiadas, superficies publicas y razones de verificacion sin modificar archivos.",
|
|
610
674
|
"classify.help.option.changed": "Lee rutas desde git status --short --untracked-files=all",
|
|
611
675
|
"classify.help.exit.ok": "La clasificacion de cambios fue inspeccionada e impresa",
|
|
@@ -638,6 +702,8 @@ Lee estos archivos antes de trabajar:
|
|
|
638
702
|
"verify.help.summary": "Ejecuta intenciones de verificación configuradas seleccionadas por metadatos required_after.",
|
|
639
703
|
"verify.help.option.reason": "Selecciona la razón required_after que se debe verificar",
|
|
640
704
|
"verify.help.option.fromPlan": "Lee razones de verificación desde un plan JSON dentro de este repositorio",
|
|
705
|
+
"verify.help.option.changed": "Clasifica los cambios actuales de Git y verifica las razones correspondientes",
|
|
706
|
+
"verify.help.option.writePlan": "Escribe el plan de clasificación de cambios dentro de este repositorio",
|
|
641
707
|
"verify.help.option.planOnly": "Imprime el plan de verificación sin ejecutar comandos; requiere --json",
|
|
642
708
|
"verify.help.exit.ok": "Todas las intenciones de verificación seleccionadas pasaron",
|
|
643
709
|
"verify.help.exit.fail": "La verificación falló, fue parcial, quedó bloqueada o la entrada no fue válida",
|
|
@@ -647,10 +713,13 @@ Lee estos archivos antes de trabajar:
|
|
|
647
713
|
"verify.label.status": "Estado",
|
|
648
714
|
"verify.label.results": "Resultados",
|
|
649
715
|
"verify.error.missingReason": "Falta la razón de verificación",
|
|
650
|
-
"verify.error.conflictingInputs": "Usa --reason
|
|
716
|
+
"verify.error.conflictingInputs": "Usa solo uno de --reason, --from-plan o --changed",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan requiere --changed",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only requiere --json",
|
|
652
719
|
"verify.error.invalid_plan_file": "El plan de verificación debe ser un archivo JSON legible",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "El plan de verificación debe ser producido por mf classify --json",
|
|
721
|
+
"verify.error.plan_root_mismatch": "El plan de verificación debe provenir de esta raíz mustflow",
|
|
722
|
+
"verify.error.missing_plan_reasons": "El plan de verificación debe incluir summary.validationReasons",
|
|
654
723
|
"verify.error.plan_path_outside_root": "La ruta del plan de verificación debe permanecer dentro de la raíz mustflow",
|
|
655
724
|
"explain.help.summary": "Explica por qué se aplica una decisión de política de mustflow sin modificar archivos.",
|
|
656
725
|
"explain.help.exit.ok": "La decisión de política se inspeccionó e imprimió",
|
|
@@ -680,10 +749,12 @@ Lee estos archivos antes de trabajar:
|
|
|
680
749
|
"explain.error.unknownTopic": "Tema de explicación desconocido: {topic}",
|
|
681
750
|
"update.help.summary": "Previsualiza o aplica actualizaciones para el flujo de trabajo mustflow instalado.",
|
|
682
751
|
"update.help.option.dryRun": "Imprime el plan de actualizacion sin escribir archivos",
|
|
752
|
+
"update.help.option.diff": "Incluye una vista previa limitada del diff con --dry-run",
|
|
683
753
|
"update.help.option.apply": "Aplica actualizaciones seguras de plantilla cuando no hay cambios locales bloqueados",
|
|
684
754
|
"update.help.exit.ok": "El plan se imprimio o se aplicaron actualizaciones seguras",
|
|
685
755
|
"update.help.exit.fail": "El plan encontró cambios bloqueados, estado faltante o entrada no válida",
|
|
686
756
|
"update.error.cannotCombineModes": "No se pueden combinar --dry-run y --apply.",
|
|
757
|
+
"update.error.diffRequiresDryRun": "Usa --diff con --dry-run.",
|
|
687
758
|
"update.error.missingMode": "Especifica --dry-run o --apply.",
|
|
688
759
|
"update.backup.files": "Se respaldaron {count} {fileWord} en {path}",
|
|
689
760
|
"update.action.created": "Creado {path}",
|
|
@@ -700,6 +771,8 @@ Lee estos archivos antes de trabajar:
|
|
|
700
771
|
"update.plan.wouldUpdate": "Se actualizaría",
|
|
701
772
|
"update.plan.wouldCreate": "Se crearía",
|
|
702
773
|
"update.plan.noUpdates": "No se necesitan actualizaciones de plantilla.",
|
|
774
|
+
"update.diff.title": "Vista previa del diff:",
|
|
775
|
+
"update.diff.unavailable": "vista previa del diff no disponible: {reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "No se escribieron archivos.",
|
|
704
777
|
"update.complete": "mustflow update completo: {updated} actualizados, {created} creados.",
|
|
705
778
|
};
|
package/dist/cli/i18n/fr.js
CHANGED
|
@@ -20,18 +20,21 @@ export const frMessages = {
|
|
|
20
20
|
"value.yes": "oui",
|
|
21
21
|
"value.no": "non",
|
|
22
22
|
"value.none": "aucun",
|
|
23
|
+
"command.adapters.summary": "Inspecte la compatibilité des adaptateurs sans générer de fichiers",
|
|
23
24
|
"command.init.summary": "Copie le flux de travail d'agent mustflow par défaut",
|
|
24
25
|
"command.check.summary": "Valide les fichiers mustflow",
|
|
25
26
|
"command.classify.summary": "Classe les changements et surfaces publiques",
|
|
26
27
|
"command.contractLint.summary": "Vérifie le contrat de commandes",
|
|
27
28
|
"command.status.summary": "Affiche l'état de l'installation locale de mustflow",
|
|
28
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",
|
|
29
31
|
"command.map.summary": "Génère REPO_MAP.md",
|
|
30
32
|
"command.lineEndings.summary": "Inspecte et normalise la politique de fins de ligne",
|
|
31
33
|
"command.run.summary": "Exécute une commande configurée à exécution unique",
|
|
32
34
|
"command.context.summary": "Imprime le contexte d'agent lisible par machine",
|
|
33
35
|
"command.doctor.summary": "Inspecte l'état de mustflow et les prochaines étapes",
|
|
34
36
|
"command.docs.summary": "Suit la file de révision de documentation",
|
|
37
|
+
"command.handoff.summary": "Valide les enregistrements restreints de travail et de handoff",
|
|
35
38
|
"command.index.summary": "Construit l'index SQLite local de mustflow",
|
|
36
39
|
"command.search.summary": "Recherche dans l'index SQLite local de mustflow",
|
|
37
40
|
"command.dashboard.summary": "Démarre le tableau de bord mustflow local",
|
|
@@ -52,6 +55,7 @@ export const frMessages = {
|
|
|
52
55
|
"check.result.passed": "vérification mustflow réussie",
|
|
53
56
|
"check.result.strictPassed": "vérification stricte mustflow réussie",
|
|
54
57
|
"contractLint.help.summary": "Inspecte .mustflow/config/commands.toml pour trouver les erreurs et avertissements du contrat de commandes.",
|
|
58
|
+
"contractLint.help.option.coverage": "Signale aussi la couverture required_after des raisons de classification",
|
|
55
59
|
"contractLint.help.exit.ok": "Le contrat de commandes a été inspecté sans erreur bloquante",
|
|
56
60
|
"contractLint.help.exit.fail": "Des erreurs de contrat de commandes ont été trouvées ou l'entrée est invalide",
|
|
57
61
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +68,11 @@ export const frMessages = {
|
|
|
64
68
|
"contractLint.label.errors": "Erreurs",
|
|
65
69
|
"contractLint.label.warnings": "Avertissements",
|
|
66
70
|
"contractLint.label.sourceFiles": "Fichiers sources",
|
|
71
|
+
"contractLint.label.coverage": "Couverture",
|
|
72
|
+
"contractLint.label.classificationReasons": "Raisons de classification",
|
|
73
|
+
"contractLint.label.requiredAfterReasons": "Raisons required_after",
|
|
74
|
+
"contractLint.label.runnableReasons": "Raisons exécutables",
|
|
75
|
+
"contractLint.label.coverageFindings": "Constats de couverture",
|
|
67
76
|
"contractLint.label.issues": "Problèmes",
|
|
68
77
|
"context.help.summary": "Imprime le contexte d'agent pour la racine mustflow actuelle.",
|
|
69
78
|
"context.help.option.json": "Imprime le JSON de contexte lisible par machine",
|
|
@@ -89,16 +98,51 @@ export const frMessages = {
|
|
|
89
98
|
"label.results": "Résultats",
|
|
90
99
|
"label.comment": "Commentaire",
|
|
91
100
|
"label.mode": "Mode",
|
|
101
|
+
"adapters.help.summary": "Inspecte les fichiers d'adaptateur visibles dans le dépôt sans les générer ni leur donner d'autorité.",
|
|
102
|
+
"adapters.help.exit.ok": "La compatibilité des adaptateurs a été inspectée et affichée",
|
|
103
|
+
"adapters.help.exit.fail": "La commande a reçu une entrée non valide",
|
|
104
|
+
"adapters.error.missingAction": "Indiquez une action adapters : status",
|
|
105
|
+
"adapters.error.unknownAction": "Action adapters inconnue : {action}",
|
|
106
|
+
"adapters.title": "état des adaptateurs mustflow",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "Fichiers d'instructions hôte",
|
|
109
|
+
"adapters.label.adapterSurfaces": "Surfaces d'adaptateur présentes",
|
|
110
|
+
"adapters.label.compatibilityNotes": "Notes de compatibilité",
|
|
111
|
+
"adapters.label.requiredChanges": "Changements requis",
|
|
112
|
+
"adapters.label.commandAuthority": "Autorité des commandes",
|
|
92
113
|
"dashboard.help.summary": "Démarre un tableau de bord local pour les préférences mustflow sûres et la revue des documents.",
|
|
93
114
|
"dashboard.help.option.host": "Lie le tableau de bord à un hôte local. Par défaut : 127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "Lie le tableau de bord à un port. Par défaut : 0 choisit un port disponible",
|
|
95
116
|
"dashboard.help.option.open": "Ouvre le tableau de bord dans le navigateur par défaut après le démarrage du serveur",
|
|
96
117
|
"dashboard.help.option.noOpen": "Garde le navigateur fermé. C'est le comportement par défaut",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "Écrit un instantané HTML statique sans démarrer de serveur",
|
|
119
|
+
"dashboard.help.option.exportJson": "Écrit un instantané JSON structuré sans démarrer de serveur",
|
|
120
|
+
"dashboard.help.exit.ok": "Le tableau de bord a démarré, un export a été écrit, ou l'aide a été imprimée",
|
|
98
121
|
"dashboard.help.exit.fail": "Le tableau de bord n'a pas pu démarrer ou l'entrée était non valide",
|
|
99
122
|
"dashboard.error.invalidPort": "Port de tableau de bord non valide : {port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "Hôte de tableau de bord {host} refusé. Utilisez localhost, 127.0.0.1 ou ::1.",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "Utilisez un seul mode d'export du tableau de bord",
|
|
125
|
+
"dashboard.error.exportServerOptions": "L'export du tableau de bord ne peut pas être combiné avec les options de serveur",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "Le chemin d'export du tableau de bord doit rester dans la racine mustflow : {path}",
|
|
127
|
+
"dashboard.export.wrote": "Export du tableau de bord écrit dans {path} ({bytes} octets)",
|
|
101
128
|
"dashboard.listening": "mf dashboard écoute sur {url}",
|
|
129
|
+
"handoff.help.summary": "Valide un enregistrement JSON restreint de travail ou de handoff sans écrire de fichiers.",
|
|
130
|
+
"handoff.help.exit.ok": "L'enregistrement de handoff est valide",
|
|
131
|
+
"handoff.help.exit.fail": "L'enregistrement de handoff est invalide ou illisible",
|
|
132
|
+
"handoff.error.missingAction": "Indiquez une action handoff : validate",
|
|
133
|
+
"handoff.error.unknownAction": "Action handoff inconnue : {action}",
|
|
134
|
+
"handoff.error.missingPath": "Chemin de l'enregistrement handoff manquant",
|
|
135
|
+
"handoff.error.notFile": "Le chemin de l'enregistrement handoff doit être un fichier normal.",
|
|
136
|
+
"handoff.error.tooLarge": "L'enregistrement handoff dépasse la limite de lecture autorisée.",
|
|
137
|
+
"handoff.error.unreadable": "Impossible de lire l'enregistrement handoff : {message}",
|
|
138
|
+
"handoff.title": "mustflow handoff validate",
|
|
139
|
+
"handoff.label.path": "Chemin",
|
|
140
|
+
"handoff.label.status": "État",
|
|
141
|
+
"handoff.label.kind": "Type",
|
|
142
|
+
"handoff.label.task": "Tâche",
|
|
143
|
+
"handoff.label.issues": "Problèmes",
|
|
144
|
+
"handoff.value.valid": "valide",
|
|
145
|
+
"handoff.value.invalid": "invalide",
|
|
102
146
|
"dashboard.ui.title": "Tableau de bord mustflow",
|
|
103
147
|
"dashboard.ui.language": "Langue",
|
|
104
148
|
"dashboard.ui.noChanges": "Aucun changement",
|
|
@@ -563,7 +607,9 @@ Lisez ces fichiers avant de travailler :
|
|
|
563
607
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
608
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
609
|
"run.help.summary": "Exécute une commande configurée à exécution unique depuis .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "Imprime un plan de commande sans l'exécuter",
|
|
611
|
+
"run.help.option.planOnly": "Alias de --dry-run",
|
|
612
|
+
"run.help.option.json": "Imprime l'enregistrement d'exécution ou le plan de commande en JSON",
|
|
567
613
|
"run.help.exit.ok": "La commande s'est terminée avec un code de sortie autorisé",
|
|
568
614
|
"run.help.exit.fail": "La commande était non valide, refusée, expirée ou a échoué",
|
|
569
615
|
"run.error.missingIntent": "Nom de commande manquant",
|
|
@@ -574,6 +620,13 @@ Lisez ces fichiers avant de travailler :
|
|
|
574
620
|
"run.error.stdin": 'La commande "{intent}" doit définir stdin = "closed"',
|
|
575
621
|
"run.error.timeout": 'La commande "{intent}" doit définir timeout_seconds',
|
|
576
622
|
"run.error.commandSource": 'La commande "{intent}" doit définir argv ou mode = "shell" avec cmd',
|
|
623
|
+
"run.error.unsafeIntent": 'L’intention "{intent}" a un nom non sûr. {detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "Utilisez un nom d’intention sûr pour le shell.",
|
|
625
|
+
"run.error.blockedShellBackground": 'L’intention "{intent}" est bloquée. {detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "Les commandes shell ne doivent pas lancer de travail en arrière-plan.",
|
|
627
|
+
"run.error.cwdOutsideProject": 'La commande "{intent}" a un cwd non valide : {detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "Le cwd de l’intention doit rester dans la racine actuelle.",
|
|
629
|
+
"run.error.conflictingPreviewModes": "Utilisez --dry-run ou --plan-only, pas les deux",
|
|
577
630
|
"run.error.timedOut": 'La commande "{intent}" a expiré après {seconds} secondes',
|
|
578
631
|
"run.error.startFailed": 'Impossible de démarrer la commande "{intent}" : {message}',
|
|
579
632
|
"search.help.summary": "Recherche dans l'index SQLite local du flux de travail mustflow.",
|
|
@@ -606,6 +659,17 @@ Lisez ces fichiers avant de travailler :
|
|
|
606
659
|
"version.check.upToDate": "dernière version {version}; déjà à jour",
|
|
607
660
|
"version.check.updateCommand": "Commande de mise à jour :",
|
|
608
661
|
"version.error.checkFailed": "Impossible de vérifier une nouvelle version sur npm : {message}",
|
|
662
|
+
"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.",
|
|
663
|
+
"upgrade.help.option.dryRun": "Vérifie l'état du paquet et affiche le plan de mise à jour du projet sans écrire de fichiers",
|
|
664
|
+
"upgrade.help.exit.ok": "Le paquet était à jour et la vérification de mise à jour du projet est terminée",
|
|
665
|
+
"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",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "Paquet :",
|
|
668
|
+
"upgrade.projectSection": "Modèle de projet :",
|
|
669
|
+
"upgrade.packageUpdateRequired": "Mettez d'abord à jour le paquet mustflow, puis relancez `mf upgrade`.",
|
|
670
|
+
"upgrade.noFilesWritten": "Aucun fichier du projet n'a été écrit.",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "Impossible de vérifier une nouvelle version sur npm : {message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "Poursuite avec le modèle inclus dans le CLI actuel.",
|
|
609
673
|
"classify.help.summary": "Classe les chemins modifies, les surfaces publiques et les raisons de verification sans modifier les fichiers.",
|
|
610
674
|
"classify.help.option.changed": "Lire les chemins depuis git status --short --untracked-files=all",
|
|
611
675
|
"classify.help.exit.ok": "La classification des changements a ete inspectee et affichee",
|
|
@@ -638,6 +702,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
638
702
|
"verify.help.summary": "Exécute les intentions de vérification configurées sélectionnées par les métadonnées required_after.",
|
|
639
703
|
"verify.help.option.reason": "Sélectionne la raison required_after à vérifier",
|
|
640
704
|
"verify.help.option.fromPlan": "Lit les raisons de vérification depuis un plan JSON dans ce dépôt",
|
|
705
|
+
"verify.help.option.changed": "Classe les changements Git actuels et vérifie les raisons correspondantes",
|
|
706
|
+
"verify.help.option.writePlan": "Écrit le plan de classification des changements dans ce dépôt",
|
|
641
707
|
"verify.help.option.planOnly": "Affiche le plan de vérification sans exécuter de commandes; nécessite --json",
|
|
642
708
|
"verify.help.exit.ok": "Toutes les intentions de vérification sélectionnées ont réussi",
|
|
643
709
|
"verify.help.exit.fail": "La vérification a échoué, est partielle, est bloquée ou l'entrée est invalide",
|
|
@@ -647,10 +713,13 @@ Lisez ces fichiers avant de travailler :
|
|
|
647
713
|
"verify.label.status": "État",
|
|
648
714
|
"verify.label.results": "Résultats",
|
|
649
715
|
"verify.error.missingReason": "Raison de vérification manquante",
|
|
650
|
-
"verify.error.conflictingInputs": "Utilisez --reason
|
|
716
|
+
"verify.error.conflictingInputs": "Utilisez un seul de --reason, --from-plan ou --changed",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan nécessite --changed",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only nécessite --json",
|
|
652
719
|
"verify.error.invalid_plan_file": "Le plan de vérification doit être un fichier JSON lisible",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "Le plan de vérification doit être produit par mf classify --json",
|
|
721
|
+
"verify.error.plan_root_mismatch": "Le plan de vérification doit venir de cette racine mustflow",
|
|
722
|
+
"verify.error.missing_plan_reasons": "Le plan de vérification doit inclure summary.validationReasons",
|
|
654
723
|
"verify.error.plan_path_outside_root": "Le chemin du plan de vérification doit rester dans la racine mustflow",
|
|
655
724
|
"explain.help.summary": "Explique pourquoi une décision de politique mustflow s'applique sans modifier de fichiers.",
|
|
656
725
|
"explain.help.exit.ok": "La décision de politique a été inspectée et affichée",
|
|
@@ -680,10 +749,12 @@ Lisez ces fichiers avant de travailler :
|
|
|
680
749
|
"explain.error.unknownTopic": "Sujet d'explication inconnu : {topic}",
|
|
681
750
|
"update.help.summary": "Prévisualise ou applique les mises à jour du flux de travail mustflow installé.",
|
|
682
751
|
"update.help.option.dryRun": "Imprime le plan de mise à jour sans écrire de fichiers",
|
|
752
|
+
"update.help.option.diff": "Inclut un aperçu diff limité avec --dry-run",
|
|
683
753
|
"update.help.option.apply": "Applique les mises à jour sûres du modèle lorsqu'aucun changement local n'est bloqué",
|
|
684
754
|
"update.help.exit.ok": "Le plan a été imprimé ou des mises à jour sûres ont été appliquées",
|
|
685
755
|
"update.help.exit.fail": "Le plan a trouvé des changements bloqués, un état manquant ou une entrée non valide",
|
|
686
756
|
"update.error.cannotCombineModes": "Impossible de combiner --dry-run et --apply.",
|
|
757
|
+
"update.error.diffRequiresDryRun": "Utilisez --diff avec --dry-run.",
|
|
687
758
|
"update.error.missingMode": "Spécifiez --dry-run ou --apply.",
|
|
688
759
|
"update.backup.files": "{count} {fileWord} sauvegardés dans {path}",
|
|
689
760
|
"update.action.created": "Créé {path}",
|
|
@@ -700,6 +771,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
700
771
|
"update.plan.wouldUpdate": "Mettrait à jour",
|
|
701
772
|
"update.plan.wouldCreate": "Créerait",
|
|
702
773
|
"update.plan.noUpdates": "Aucune mise à jour de modèle nécessaire.",
|
|
774
|
+
"update.diff.title": "Aperçu diff :",
|
|
775
|
+
"update.diff.unavailable": "aperçu diff indisponible : {reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "Aucun fichier n'a été écrit.",
|
|
704
777
|
"update.complete": "mustflow update terminé : {updated} mis à jour, {created} créés.",
|
|
705
778
|
};
|