mustflow 1.18.16 → 1.30.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 +16 -6
- 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 +97 -136
- package/dist/cli/commands/update.js +91 -61
- package/dist/cli/commands/verify.js +230 -137
- package/dist/cli/i18n/en.js +65 -4
- package/dist/cli/i18n/es.js +65 -4
- package/dist/cli/i18n/fr.js +65 -4
- package/dist/cli/i18n/hi.js +65 -4
- package/dist/cli/i18n/ko.js +65 -4
- package/dist/cli/i18n/zh.js +65 -4
- package/dist/cli/index.js +11 -0
- package/dist/cli/lib/command-registry.js +10 -0
- package/dist/cli/lib/dashboard-export.js +775 -0
- package/dist/cli/lib/local-index.js +22 -6
- package/dist/cli/lib/run-plan.js +222 -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 +22 -0
- package/dist/core/adapter-compatibility.js +235 -0
- package/dist/core/change-classification.js +9 -0
- package/dist/core/change-verification.js +10 -3
- package/dist/core/check-issues.js +4 -0
- package/dist/core/command-contract-validation.js +14 -0
- package/dist/core/command-cwd.js +18 -6
- package/dist/core/command-env.js +91 -0
- package/dist/core/contract-lint.js +165 -3
- package/dist/core/contract-models.js +172 -0
- package/dist/core/dashboard-verification.js +2 -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 +16 -0
- package/dist/core/run-receipt.js +46 -7
- package/dist/core/run-write-drift.js +180 -0
- package/dist/core/secret-redaction.js +39 -0
- package/dist/core/source-anchors.js +3 -5
- package/dist/core/verification-decision-graph.js +223 -0
- package/package.json +3 -1
- package/schemas/README.md +11 -4
- package/schemas/adapter-compatibility-report.schema.json +184 -0
- package/schemas/change-verification-report.schema.json +133 -1
- package/schemas/commands.schema.json +8 -1
- package/schemas/contract-lint-report.schema.json +48 -0
- package/schemas/explain-report.schema.json +265 -2
- package/schemas/handoff-validation-report.schema.json +68 -0
- package/schemas/run-receipt.schema.json +74 -1
- package/templates/default/common/.mustflow/config/commands.toml +2 -0
- 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,6 +20,7 @@ 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",
|
|
@@ -32,6 +33,7 @@ export const enMessages = {
|
|
|
32
33
|
"command.context.summary": "Print machine-readable agent context",
|
|
33
34
|
"command.doctor.summary": "Inspect mustflow health and next steps",
|
|
34
35
|
"command.docs.summary": "Track documentation review queue entries",
|
|
36
|
+
"command.handoff.summary": "Validate restricted work-item and handoff records",
|
|
35
37
|
"command.index.summary": "Build the local mustflow SQLite index",
|
|
36
38
|
"command.search.summary": "Search the local mustflow SQLite index",
|
|
37
39
|
"command.dashboard.summary": "Start the local mustflow dashboard",
|
|
@@ -52,6 +54,7 @@ export const enMessages = {
|
|
|
52
54
|
"check.result.passed": "mustflow check passed",
|
|
53
55
|
"check.result.strictPassed": "mustflow strict check passed",
|
|
54
56
|
"contractLint.help.summary": "Inspect .mustflow/config/commands.toml for command-contract errors and warnings.",
|
|
57
|
+
"contractLint.help.option.coverage": "Also report required_after coverage for change-classification reasons",
|
|
55
58
|
"contractLint.help.exit.ok": "The command contract was inspected without blocking errors",
|
|
56
59
|
"contractLint.help.exit.fail": "Command-contract errors were found or input was invalid",
|
|
57
60
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +67,11 @@ export const enMessages = {
|
|
|
64
67
|
"contractLint.label.errors": "Errors",
|
|
65
68
|
"contractLint.label.warnings": "Warnings",
|
|
66
69
|
"contractLint.label.sourceFiles": "Source files",
|
|
70
|
+
"contractLint.label.coverage": "Coverage",
|
|
71
|
+
"contractLint.label.classificationReasons": "Classification reasons",
|
|
72
|
+
"contractLint.label.requiredAfterReasons": "required_after reasons",
|
|
73
|
+
"contractLint.label.runnableReasons": "Runnable reasons",
|
|
74
|
+
"contractLint.label.coverageFindings": "Coverage findings",
|
|
67
75
|
"contractLint.label.issues": "Issues",
|
|
68
76
|
"context.help.summary": "Print the agent context for the current mustflow root.",
|
|
69
77
|
"context.help.option.json": "Print machine-readable context JSON",
|
|
@@ -89,16 +97,51 @@ export const enMessages = {
|
|
|
89
97
|
"label.results": "Results",
|
|
90
98
|
"label.comment": "Comment",
|
|
91
99
|
"label.mode": "Mode",
|
|
100
|
+
"adapters.help.summary": "Inspect repository-visible host adapter files without generating or authorizing adapter surfaces.",
|
|
101
|
+
"adapters.help.exit.ok": "Adapter compatibility was inspected and printed",
|
|
102
|
+
"adapters.help.exit.fail": "The command received invalid input",
|
|
103
|
+
"adapters.error.missingAction": "Specify an adapters action: status",
|
|
104
|
+
"adapters.error.unknownAction": "Unknown adapters action: {action}",
|
|
105
|
+
"adapters.title": "mustflow adapters status",
|
|
106
|
+
"adapters.label.agents": "AGENTS.md",
|
|
107
|
+
"adapters.label.hostInstructionFiles": "Host instruction files",
|
|
108
|
+
"adapters.label.adapterSurfaces": "Adapter surfaces present",
|
|
109
|
+
"adapters.label.compatibilityNotes": "Compatibility notes",
|
|
110
|
+
"adapters.label.requiredChanges": "Required changes",
|
|
111
|
+
"adapters.label.commandAuthority": "Command authority",
|
|
92
112
|
"dashboard.help.summary": "Start a local dashboard for safe mustflow preferences and document review.",
|
|
93
113
|
"dashboard.help.option.host": "Bind the dashboard to a local host. Default: 127.0.0.1",
|
|
94
114
|
"dashboard.help.option.port": "Bind the dashboard to a port. Default: 0 chooses an available port",
|
|
95
115
|
"dashboard.help.option.open": "Open the dashboard in the default browser after the server starts",
|
|
96
116
|
"dashboard.help.option.noOpen": "Keep the browser closed. This is the default",
|
|
97
|
-
"dashboard.help.
|
|
117
|
+
"dashboard.help.option.export": "Write a static HTML snapshot without starting a server",
|
|
118
|
+
"dashboard.help.option.exportJson": "Write a structured JSON snapshot without starting a server",
|
|
119
|
+
"dashboard.help.exit.ok": "Dashboard was started, an export was written, or help was printed",
|
|
98
120
|
"dashboard.help.exit.fail": "Dashboard could not start or input was invalid",
|
|
99
121
|
"dashboard.error.invalidPort": "Invalid dashboard port: {port}",
|
|
100
122
|
"dashboard.error.nonLocalHost": "Refused dashboard host {host}. Use localhost, 127.0.0.1, or ::1.",
|
|
123
|
+
"dashboard.error.conflictingExportModes": "Use only one dashboard export mode",
|
|
124
|
+
"dashboard.error.exportServerOptions": "Dashboard export cannot be combined with server options",
|
|
125
|
+
"dashboard.error.exportPathOutsideRoot": "Dashboard export path must stay inside the mustflow root: {path}",
|
|
126
|
+
"dashboard.export.wrote": "Wrote dashboard export to {path} ({bytes} bytes)",
|
|
101
127
|
"dashboard.listening": "mf dashboard listening at {url}",
|
|
128
|
+
"handoff.help.summary": "Validate a restricted work-item or handoff JSON record without writing files.",
|
|
129
|
+
"handoff.help.exit.ok": "The handoff record is valid",
|
|
130
|
+
"handoff.help.exit.fail": "The handoff record is invalid or could not be read",
|
|
131
|
+
"handoff.error.missingAction": "Specify a handoff action: validate",
|
|
132
|
+
"handoff.error.unknownAction": "Unknown handoff action: {action}",
|
|
133
|
+
"handoff.error.missingPath": "Missing handoff record path",
|
|
134
|
+
"handoff.error.notFile": "Handoff record path must be a regular file.",
|
|
135
|
+
"handoff.error.tooLarge": "Handoff record is larger than the allowed read limit.",
|
|
136
|
+
"handoff.error.unreadable": "Could not read handoff record: {message}",
|
|
137
|
+
"handoff.title": "mustflow handoff validate",
|
|
138
|
+
"handoff.label.path": "Path",
|
|
139
|
+
"handoff.label.status": "Status",
|
|
140
|
+
"handoff.label.kind": "Kind",
|
|
141
|
+
"handoff.label.task": "Task",
|
|
142
|
+
"handoff.label.issues": "Issues",
|
|
143
|
+
"handoff.value.valid": "valid",
|
|
144
|
+
"handoff.value.invalid": "invalid",
|
|
102
145
|
"dashboard.ui.title": "mustflow dashboard",
|
|
103
146
|
"dashboard.ui.language": "Language",
|
|
104
147
|
"dashboard.ui.noChanges": "No changes",
|
|
@@ -563,7 +606,9 @@ Read these files before working:
|
|
|
563
606
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
607
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
608
|
"run.help.summary": "Run a configured oneshot command from .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
609
|
+
"run.help.option.dryRun": "Print a non-executing command plan",
|
|
610
|
+
"run.help.option.planOnly": "Alias for --dry-run",
|
|
611
|
+
"run.help.option.json": "Print the run record or command plan as JSON",
|
|
567
612
|
"run.help.exit.ok": "The command completed with an allowed exit code",
|
|
568
613
|
"run.help.exit.fail": "The command was invalid, refused, timed out, or failed",
|
|
569
614
|
"run.error.missingIntent": "Missing command name",
|
|
@@ -574,6 +619,13 @@ Read these files before working:
|
|
|
574
619
|
"run.error.stdin": 'Command "{intent}" must set stdin = "closed"',
|
|
575
620
|
"run.error.timeout": 'Command "{intent}" must define timeout_seconds',
|
|
576
621
|
"run.error.commandSource": 'Command "{intent}" must define argv or mode = "shell" with cmd',
|
|
622
|
+
"run.error.unsafeIntent": 'Intent "{intent}" has an unsafe name. {detail}',
|
|
623
|
+
"run.error.unsafeIntentDetail": "Use a shell-safe intent name.",
|
|
624
|
+
"run.error.blockedShellBackground": 'Intent "{intent}" is blocked. {detail}',
|
|
625
|
+
"run.error.blockedShellBackgroundDetail": "Shell commands must not spawn background work.",
|
|
626
|
+
"run.error.cwdOutsideProject": 'Command "{intent}" has an invalid cwd: {detail}',
|
|
627
|
+
"run.error.cwdOutsideProjectDetail": "Intent cwd must stay inside the current root.",
|
|
628
|
+
"run.error.conflictingPreviewModes": "Use either --dry-run or --plan-only, not both",
|
|
577
629
|
"run.error.timedOut": 'Command "{intent}" timed out after {seconds} seconds',
|
|
578
630
|
"run.error.startFailed": 'Command "{intent}" failed to start: {message}',
|
|
579
631
|
"search.help.summary": "Search the local SQLite index for the mustflow workflow.",
|
|
@@ -638,6 +690,8 @@ Read these files before working:
|
|
|
638
690
|
"verify.help.summary": "Run configured verification intents selected by required_after metadata.",
|
|
639
691
|
"verify.help.option.reason": "Select the required_after reason to verify",
|
|
640
692
|
"verify.help.option.fromPlan": "Read verification reasons from a JSON plan inside this repository",
|
|
693
|
+
"verify.help.option.changed": "Classify current Git changes and verify the matching reasons",
|
|
694
|
+
"verify.help.option.writePlan": "Write the changed-file classification plan inside this repository",
|
|
641
695
|
"verify.help.option.planOnly": "Print the verification plan without running commands; requires --json",
|
|
642
696
|
"verify.help.exit.ok": "All selected verification intents passed",
|
|
643
697
|
"verify.help.exit.fail": "Verification failed, was partial, was blocked, or input was invalid",
|
|
@@ -647,10 +701,13 @@ Read these files before working:
|
|
|
647
701
|
"verify.label.status": "Status",
|
|
648
702
|
"verify.label.results": "Results",
|
|
649
703
|
"verify.error.missingReason": "Missing verification reason",
|
|
650
|
-
"verify.error.conflictingInputs": "Use
|
|
704
|
+
"verify.error.conflictingInputs": "Use only one of --reason, --from-plan, or --changed",
|
|
705
|
+
"verify.error.writePlanRequiresChanged": "--write-plan requires --changed",
|
|
651
706
|
"verify.error.planOnlyJson": "--plan-only requires --json",
|
|
652
707
|
"verify.error.invalid_plan_file": "Verification plan must be a readable JSON file",
|
|
653
|
-
"verify.error.
|
|
708
|
+
"verify.error.unsupported_plan_source": "Verification plan must be produced by mf classify --json",
|
|
709
|
+
"verify.error.plan_root_mismatch": "Verification plan must come from this mustflow root",
|
|
710
|
+
"verify.error.missing_plan_reasons": "Verification plan must include summary.validationReasons",
|
|
654
711
|
"verify.error.plan_path_outside_root": "Verification plan path must stay inside the mustflow root",
|
|
655
712
|
"explain.help.summary": "Explain why a mustflow policy decision applies without modifying files.",
|
|
656
713
|
"explain.help.exit.ok": "The policy decision was inspected and printed",
|
|
@@ -680,10 +737,12 @@ Read these files before working:
|
|
|
680
737
|
"explain.error.unknownTopic": "Unknown explain topic: {topic}",
|
|
681
738
|
"update.help.summary": "Preview or apply updates for the installed mustflow workflow.",
|
|
682
739
|
"update.help.option.dryRun": "Print the update plan without writing files",
|
|
740
|
+
"update.help.option.diff": "Include a bounded diff preview with --dry-run",
|
|
683
741
|
"update.help.option.apply": "Apply safe template updates when no local changes are blocked",
|
|
684
742
|
"update.help.exit.ok": "Plan was printed or safe updates were applied",
|
|
685
743
|
"update.help.exit.fail": "Plan found blocked changes, missing state, or invalid input",
|
|
686
744
|
"update.error.cannotCombineModes": "Cannot combine --dry-run and --apply.",
|
|
745
|
+
"update.error.diffRequiresDryRun": "Use --diff with --dry-run.",
|
|
687
746
|
"update.error.missingMode": "Specify --dry-run or --apply.",
|
|
688
747
|
"update.backup.files": "Backed up {count} {fileWord} to {path}",
|
|
689
748
|
"update.action.created": "Created {path}",
|
|
@@ -700,6 +759,8 @@ Read these files before working:
|
|
|
700
759
|
"update.plan.wouldUpdate": "Would update",
|
|
701
760
|
"update.plan.wouldCreate": "Would create",
|
|
702
761
|
"update.plan.noUpdates": "No template updates needed.",
|
|
762
|
+
"update.diff.title": "Diff preview:",
|
|
763
|
+
"update.diff.unavailable": "diff preview unavailable: {reason}",
|
|
703
764
|
"update.plan.noFilesWritten": "No files were written.",
|
|
704
765
|
"update.complete": "mustflow update complete: {updated} updated, {created} created.",
|
|
705
766
|
};
|
package/dist/cli/i18n/es.js
CHANGED
|
@@ -20,6 +20,7 @@ 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",
|
|
@@ -32,6 +33,7 @@ export const esMessages = {
|
|
|
32
33
|
"command.context.summary": "Imprime contexto de agente legible por máquinas",
|
|
33
34
|
"command.doctor.summary": "Inspecciona la salud de mustflow y los siguientes pasos",
|
|
34
35
|
"command.docs.summary": "Rastrea la cola de revisión de documentación",
|
|
36
|
+
"command.handoff.summary": "Valida registros restringidos de trabajo y handoff",
|
|
35
37
|
"command.index.summary": "Construye el índice SQLite local de mustflow",
|
|
36
38
|
"command.search.summary": "Busca en el índice SQLite local de mustflow",
|
|
37
39
|
"command.dashboard.summary": "Inicia el dashboard local de mustflow",
|
|
@@ -52,6 +54,7 @@ export const esMessages = {
|
|
|
52
54
|
"check.result.passed": "comprobacion mustflow superada",
|
|
53
55
|
"check.result.strictPassed": "comprobacion estricta de mustflow superada",
|
|
54
56
|
"contractLint.help.summary": "Inspecciona .mustflow/config/commands.toml para encontrar errores y advertencias del contrato de comandos.",
|
|
57
|
+
"contractLint.help.option.coverage": "También informa cobertura required_after para razones de clasificación de cambios",
|
|
55
58
|
"contractLint.help.exit.ok": "El contrato de comandos se inspeccionó sin errores bloqueantes",
|
|
56
59
|
"contractLint.help.exit.fail": "Se encontraron errores del contrato de comandos o la entrada no es válida",
|
|
57
60
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +67,11 @@ export const esMessages = {
|
|
|
64
67
|
"contractLint.label.errors": "Errores",
|
|
65
68
|
"contractLint.label.warnings": "Advertencias",
|
|
66
69
|
"contractLint.label.sourceFiles": "Archivos fuente",
|
|
70
|
+
"contractLint.label.coverage": "Cobertura",
|
|
71
|
+
"contractLint.label.classificationReasons": "Razones de clasificación",
|
|
72
|
+
"contractLint.label.requiredAfterReasons": "Razones required_after",
|
|
73
|
+
"contractLint.label.runnableReasons": "Razones ejecutables",
|
|
74
|
+
"contractLint.label.coverageFindings": "Hallazgos de cobertura",
|
|
67
75
|
"contractLint.label.issues": "Problemas",
|
|
68
76
|
"context.help.summary": "Imprime el contexto de agente para la raíz mustflow actual.",
|
|
69
77
|
"context.help.option.json": "Imprime JSON de contexto legible por máquinas",
|
|
@@ -89,16 +97,51 @@ export const esMessages = {
|
|
|
89
97
|
"label.results": "Resultados",
|
|
90
98
|
"label.comment": "Comentario",
|
|
91
99
|
"label.mode": "Modo",
|
|
100
|
+
"adapters.help.summary": "Inspecciona archivos de adaptadores visibles en el repositorio sin generarlos ni autorizarlos.",
|
|
101
|
+
"adapters.help.exit.ok": "La compatibilidad de adaptadores fue inspeccionada e impresa",
|
|
102
|
+
"adapters.help.exit.fail": "El comando recibió entrada inválida",
|
|
103
|
+
"adapters.error.missingAction": "Indica una acción de adapters: status",
|
|
104
|
+
"adapters.error.unknownAction": "Acción de adapters desconocida: {action}",
|
|
105
|
+
"adapters.title": "estado de adaptadores mustflow",
|
|
106
|
+
"adapters.label.agents": "AGENTS.md",
|
|
107
|
+
"adapters.label.hostInstructionFiles": "Archivos de instrucciones del host",
|
|
108
|
+
"adapters.label.adapterSurfaces": "Superficies de adaptador presentes",
|
|
109
|
+
"adapters.label.compatibilityNotes": "Notas de compatibilidad",
|
|
110
|
+
"adapters.label.requiredChanges": "Cambios requeridos",
|
|
111
|
+
"adapters.label.commandAuthority": "Autoridad de comandos",
|
|
92
112
|
"dashboard.help.summary": "Inicia un dashboard local para preferencias seguras de mustflow y revisión de documentos.",
|
|
93
113
|
"dashboard.help.option.host": "Vincula el dashboard a un host local. Predeterminado: 127.0.0.1",
|
|
94
114
|
"dashboard.help.option.port": "Vincula el dashboard a un puerto. Predeterminado: 0 elige un puerto disponible",
|
|
95
115
|
"dashboard.help.option.open": "Abre el dashboard en el navegador predeterminado cuando el servidor inicia",
|
|
96
116
|
"dashboard.help.option.noOpen": "Mantiene cerrado el navegador. Es el comportamiento predeterminado",
|
|
97
|
-
"dashboard.help.
|
|
117
|
+
"dashboard.help.option.export": "Escribe una instantánea HTML estática sin iniciar un servidor",
|
|
118
|
+
"dashboard.help.option.exportJson": "Escribe una instantánea JSON estructurada sin iniciar un servidor",
|
|
119
|
+
"dashboard.help.exit.ok": "El dashboard se inició, se escribió una exportación o se imprimió la ayuda",
|
|
98
120
|
"dashboard.help.exit.fail": "No se pudo iniciar el dashboard o la entrada no fue válida",
|
|
99
121
|
"dashboard.error.invalidPort": "Puerto de dashboard no válido: {port}",
|
|
100
122
|
"dashboard.error.nonLocalHost": "Se rechazo el host de dashboard {host}. Usa localhost, 127.0.0.1 o ::1.",
|
|
123
|
+
"dashboard.error.conflictingExportModes": "Usa solo un modo de exportación de dashboard",
|
|
124
|
+
"dashboard.error.exportServerOptions": "La exportación de dashboard no se puede combinar con opciones de servidor",
|
|
125
|
+
"dashboard.error.exportPathOutsideRoot": "La ruta de exportación del dashboard debe quedar dentro de la raíz mustflow: {path}",
|
|
126
|
+
"dashboard.export.wrote": "Exportación de dashboard escrita en {path} ({bytes} bytes)",
|
|
101
127
|
"dashboard.listening": "mf dashboard escuchando en {url}",
|
|
128
|
+
"handoff.help.summary": "Valida un registro JSON restringido de trabajo o handoff sin escribir archivos.",
|
|
129
|
+
"handoff.help.exit.ok": "El registro de handoff es válido",
|
|
130
|
+
"handoff.help.exit.fail": "El registro de handoff no es válido o no se pudo leer",
|
|
131
|
+
"handoff.error.missingAction": "Indica una acción de handoff: validate",
|
|
132
|
+
"handoff.error.unknownAction": "Acción de handoff desconocida: {action}",
|
|
133
|
+
"handoff.error.missingPath": "Falta la ruta del registro de handoff",
|
|
134
|
+
"handoff.error.notFile": "La ruta del registro de handoff debe ser un archivo normal.",
|
|
135
|
+
"handoff.error.tooLarge": "El registro de handoff supera el límite de lectura permitido.",
|
|
136
|
+
"handoff.error.unreadable": "No se pudo leer el registro de handoff: {message}",
|
|
137
|
+
"handoff.title": "mustflow handoff validate",
|
|
138
|
+
"handoff.label.path": "Ruta",
|
|
139
|
+
"handoff.label.status": "Estado",
|
|
140
|
+
"handoff.label.kind": "Tipo",
|
|
141
|
+
"handoff.label.task": "Tarea",
|
|
142
|
+
"handoff.label.issues": "Incidencias",
|
|
143
|
+
"handoff.value.valid": "válido",
|
|
144
|
+
"handoff.value.invalid": "no válido",
|
|
102
145
|
"dashboard.ui.title": "Dashboard de mustflow",
|
|
103
146
|
"dashboard.ui.language": "Idioma",
|
|
104
147
|
"dashboard.ui.noChanges": "Sin cambios",
|
|
@@ -563,7 +606,9 @@ Lee estos archivos antes de trabajar:
|
|
|
563
606
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
607
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
608
|
"run.help.summary": "Ejecuta un comando configurado de una sola ejecución desde .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
609
|
+
"run.help.option.dryRun": "Imprime un plan de comando sin ejecutarlo",
|
|
610
|
+
"run.help.option.planOnly": "Alias de --dry-run",
|
|
611
|
+
"run.help.option.json": "Imprime el registro de ejecución o el plan de comando como JSON",
|
|
567
612
|
"run.help.exit.ok": "El comando se completo con un codigo de salida permitido",
|
|
568
613
|
"run.help.exit.fail": "El comando no era válido, fue rechazado, agotó el tiempo o falló",
|
|
569
614
|
"run.error.missingIntent": "Falta el nombre del comando",
|
|
@@ -574,6 +619,13 @@ Lee estos archivos antes de trabajar:
|
|
|
574
619
|
"run.error.stdin": 'El comando "{intent}" debe establecer stdin = "closed"',
|
|
575
620
|
"run.error.timeout": 'El comando "{intent}" debe definir timeout_seconds',
|
|
576
621
|
"run.error.commandSource": 'El comando "{intent}" debe definir argv o mode = "shell" con cmd',
|
|
622
|
+
"run.error.unsafeIntent": 'La intención "{intent}" tiene un nombre no seguro. {detail}',
|
|
623
|
+
"run.error.unsafeIntentDetail": "Usa un nombre de intención seguro para shell.",
|
|
624
|
+
"run.error.blockedShellBackground": 'La intención "{intent}" está bloqueada. {detail}',
|
|
625
|
+
"run.error.blockedShellBackgroundDetail": "Los comandos de shell no deben iniciar trabajo en segundo plano.",
|
|
626
|
+
"run.error.cwdOutsideProject": 'El comando "{intent}" tiene un cwd no válido: {detail}',
|
|
627
|
+
"run.error.cwdOutsideProjectDetail": "El cwd de la intención debe permanecer dentro de la raíz actual.",
|
|
628
|
+
"run.error.conflictingPreviewModes": "Usa --dry-run o --plan-only, no ambos",
|
|
577
629
|
"run.error.timedOut": 'El comando "{intent}" agotó el tiempo después de {seconds} segundos',
|
|
578
630
|
"run.error.startFailed": 'No se pudo iniciar el comando "{intent}": {message}',
|
|
579
631
|
"search.help.summary": "Busca en el índice SQLite local del flujo de trabajo mustflow.",
|
|
@@ -638,6 +690,8 @@ Lee estos archivos antes de trabajar:
|
|
|
638
690
|
"verify.help.summary": "Ejecuta intenciones de verificación configuradas seleccionadas por metadatos required_after.",
|
|
639
691
|
"verify.help.option.reason": "Selecciona la razón required_after que se debe verificar",
|
|
640
692
|
"verify.help.option.fromPlan": "Lee razones de verificación desde un plan JSON dentro de este repositorio",
|
|
693
|
+
"verify.help.option.changed": "Clasifica los cambios actuales de Git y verifica las razones correspondientes",
|
|
694
|
+
"verify.help.option.writePlan": "Escribe el plan de clasificación de cambios dentro de este repositorio",
|
|
641
695
|
"verify.help.option.planOnly": "Imprime el plan de verificación sin ejecutar comandos; requiere --json",
|
|
642
696
|
"verify.help.exit.ok": "Todas las intenciones de verificación seleccionadas pasaron",
|
|
643
697
|
"verify.help.exit.fail": "La verificación falló, fue parcial, quedó bloqueada o la entrada no fue válida",
|
|
@@ -647,10 +701,13 @@ Lee estos archivos antes de trabajar:
|
|
|
647
701
|
"verify.label.status": "Estado",
|
|
648
702
|
"verify.label.results": "Resultados",
|
|
649
703
|
"verify.error.missingReason": "Falta la razón de verificación",
|
|
650
|
-
"verify.error.conflictingInputs": "Usa --reason
|
|
704
|
+
"verify.error.conflictingInputs": "Usa solo uno de --reason, --from-plan o --changed",
|
|
705
|
+
"verify.error.writePlanRequiresChanged": "--write-plan requiere --changed",
|
|
651
706
|
"verify.error.planOnlyJson": "--plan-only requiere --json",
|
|
652
707
|
"verify.error.invalid_plan_file": "El plan de verificación debe ser un archivo JSON legible",
|
|
653
|
-
"verify.error.
|
|
708
|
+
"verify.error.unsupported_plan_source": "El plan de verificación debe ser producido por mf classify --json",
|
|
709
|
+
"verify.error.plan_root_mismatch": "El plan de verificación debe provenir de esta raíz mustflow",
|
|
710
|
+
"verify.error.missing_plan_reasons": "El plan de verificación debe incluir summary.validationReasons",
|
|
654
711
|
"verify.error.plan_path_outside_root": "La ruta del plan de verificación debe permanecer dentro de la raíz mustflow",
|
|
655
712
|
"explain.help.summary": "Explica por qué se aplica una decisión de política de mustflow sin modificar archivos.",
|
|
656
713
|
"explain.help.exit.ok": "La decisión de política se inspeccionó e imprimió",
|
|
@@ -680,10 +737,12 @@ Lee estos archivos antes de trabajar:
|
|
|
680
737
|
"explain.error.unknownTopic": "Tema de explicación desconocido: {topic}",
|
|
681
738
|
"update.help.summary": "Previsualiza o aplica actualizaciones para el flujo de trabajo mustflow instalado.",
|
|
682
739
|
"update.help.option.dryRun": "Imprime el plan de actualizacion sin escribir archivos",
|
|
740
|
+
"update.help.option.diff": "Incluye una vista previa limitada del diff con --dry-run",
|
|
683
741
|
"update.help.option.apply": "Aplica actualizaciones seguras de plantilla cuando no hay cambios locales bloqueados",
|
|
684
742
|
"update.help.exit.ok": "El plan se imprimio o se aplicaron actualizaciones seguras",
|
|
685
743
|
"update.help.exit.fail": "El plan encontró cambios bloqueados, estado faltante o entrada no válida",
|
|
686
744
|
"update.error.cannotCombineModes": "No se pueden combinar --dry-run y --apply.",
|
|
745
|
+
"update.error.diffRequiresDryRun": "Usa --diff con --dry-run.",
|
|
687
746
|
"update.error.missingMode": "Especifica --dry-run o --apply.",
|
|
688
747
|
"update.backup.files": "Se respaldaron {count} {fileWord} en {path}",
|
|
689
748
|
"update.action.created": "Creado {path}",
|
|
@@ -700,6 +759,8 @@ Lee estos archivos antes de trabajar:
|
|
|
700
759
|
"update.plan.wouldUpdate": "Se actualizaría",
|
|
701
760
|
"update.plan.wouldCreate": "Se crearía",
|
|
702
761
|
"update.plan.noUpdates": "No se necesitan actualizaciones de plantilla.",
|
|
762
|
+
"update.diff.title": "Vista previa del diff:",
|
|
763
|
+
"update.diff.unavailable": "vista previa del diff no disponible: {reason}",
|
|
703
764
|
"update.plan.noFilesWritten": "No se escribieron archivos.",
|
|
704
765
|
"update.complete": "mustflow update completo: {updated} actualizados, {created} creados.",
|
|
705
766
|
};
|
package/dist/cli/i18n/fr.js
CHANGED
|
@@ -20,6 +20,7 @@ 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",
|
|
@@ -32,6 +33,7 @@ export const frMessages = {
|
|
|
32
33
|
"command.context.summary": "Imprime le contexte d'agent lisible par machine",
|
|
33
34
|
"command.doctor.summary": "Inspecte l'état de mustflow et les prochaines étapes",
|
|
34
35
|
"command.docs.summary": "Suit la file de révision de documentation",
|
|
36
|
+
"command.handoff.summary": "Valide les enregistrements restreints de travail et de handoff",
|
|
35
37
|
"command.index.summary": "Construit l'index SQLite local de mustflow",
|
|
36
38
|
"command.search.summary": "Recherche dans l'index SQLite local de mustflow",
|
|
37
39
|
"command.dashboard.summary": "Démarre le tableau de bord mustflow local",
|
|
@@ -52,6 +54,7 @@ export const frMessages = {
|
|
|
52
54
|
"check.result.passed": "vérification mustflow réussie",
|
|
53
55
|
"check.result.strictPassed": "vérification stricte mustflow réussie",
|
|
54
56
|
"contractLint.help.summary": "Inspecte .mustflow/config/commands.toml pour trouver les erreurs et avertissements du contrat de commandes.",
|
|
57
|
+
"contractLint.help.option.coverage": "Signale aussi la couverture required_after des raisons de classification",
|
|
55
58
|
"contractLint.help.exit.ok": "Le contrat de commandes a été inspecté sans erreur bloquante",
|
|
56
59
|
"contractLint.help.exit.fail": "Des erreurs de contrat de commandes ont été trouvées ou l'entrée est invalide",
|
|
57
60
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +67,11 @@ export const frMessages = {
|
|
|
64
67
|
"contractLint.label.errors": "Erreurs",
|
|
65
68
|
"contractLint.label.warnings": "Avertissements",
|
|
66
69
|
"contractLint.label.sourceFiles": "Fichiers sources",
|
|
70
|
+
"contractLint.label.coverage": "Couverture",
|
|
71
|
+
"contractLint.label.classificationReasons": "Raisons de classification",
|
|
72
|
+
"contractLint.label.requiredAfterReasons": "Raisons required_after",
|
|
73
|
+
"contractLint.label.runnableReasons": "Raisons exécutables",
|
|
74
|
+
"contractLint.label.coverageFindings": "Constats de couverture",
|
|
67
75
|
"contractLint.label.issues": "Problèmes",
|
|
68
76
|
"context.help.summary": "Imprime le contexte d'agent pour la racine mustflow actuelle.",
|
|
69
77
|
"context.help.option.json": "Imprime le JSON de contexte lisible par machine",
|
|
@@ -89,16 +97,51 @@ export const frMessages = {
|
|
|
89
97
|
"label.results": "Résultats",
|
|
90
98
|
"label.comment": "Commentaire",
|
|
91
99
|
"label.mode": "Mode",
|
|
100
|
+
"adapters.help.summary": "Inspecte les fichiers d'adaptateur visibles dans le dépôt sans les générer ni leur donner d'autorité.",
|
|
101
|
+
"adapters.help.exit.ok": "La compatibilité des adaptateurs a été inspectée et affichée",
|
|
102
|
+
"adapters.help.exit.fail": "La commande a reçu une entrée non valide",
|
|
103
|
+
"adapters.error.missingAction": "Indiquez une action adapters : status",
|
|
104
|
+
"adapters.error.unknownAction": "Action adapters inconnue : {action}",
|
|
105
|
+
"adapters.title": "état des adaptateurs mustflow",
|
|
106
|
+
"adapters.label.agents": "AGENTS.md",
|
|
107
|
+
"adapters.label.hostInstructionFiles": "Fichiers d'instructions hôte",
|
|
108
|
+
"adapters.label.adapterSurfaces": "Surfaces d'adaptateur présentes",
|
|
109
|
+
"adapters.label.compatibilityNotes": "Notes de compatibilité",
|
|
110
|
+
"adapters.label.requiredChanges": "Changements requis",
|
|
111
|
+
"adapters.label.commandAuthority": "Autorité des commandes",
|
|
92
112
|
"dashboard.help.summary": "Démarre un tableau de bord local pour les préférences mustflow sûres et la revue des documents.",
|
|
93
113
|
"dashboard.help.option.host": "Lie le tableau de bord à un hôte local. Par défaut : 127.0.0.1",
|
|
94
114
|
"dashboard.help.option.port": "Lie le tableau de bord à un port. Par défaut : 0 choisit un port disponible",
|
|
95
115
|
"dashboard.help.option.open": "Ouvre le tableau de bord dans le navigateur par défaut après le démarrage du serveur",
|
|
96
116
|
"dashboard.help.option.noOpen": "Garde le navigateur fermé. C'est le comportement par défaut",
|
|
97
|
-
"dashboard.help.
|
|
117
|
+
"dashboard.help.option.export": "Écrit un instantané HTML statique sans démarrer de serveur",
|
|
118
|
+
"dashboard.help.option.exportJson": "Écrit un instantané JSON structuré sans démarrer de serveur",
|
|
119
|
+
"dashboard.help.exit.ok": "Le tableau de bord a démarré, un export a été écrit, ou l'aide a été imprimée",
|
|
98
120
|
"dashboard.help.exit.fail": "Le tableau de bord n'a pas pu démarrer ou l'entrée était non valide",
|
|
99
121
|
"dashboard.error.invalidPort": "Port de tableau de bord non valide : {port}",
|
|
100
122
|
"dashboard.error.nonLocalHost": "Hôte de tableau de bord {host} refusé. Utilisez localhost, 127.0.0.1 ou ::1.",
|
|
123
|
+
"dashboard.error.conflictingExportModes": "Utilisez un seul mode d'export du tableau de bord",
|
|
124
|
+
"dashboard.error.exportServerOptions": "L'export du tableau de bord ne peut pas être combiné avec les options de serveur",
|
|
125
|
+
"dashboard.error.exportPathOutsideRoot": "Le chemin d'export du tableau de bord doit rester dans la racine mustflow : {path}",
|
|
126
|
+
"dashboard.export.wrote": "Export du tableau de bord écrit dans {path} ({bytes} octets)",
|
|
101
127
|
"dashboard.listening": "mf dashboard écoute sur {url}",
|
|
128
|
+
"handoff.help.summary": "Valide un enregistrement JSON restreint de travail ou de handoff sans écrire de fichiers.",
|
|
129
|
+
"handoff.help.exit.ok": "L'enregistrement de handoff est valide",
|
|
130
|
+
"handoff.help.exit.fail": "L'enregistrement de handoff est invalide ou illisible",
|
|
131
|
+
"handoff.error.missingAction": "Indiquez une action handoff : validate",
|
|
132
|
+
"handoff.error.unknownAction": "Action handoff inconnue : {action}",
|
|
133
|
+
"handoff.error.missingPath": "Chemin de l'enregistrement handoff manquant",
|
|
134
|
+
"handoff.error.notFile": "Le chemin de l'enregistrement handoff doit être un fichier normal.",
|
|
135
|
+
"handoff.error.tooLarge": "L'enregistrement handoff dépasse la limite de lecture autorisée.",
|
|
136
|
+
"handoff.error.unreadable": "Impossible de lire l'enregistrement handoff : {message}",
|
|
137
|
+
"handoff.title": "mustflow handoff validate",
|
|
138
|
+
"handoff.label.path": "Chemin",
|
|
139
|
+
"handoff.label.status": "État",
|
|
140
|
+
"handoff.label.kind": "Type",
|
|
141
|
+
"handoff.label.task": "Tâche",
|
|
142
|
+
"handoff.label.issues": "Problèmes",
|
|
143
|
+
"handoff.value.valid": "valide",
|
|
144
|
+
"handoff.value.invalid": "invalide",
|
|
102
145
|
"dashboard.ui.title": "Tableau de bord mustflow",
|
|
103
146
|
"dashboard.ui.language": "Langue",
|
|
104
147
|
"dashboard.ui.noChanges": "Aucun changement",
|
|
@@ -563,7 +606,9 @@ Lisez ces fichiers avant de travailler :
|
|
|
563
606
|
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
564
607
|
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
565
608
|
"run.help.summary": "Exécute une commande configurée à exécution unique depuis .mustflow/config/commands.toml.",
|
|
566
|
-
"run.help.option.
|
|
609
|
+
"run.help.option.dryRun": "Imprime un plan de commande sans l'exécuter",
|
|
610
|
+
"run.help.option.planOnly": "Alias de --dry-run",
|
|
611
|
+
"run.help.option.json": "Imprime l'enregistrement d'exécution ou le plan de commande en JSON",
|
|
567
612
|
"run.help.exit.ok": "La commande s'est terminée avec un code de sortie autorisé",
|
|
568
613
|
"run.help.exit.fail": "La commande était non valide, refusée, expirée ou a échoué",
|
|
569
614
|
"run.error.missingIntent": "Nom de commande manquant",
|
|
@@ -574,6 +619,13 @@ Lisez ces fichiers avant de travailler :
|
|
|
574
619
|
"run.error.stdin": 'La commande "{intent}" doit définir stdin = "closed"',
|
|
575
620
|
"run.error.timeout": 'La commande "{intent}" doit définir timeout_seconds',
|
|
576
621
|
"run.error.commandSource": 'La commande "{intent}" doit définir argv ou mode = "shell" avec cmd',
|
|
622
|
+
"run.error.unsafeIntent": 'L’intention "{intent}" a un nom non sûr. {detail}',
|
|
623
|
+
"run.error.unsafeIntentDetail": "Utilisez un nom d’intention sûr pour le shell.",
|
|
624
|
+
"run.error.blockedShellBackground": 'L’intention "{intent}" est bloquée. {detail}',
|
|
625
|
+
"run.error.blockedShellBackgroundDetail": "Les commandes shell ne doivent pas lancer de travail en arrière-plan.",
|
|
626
|
+
"run.error.cwdOutsideProject": 'La commande "{intent}" a un cwd non valide : {detail}',
|
|
627
|
+
"run.error.cwdOutsideProjectDetail": "Le cwd de l’intention doit rester dans la racine actuelle.",
|
|
628
|
+
"run.error.conflictingPreviewModes": "Utilisez --dry-run ou --plan-only, pas les deux",
|
|
577
629
|
"run.error.timedOut": 'La commande "{intent}" a expiré après {seconds} secondes',
|
|
578
630
|
"run.error.startFailed": 'Impossible de démarrer la commande "{intent}" : {message}',
|
|
579
631
|
"search.help.summary": "Recherche dans l'index SQLite local du flux de travail mustflow.",
|
|
@@ -638,6 +690,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
638
690
|
"verify.help.summary": "Exécute les intentions de vérification configurées sélectionnées par les métadonnées required_after.",
|
|
639
691
|
"verify.help.option.reason": "Sélectionne la raison required_after à vérifier",
|
|
640
692
|
"verify.help.option.fromPlan": "Lit les raisons de vérification depuis un plan JSON dans ce dépôt",
|
|
693
|
+
"verify.help.option.changed": "Classe les changements Git actuels et vérifie les raisons correspondantes",
|
|
694
|
+
"verify.help.option.writePlan": "Écrit le plan de classification des changements dans ce dépôt",
|
|
641
695
|
"verify.help.option.planOnly": "Affiche le plan de vérification sans exécuter de commandes; nécessite --json",
|
|
642
696
|
"verify.help.exit.ok": "Toutes les intentions de vérification sélectionnées ont réussi",
|
|
643
697
|
"verify.help.exit.fail": "La vérification a échoué, est partielle, est bloquée ou l'entrée est invalide",
|
|
@@ -647,10 +701,13 @@ Lisez ces fichiers avant de travailler :
|
|
|
647
701
|
"verify.label.status": "État",
|
|
648
702
|
"verify.label.results": "Résultats",
|
|
649
703
|
"verify.error.missingReason": "Raison de vérification manquante",
|
|
650
|
-
"verify.error.conflictingInputs": "Utilisez --reason
|
|
704
|
+
"verify.error.conflictingInputs": "Utilisez un seul de --reason, --from-plan ou --changed",
|
|
705
|
+
"verify.error.writePlanRequiresChanged": "--write-plan nécessite --changed",
|
|
651
706
|
"verify.error.planOnlyJson": "--plan-only nécessite --json",
|
|
652
707
|
"verify.error.invalid_plan_file": "Le plan de vérification doit être un fichier JSON lisible",
|
|
653
|
-
"verify.error.
|
|
708
|
+
"verify.error.unsupported_plan_source": "Le plan de vérification doit être produit par mf classify --json",
|
|
709
|
+
"verify.error.plan_root_mismatch": "Le plan de vérification doit venir de cette racine mustflow",
|
|
710
|
+
"verify.error.missing_plan_reasons": "Le plan de vérification doit inclure summary.validationReasons",
|
|
654
711
|
"verify.error.plan_path_outside_root": "Le chemin du plan de vérification doit rester dans la racine mustflow",
|
|
655
712
|
"explain.help.summary": "Explique pourquoi une décision de politique mustflow s'applique sans modifier de fichiers.",
|
|
656
713
|
"explain.help.exit.ok": "La décision de politique a été inspectée et affichée",
|
|
@@ -680,10 +737,12 @@ Lisez ces fichiers avant de travailler :
|
|
|
680
737
|
"explain.error.unknownTopic": "Sujet d'explication inconnu : {topic}",
|
|
681
738
|
"update.help.summary": "Prévisualise ou applique les mises à jour du flux de travail mustflow installé.",
|
|
682
739
|
"update.help.option.dryRun": "Imprime le plan de mise à jour sans écrire de fichiers",
|
|
740
|
+
"update.help.option.diff": "Inclut un aperçu diff limité avec --dry-run",
|
|
683
741
|
"update.help.option.apply": "Applique les mises à jour sûres du modèle lorsqu'aucun changement local n'est bloqué",
|
|
684
742
|
"update.help.exit.ok": "Le plan a été imprimé ou des mises à jour sûres ont été appliquées",
|
|
685
743
|
"update.help.exit.fail": "Le plan a trouvé des changements bloqués, un état manquant ou une entrée non valide",
|
|
686
744
|
"update.error.cannotCombineModes": "Impossible de combiner --dry-run et --apply.",
|
|
745
|
+
"update.error.diffRequiresDryRun": "Utilisez --diff avec --dry-run.",
|
|
687
746
|
"update.error.missingMode": "Spécifiez --dry-run ou --apply.",
|
|
688
747
|
"update.backup.files": "{count} {fileWord} sauvegardés dans {path}",
|
|
689
748
|
"update.action.created": "Créé {path}",
|
|
@@ -700,6 +759,8 @@ Lisez ces fichiers avant de travailler :
|
|
|
700
759
|
"update.plan.wouldUpdate": "Mettrait à jour",
|
|
701
760
|
"update.plan.wouldCreate": "Créerait",
|
|
702
761
|
"update.plan.noUpdates": "Aucune mise à jour de modèle nécessaire.",
|
|
762
|
+
"update.diff.title": "Aperçu diff :",
|
|
763
|
+
"update.diff.unavailable": "aperçu diff indisponible : {reason}",
|
|
703
764
|
"update.plan.noFilesWritten": "Aucun fichier n'a été écrit.",
|
|
704
765
|
"update.complete": "mustflow update terminé : {updated} mis à jour, {created} créés.",
|
|
705
766
|
};
|