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/hi.js
CHANGED
|
@@ -20,18 +20,21 @@ export const hiMessages = {
|
|
|
20
20
|
"value.yes": "हाँ",
|
|
21
21
|
"value.no": "नहीं",
|
|
22
22
|
"value.none": "none",
|
|
23
|
+
"command.adapters.summary": "एडाप्टर फ़ाइलें बनाए बिना होस्ट संगतता जाँचें",
|
|
23
24
|
"command.init.summary": "डिफ़ॉल्ट mustflow एजेंट वर्कफ़्लो कॉपी करें",
|
|
24
25
|
"command.check.summary": "mustflow फ़ाइलों की जाँच करें",
|
|
25
26
|
"command.classify.summary": "बदली फ़ाइलों और सार्वजनिक सतहों को वर्गीकृत करें",
|
|
26
27
|
"command.contractLint.summary": "कमांड अनुबंध की जाँच करें",
|
|
27
28
|
"command.status.summary": "स्थानीय mustflow इंस्टॉल स्थिति दिखाएँ",
|
|
28
29
|
"command.update.summary": "mustflow वर्कफ़्लो अपडेट का पूर्वावलोकन करें या लागू करें",
|
|
30
|
+
"command.upgrade.summary": "Package version जाँचें और installed workflow files सुरक्षित रूप से update करें",
|
|
29
31
|
"command.map.summary": "REPO_MAP.md बनाएँ",
|
|
30
32
|
"command.lineEndings.summary": "लाइन-एंडिंग नीति की जाँच और सामान्यीकरण करें",
|
|
31
33
|
"command.run.summary": "कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ",
|
|
32
34
|
"command.context.summary": "मशीन-पठनीय एजेंट संदर्भ प्रिंट करें",
|
|
33
35
|
"command.doctor.summary": "mustflow स्वास्थ्य और अगले कदम जाँचें",
|
|
34
36
|
"command.docs.summary": "दस्तावेज़ review queue entries track करें",
|
|
37
|
+
"command.handoff.summary": "Restricted work-item और handoff records validate करें",
|
|
35
38
|
"command.index.summary": "स्थानीय mustflow SQLite इंडेक्स बनाएँ",
|
|
36
39
|
"command.search.summary": "स्थानीय mustflow SQLite इंडेक्स में खोजें",
|
|
37
40
|
"command.dashboard.summary": "स्थानीय mustflow डैशबोर्ड शुरू करें",
|
|
@@ -52,6 +55,7 @@ export const hiMessages = {
|
|
|
52
55
|
"check.result.passed": "mustflow check पास हुआ",
|
|
53
56
|
"check.result.strictPassed": "mustflow strict check पास हुआ",
|
|
54
57
|
"contractLint.help.summary": ".mustflow/config/commands.toml में command-contract errors और warnings जाँचें.",
|
|
58
|
+
"contractLint.help.option.coverage": "change-classification reasons के लिए required_after coverage भी report करें",
|
|
55
59
|
"contractLint.help.exit.ok": "कमांड अनुबंध बिना blocking errors के जाँचा गया",
|
|
56
60
|
"contractLint.help.exit.fail": "कमांड अनुबंध errors मिले या input अमान्य था",
|
|
57
61
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +68,11 @@ export const hiMessages = {
|
|
|
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": "वर्तमान mustflow रूट के लिए एजेंट संदर्भ प्रिंट करें।",
|
|
69
78
|
"context.help.option.json": "मशीन-पठनीय संदर्भ JSON प्रिंट करें",
|
|
@@ -89,16 +98,51 @@ export const hiMessages = {
|
|
|
89
98
|
"label.results": "परिणाम",
|
|
90
99
|
"label.comment": "टिप्पणी",
|
|
91
100
|
"label.mode": "मोड",
|
|
101
|
+
"adapters.help.summary": "रिपॉज़िटरी में दिखने वाली होस्ट एडाप्टर फ़ाइलों की जाँच करें, बिना फ़ाइल बनाए या अधिकार दिए।",
|
|
102
|
+
"adapters.help.exit.ok": "एडाप्टर संगतता जाँची और प्रिंट की गई",
|
|
103
|
+
"adapters.help.exit.fail": "कमांड को अमान्य इनपुट मिला",
|
|
104
|
+
"adapters.error.missingAction": "adapters action बताएँ: status",
|
|
105
|
+
"adapters.error.unknownAction": "अज्ञात adapters action: {action}",
|
|
106
|
+
"adapters.title": "mustflow adapters status",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "होस्ट निर्देश फ़ाइलें",
|
|
109
|
+
"adapters.label.adapterSurfaces": "मौजूद एडाप्टर सतहें",
|
|
110
|
+
"adapters.label.compatibilityNotes": "संगतता नोट",
|
|
111
|
+
"adapters.label.requiredChanges": "ज़रूरी बदलाव",
|
|
112
|
+
"adapters.label.commandAuthority": "कमांड अधिकार",
|
|
92
113
|
"dashboard.help.summary": "सुरक्षित mustflow preferences और दस्तावेज़ समीक्षा के लिए स्थानीय डैशबोर्ड शुरू करें।",
|
|
93
114
|
"dashboard.help.option.host": "डैशबोर्ड को स्थानीय host से बाँधें। डिफ़ॉल्ट: 127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "डैशबोर्ड को port से बाँधें। डिफ़ॉल्ट: 0 उपलब्ध port चुनता है",
|
|
95
116
|
"dashboard.help.option.open": "Server शुरू होने के बाद dashboard को default browser में खोलें",
|
|
96
117
|
"dashboard.help.option.noOpen": "Browser बंद रखें। यह default व्यवहार है",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "Server शुरू किए बिना static HTML snapshot लिखें",
|
|
119
|
+
"dashboard.help.option.exportJson": "Server शुरू किए बिना structured JSON snapshot लिखें",
|
|
120
|
+
"dashboard.help.exit.ok": "डैशबोर्ड शुरू हुआ, export लिखा गया, या सहायता प्रिंट हुई",
|
|
98
121
|
"dashboard.help.exit.fail": "डैशबोर्ड शुरू नहीं हो सका या इनपुट अमान्य था",
|
|
99
122
|
"dashboard.error.invalidPort": "अमान्य डैशबोर्ड port: {port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "डैशबोर्ड host {host} अस्वीकार किया गया। localhost, 127.0.0.1 या ::1 उपयोग करें।",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "केवल एक dashboard export mode उपयोग करें",
|
|
125
|
+
"dashboard.error.exportServerOptions": "Dashboard export को server options के साथ नहीं मिलाया जा सकता",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "Dashboard export path mustflow root के अंदर रहना चाहिए: {path}",
|
|
127
|
+
"dashboard.export.wrote": "Dashboard export {path} में लिखा गया ({bytes} bytes)",
|
|
101
128
|
"dashboard.listening": "mf dashboard {url} पर सुन रहा है",
|
|
129
|
+
"handoff.help.summary": "फ़ाइलें लिखे बिना restricted work-item या handoff JSON record validate करें।",
|
|
130
|
+
"handoff.help.exit.ok": "Handoff record valid है",
|
|
131
|
+
"handoff.help.exit.fail": "Handoff record invalid है या पढ़ा नहीं जा सका",
|
|
132
|
+
"handoff.error.missingAction": "handoff action दें: validate",
|
|
133
|
+
"handoff.error.unknownAction": "अज्ञात handoff action: {action}",
|
|
134
|
+
"handoff.error.missingPath": "Handoff record path missing है",
|
|
135
|
+
"handoff.error.notFile": "Handoff record path regular file होना चाहिए।",
|
|
136
|
+
"handoff.error.tooLarge": "Handoff record allowed read limit से बड़ा है।",
|
|
137
|
+
"handoff.error.unreadable": "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 डैशबोर्ड",
|
|
103
147
|
"dashboard.ui.language": "भाषा",
|
|
104
148
|
"dashboard.ui.noChanges": "कोई बदलाव नहीं",
|
|
@@ -563,7 +607,9 @@ export const hiMessages = {
|
|
|
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": ".mustflow/config/commands.toml से कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ।",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "कमांड चलाए बिना उसका plan प्रिंट करें",
|
|
611
|
+
"run.help.option.planOnly": "--dry-run का alias",
|
|
612
|
+
"run.help.option.json": "Run record या command plan को JSON के रूप में प्रिंट करें",
|
|
567
613
|
"run.help.exit.ok": "कमांड अनुमत exit code के साथ पूरी हुई",
|
|
568
614
|
"run.help.exit.fail": "कमांड अमान्य थी, अस्वीकार हुई, timed out हुई या विफल हुई",
|
|
569
615
|
"run.error.missingIntent": "कमांड नाम नहीं दिया गया",
|
|
@@ -574,6 +620,13 @@ export const hiMessages = {
|
|
|
574
620
|
"run.error.stdin": 'कमांड "{intent}" को stdin = "closed" सेट करना होगा',
|
|
575
621
|
"run.error.timeout": 'कमांड "{intent}" को timeout_seconds परिभाषित करना होगा',
|
|
576
622
|
"run.error.commandSource": 'कमांड "{intent}" को argv या mode = "shell" के साथ cmd परिभाषित करना होगा',
|
|
623
|
+
"run.error.unsafeIntent": 'इंटेंट "{intent}" का नाम सुरक्षित नहीं है। {detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "shell-safe इंटेंट नाम इस्तेमाल करें।",
|
|
625
|
+
"run.error.blockedShellBackground": 'इंटेंट "{intent}" अवरुद्ध है। {detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "Shell commands background work शुरू नहीं कर सकतीं।",
|
|
627
|
+
"run.error.cwdOutsideProject": 'कमांड "{intent}" का cwd अमान्य है: {detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "Intent cwd current root के अंदर रहना चाहिए।",
|
|
629
|
+
"run.error.conflictingPreviewModes": "--dry-run या --plan-only में से एक इस्तेमाल करें, दोनों नहीं",
|
|
577
630
|
"run.error.timedOut": 'कमांड "{intent}" {seconds} सेकंड बाद time out हुई',
|
|
578
631
|
"run.error.startFailed": 'कमांड "{intent}" शुरू नहीं हो सकी: {message}',
|
|
579
632
|
"search.help.summary": "mustflow वर्कफ़्लो के लिए स्थानीय SQLite इंडेक्स में खोजें।",
|
|
@@ -606,6 +659,17 @@ export const hiMessages = {
|
|
|
606
659
|
"version.check.upToDate": "latest {version}; पहले से up to date",
|
|
607
660
|
"version.check.updateCommand": "Update command:",
|
|
608
661
|
"version.error.checkFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
|
|
662
|
+
"upgrade.help.summary": "जाँचें कि installed mustflow package current है या नहीं, फिर संभव होने पर current CLI में bundled workflow template updates सुरक्षित रूप से लागू करें.",
|
|
663
|
+
"upgrade.help.option.dryRun": "Package status जाँचें और files लिखे बिना project update plan प्रिंट करें",
|
|
664
|
+
"upgrade.help.exit.ok": "Package current था और project update check पूरा हुआ",
|
|
665
|
+
"upgrade.help.exit.fail": "Package update चाहिए, project update blocker मिला, या input invalid है",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "Package:",
|
|
668
|
+
"upgrade.projectSection": "Project template:",
|
|
669
|
+
"upgrade.packageUpdateRequired": "पहले mustflow package update करें, फिर `mf upgrade` दोबारा चलाएँ.",
|
|
670
|
+
"upgrade.noFilesWritten": "कोई project file नहीं लिखी गई.",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "Current CLI में bundled template के साथ आगे बढ़ रहे हैं.",
|
|
609
673
|
"classify.help.summary": "फ़ाइल बदले बिना बदले पथ, सार्वजनिक सतह और जरूरी सत्यापन कारण वर्गीकृत करें.",
|
|
610
674
|
"classify.help.option.changed": "git status --short --untracked-files=all से पथ पढ़ें",
|
|
611
675
|
"classify.help.exit.ok": "बदलाव वर्गीकरण जांचकर प्रिंट किया गया",
|
|
@@ -638,6 +702,8 @@ export const hiMessages = {
|
|
|
638
702
|
"verify.help.summary": "required_after metadata से चुने गए configured verification intents चलाएँ।",
|
|
639
703
|
"verify.help.option.reason": "Verify करने के लिए required_after reason चुनें",
|
|
640
704
|
"verify.help.option.fromPlan": "इस repository के अंदर JSON plan से verification reasons पढ़ें",
|
|
705
|
+
"verify.help.option.changed": "Current Git changes classify करके matching reasons verify करें",
|
|
706
|
+
"verify.help.option.writePlan": "Changed-file classification plan इस repository के अंदर लिखें",
|
|
641
707
|
"verify.help.option.planOnly": "Commands चलाए बिना verification plan print करें; --json चाहिए",
|
|
642
708
|
"verify.help.exit.ok": "सभी selected verification intents pass हुए",
|
|
643
709
|
"verify.help.exit.fail": "Verification fail हुआ, partial रहा, blocked रहा, या input invalid था",
|
|
@@ -647,10 +713,13 @@ export const hiMessages = {
|
|
|
647
713
|
"verify.label.status": "Status",
|
|
648
714
|
"verify.label.results": "Results",
|
|
649
715
|
"verify.error.missingReason": "Verification reason missing है",
|
|
650
|
-
"verify.error.conflictingInputs": "--reason
|
|
716
|
+
"verify.error.conflictingInputs": "--reason, --from-plan, या --changed में से केवल एक इस्तेमाल करें",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan के लिए --changed चाहिए",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only के लिए --json चाहिए",
|
|
652
719
|
"verify.error.invalid_plan_file": "Verification plan readable JSON file होना चाहिए",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "Verification plan mf classify --json से बना होना चाहिए",
|
|
721
|
+
"verify.error.plan_root_mismatch": "Verification plan इसी mustflow root से आना चाहिए",
|
|
722
|
+
"verify.error.missing_plan_reasons": "Verification plan में summary.validationReasons होना चाहिए",
|
|
654
723
|
"verify.error.plan_path_outside_root": "Verification plan path mustflow root के अंदर रहना चाहिए",
|
|
655
724
|
"explain.help.summary": "फ़ाइलें बदले बिना समझाएँ कि mustflow policy decision क्यों लागू होता है।",
|
|
656
725
|
"explain.help.exit.ok": "Policy decision जाँचा और प्रिंट किया गया",
|
|
@@ -680,10 +749,12 @@ export const hiMessages = {
|
|
|
680
749
|
"explain.error.unknownTopic": "अज्ञात explain topic: {topic}",
|
|
681
750
|
"update.help.summary": "इंस्टॉल किए गए mustflow वर्कफ़्लो के अपडेट का पूर्वावलोकन करें या लागू करें।",
|
|
682
751
|
"update.help.option.dryRun": "फ़ाइलें लिखे बिना update plan प्रिंट करें",
|
|
752
|
+
"update.help.option.diff": "--dry-run के साथ bounded diff preview शामिल करें",
|
|
683
753
|
"update.help.option.apply": "जब कोई local change blocked न हो, सुरक्षित template updates लागू करें",
|
|
684
754
|
"update.help.exit.ok": "Plan प्रिंट हुआ या सुरक्षित updates लागू किए गए",
|
|
685
755
|
"update.help.exit.fail": "Plan में blocked changes, missing state, या अमान्य input मिला",
|
|
686
756
|
"update.error.cannotCombineModes": "--dry-run और --apply को साथ नहीं रखा जा सकता।",
|
|
757
|
+
"update.error.diffRequiresDryRun": "--diff को --dry-run के साथ उपयोग करें।",
|
|
687
758
|
"update.error.missingMode": "--dry-run या --apply निर्दिष्ट करें।",
|
|
688
759
|
"update.backup.files": "{count} {fileWord} का बैकअप {path} में लिया गया",
|
|
689
760
|
"update.action.created": "{path} बनाया गया",
|
|
@@ -700,6 +771,8 @@ export const hiMessages = {
|
|
|
700
771
|
"update.plan.wouldUpdate": "अपडेट किया जाएगा",
|
|
701
772
|
"update.plan.wouldCreate": "बनाया जाएगा",
|
|
702
773
|
"update.plan.noUpdates": "Template updates आवश्यक नहीं हैं।",
|
|
774
|
+
"update.diff.title": "Diff preview:",
|
|
775
|
+
"update.diff.unavailable": "diff preview उपलब्ध नहीं: {reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "कोई फ़ाइल नहीं लिखी गई।",
|
|
704
777
|
"update.complete": "mustflow update पूरा: {updated} अपडेट किए गए, {created} बनाए गए।",
|
|
705
778
|
};
|
package/dist/cli/i18n/ko.js
CHANGED
|
@@ -20,18 +20,21 @@ export const koMessages = {
|
|
|
20
20
|
"value.yes": "예",
|
|
21
21
|
"value.no": "아니요",
|
|
22
22
|
"value.none": "없음",
|
|
23
|
+
"command.adapters.summary": "어댑터 파일을 만들지 않고 호스트 호환성을 확인합니다",
|
|
23
24
|
"command.init.summary": "기본 mustflow 에이전트 워크플로우를 복사합니다",
|
|
24
25
|
"command.check.summary": "mustflow 파일을 검사합니다",
|
|
25
26
|
"command.classify.summary": "변경 파일과 공개 표면을 분류합니다",
|
|
26
27
|
"command.contractLint.summary": "명령 계약을 점검합니다",
|
|
27
28
|
"command.status.summary": "로컬 mustflow 설치 상태를 출력합니다",
|
|
28
29
|
"command.update.summary": "mustflow 워크플로우 갱신을 미리 보거나 적용합니다",
|
|
30
|
+
"command.upgrade.summary": "패키지 버전을 확인하고 설치된 워크플로우 파일을 안전하게 갱신합니다",
|
|
29
31
|
"command.map.summary": "REPO_MAP.md를 작성합니다",
|
|
30
32
|
"command.lineEndings.summary": "줄바꿈 정책을 검사하고 정규화합니다",
|
|
31
33
|
"command.run.summary": "설정된 일회성 명령을 실행합니다",
|
|
32
34
|
"command.context.summary": "에이전트 작업 맥락을 출력합니다",
|
|
33
35
|
"command.doctor.summary": "mustflow 상태를 점검하고 후속 조치를 안내합니다",
|
|
34
36
|
"command.docs.summary": "문서 검수 대기열 항목을 추적합니다",
|
|
37
|
+
"command.handoff.summary": "제한된 작업 항목과 인수인계 기록을 검증합니다",
|
|
35
38
|
"command.index.summary": "로컬 mustflow SQLite 색인을 만듭니다",
|
|
36
39
|
"command.search.summary": "로컬 mustflow SQLite 색인을 검색합니다",
|
|
37
40
|
"command.dashboard.summary": "로컬 mustflow 대시보드를 시작합니다",
|
|
@@ -52,6 +55,7 @@ export const koMessages = {
|
|
|
52
55
|
"check.result.passed": "mustflow 검사 통과",
|
|
53
56
|
"check.result.strictPassed": "mustflow 엄격 검사 통과",
|
|
54
57
|
"contractLint.help.summary": ".mustflow/config/commands.toml의 명령 계약 오류와 경고를 확인합니다.",
|
|
58
|
+
"contractLint.help.option.coverage": "변경 분류 이유에 대한 required_after 연결 상태도 보고합니다",
|
|
55
59
|
"contractLint.help.exit.ok": "차단 오류 없이 명령 계약을 확인했습니다",
|
|
56
60
|
"contractLint.help.exit.fail": "명령 계약 오류가 있거나 입력이 잘못되었습니다",
|
|
57
61
|
"contractLint.title": "mustflow 명령 계약 점검",
|
|
@@ -64,6 +68,11 @@ export const koMessages = {
|
|
|
64
68
|
"contractLint.label.errors": "오류",
|
|
65
69
|
"contractLint.label.warnings": "경고",
|
|
66
70
|
"contractLint.label.sourceFiles": "근거 파일",
|
|
71
|
+
"contractLint.label.coverage": "연결 상태",
|
|
72
|
+
"contractLint.label.classificationReasons": "변경 분류 이유",
|
|
73
|
+
"contractLint.label.requiredAfterReasons": "required_after 이유",
|
|
74
|
+
"contractLint.label.runnableReasons": "실행 가능한 이유",
|
|
75
|
+
"contractLint.label.coverageFindings": "연결 상태 발견 항목",
|
|
67
76
|
"contractLint.label.issues": "문제",
|
|
68
77
|
"context.help.summary": "현재 mustflow 루트의 에이전트 작업 맥락을 출력합니다.",
|
|
69
78
|
"context.help.option.json": "맥락을 JSON 형식으로 출력합니다",
|
|
@@ -89,16 +98,51 @@ export const koMessages = {
|
|
|
89
98
|
"label.results": "결과",
|
|
90
99
|
"label.comment": "코멘트",
|
|
91
100
|
"label.mode": "모드",
|
|
101
|
+
"adapters.help.summary": "파일을 만들거나 어댑터 표면에 권한을 주지 않고, 저장소에서 보이는 호스트 어댑터 파일을 확인합니다.",
|
|
102
|
+
"adapters.help.exit.ok": "어댑터 호환성을 확인하고 출력했습니다",
|
|
103
|
+
"adapters.help.exit.fail": "잘못된 입력이 제공되었습니다",
|
|
104
|
+
"adapters.error.missingAction": "adapters 작업을 지정하세요: status",
|
|
105
|
+
"adapters.error.unknownAction": "알 수 없는 adapters 작업: {action}",
|
|
106
|
+
"adapters.title": "mustflow 어댑터 상태",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "호스트 지시 파일",
|
|
109
|
+
"adapters.label.adapterSurfaces": "존재하는 어댑터 표면",
|
|
110
|
+
"adapters.label.compatibilityNotes": "호환성 메모",
|
|
111
|
+
"adapters.label.requiredChanges": "필수 변경",
|
|
112
|
+
"adapters.label.commandAuthority": "명령 권한 기준",
|
|
92
113
|
"dashboard.help.summary": "안전한 mustflow 설정과 문서 검수 목록을 다루는 로컬 대시보드를 시작합니다.",
|
|
93
114
|
"dashboard.help.option.host": "대시보드를 바인딩할 로컬 호스트입니다. 기본값: 127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "대시보드를 바인딩할 포트입니다. 기본값 0이면 사용 가능한 포트를 자동으로 선택합니다",
|
|
95
116
|
"dashboard.help.option.open": "서버가 시작된 뒤 기본 브라우저에서 대시보드를 엽니다",
|
|
96
117
|
"dashboard.help.option.noOpen": "브라우저를 열지 않습니다. 이 동작이 기본값입니다",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "서버를 시작하지 않고 정적 HTML 스냅샷을 씁니다",
|
|
119
|
+
"dashboard.help.option.exportJson": "서버를 시작하지 않고 구조화된 JSON 스냅샷을 씁니다",
|
|
120
|
+
"dashboard.help.exit.ok": "대시보드를 시작했거나, 내보내기를 썼거나, 도움말을 출력했습니다",
|
|
98
121
|
"dashboard.help.exit.fail": "대시보드를 시작하지 못했거나 잘못된 입력이 제공되었습니다",
|
|
99
122
|
"dashboard.error.invalidPort": "잘못된 대시보드 포트: {port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "대시보드 호스트 {host} 사용을 거부했습니다. localhost, 127.0.0.1, ::1 중 하나를 사용하세요.",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "대시보드 내보내기 방식은 하나만 사용할 수 있습니다",
|
|
125
|
+
"dashboard.error.exportServerOptions": "대시보드 내보내기는 서버 옵션과 함께 사용할 수 없습니다",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "대시보드 내보내기 경로는 mustflow 루트 안에 있어야 합니다: {path}",
|
|
127
|
+
"dashboard.export.wrote": "대시보드 내보내기를 {path}에 썼습니다({bytes}바이트)",
|
|
101
128
|
"dashboard.listening": "mf dashboard 실행 중: {url}",
|
|
129
|
+
"handoff.help.summary": "파일을 쓰지 않고 제한된 작업 항목 또는 인수인계 JSON 기록을 검증합니다.",
|
|
130
|
+
"handoff.help.exit.ok": "인수인계 기록이 유효합니다",
|
|
131
|
+
"handoff.help.exit.fail": "인수인계 기록이 유효하지 않거나 읽을 수 없습니다",
|
|
132
|
+
"handoff.error.missingAction": "handoff 작업을 지정하세요: validate",
|
|
133
|
+
"handoff.error.unknownAction": "알 수 없는 handoff 작업: {action}",
|
|
134
|
+
"handoff.error.missingPath": "인수인계 기록 경로가 없습니다",
|
|
135
|
+
"handoff.error.notFile": "인수인계 기록 경로는 일반 파일이어야 합니다.",
|
|
136
|
+
"handoff.error.tooLarge": "인수인계 기록이 허용된 읽기 제한보다 큽니다.",
|
|
137
|
+
"handoff.error.unreadable": "인수인계 기록을 읽을 수 없습니다: {message}",
|
|
138
|
+
"handoff.title": "mustflow handoff validate",
|
|
139
|
+
"handoff.label.path": "경로",
|
|
140
|
+
"handoff.label.status": "상태",
|
|
141
|
+
"handoff.label.kind": "종류",
|
|
142
|
+
"handoff.label.task": "작업",
|
|
143
|
+
"handoff.label.issues": "문제",
|
|
144
|
+
"handoff.value.valid": "유효함",
|
|
145
|
+
"handoff.value.invalid": "유효하지 않음",
|
|
102
146
|
"dashboard.ui.title": "mustflow 대시보드",
|
|
103
147
|
"dashboard.ui.language": "언어",
|
|
104
148
|
"dashboard.ui.noChanges": "변경 없음",
|
|
@@ -563,7 +607,9 @@ export const koMessages = {
|
|
|
563
607
|
"lineEndings.error.checkModeOption": "check에는 --apply 또는 --dry-run을 사용할 수 없습니다",
|
|
564
608
|
"lineEndings.error.conflictingModes": "--apply와 --dry-run은 함께 사용할 수 없습니다",
|
|
565
609
|
"run.help.summary": ".mustflow/config/commands.toml에 설정된 일회성 명령을 실행합니다.",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "실행하지 않고 명령 계획을 출력합니다",
|
|
611
|
+
"run.help.option.planOnly": "--dry-run과 같은 동작입니다",
|
|
612
|
+
"run.help.option.json": "실행 결과 또는 명령 계획을 JSON으로 출력합니다",
|
|
567
613
|
"run.help.exit.ok": "명령이 허용된 종료 코드로 완료되었습니다",
|
|
568
614
|
"run.help.exit.fail": "명령이 잘못되었거나, 거부되었거나, 시간 초과되었거나, 실패했습니다",
|
|
569
615
|
"run.error.missingIntent": "명령 이름이 없습니다",
|
|
@@ -574,6 +620,13 @@ export const koMessages = {
|
|
|
574
620
|
"run.error.stdin": '명령 "{intent}"는 stdin = "closed"를 설정해야 합니다',
|
|
575
621
|
"run.error.timeout": '명령 "{intent}"는 timeout_seconds를 정의해야 합니다',
|
|
576
622
|
"run.error.commandSource": '명령 "{intent}"는 argv를 정의하거나 mode = "shell"과 cmd를 함께 정의해야 합니다',
|
|
623
|
+
"run.error.unsafeIntent": '명령 의도 "{intent}"의 이름이 안전하지 않습니다. {detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "셸에서 안전한 명령 의도 이름을 사용하세요.",
|
|
625
|
+
"run.error.blockedShellBackground": '명령 의도 "{intent}"가 차단되었습니다. {detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "셸 명령은 백그라운드 작업을 시작하면 안 됩니다.",
|
|
627
|
+
"run.error.cwdOutsideProject": '명령 "{intent}"의 실행 위치(cwd)가 올바르지 않습니다: {detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "명령 실행 위치(cwd)는 현재 루트 안에 있어야 합니다.",
|
|
629
|
+
"run.error.conflictingPreviewModes": "--dry-run과 --plan-only 중 하나만 사용하세요",
|
|
577
630
|
"run.error.timedOut": '명령 "{intent}"가 {seconds}초 뒤 시간 초과되었습니다',
|
|
578
631
|
"run.error.startFailed": '명령 "{intent}"를 시작하지 못했습니다: {message}',
|
|
579
632
|
"search.help.summary": "로컬 SQLite 색인에서 mustflow 워크플로우를 검색합니다.",
|
|
@@ -606,6 +659,17 @@ export const koMessages = {
|
|
|
606
659
|
"version.check.upToDate": "최신 {version}; 이미 최신 상태입니다",
|
|
607
660
|
"version.check.updateCommand": "업데이트 명령:",
|
|
608
661
|
"version.error.checkFailed": "npm에서 새 버전을 확인하지 못했습니다: {message}",
|
|
662
|
+
"upgrade.help.summary": "설치된 mustflow 패키지가 최신인지 확인한 뒤, 가능하면 현재 CLI에 포함된 워크플로우 템플릿 갱신을 안전하게 적용합니다.",
|
|
663
|
+
"upgrade.help.option.dryRun": "패키지 상태를 확인하고 파일을 쓰지 않은 채 프로젝트 갱신 계획을 출력합니다",
|
|
664
|
+
"upgrade.help.exit.ok": "패키지가 최신이고 프로젝트 갱신 확인이 완료되었습니다",
|
|
665
|
+
"upgrade.help.exit.fail": "패키지 업데이트가 필요하거나, 프로젝트 갱신 차단 항목이 있거나, 입력이 잘못되었습니다",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "패키지:",
|
|
668
|
+
"upgrade.projectSection": "프로젝트 템플릿:",
|
|
669
|
+
"upgrade.packageUpdateRequired": "mustflow 패키지를 먼저 업데이트한 뒤 `mf upgrade`를 다시 실행하세요.",
|
|
670
|
+
"upgrade.noFilesWritten": "프로젝트 파일은 쓰지 않았습니다.",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "npm에서 새 버전을 확인하지 못했습니다: {message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "현재 CLI에 포함된 템플릿으로 계속 진행합니다.",
|
|
609
673
|
"classify.help.summary": "파일을 수정하지 않고 변경 경로, 공개 표면, 필요한 검증 이유를 분류합니다.",
|
|
610
674
|
"classify.help.option.changed": "git status --short --untracked-files=all에서 경로를 읽습니다",
|
|
611
675
|
"classify.help.exit.ok": "변경 분류를 확인하고 출력했습니다",
|
|
@@ -638,6 +702,8 @@ export const koMessages = {
|
|
|
638
702
|
"verify.help.summary": "required_after 메타데이터로 선택된 설정된 검증 의도를 실행합니다.",
|
|
639
703
|
"verify.help.option.reason": "검증할 required_after 이유를 지정합니다",
|
|
640
704
|
"verify.help.option.fromPlan": "이 저장소 안의 JSON 계획 파일에서 검증 이유를 읽습니다",
|
|
705
|
+
"verify.help.option.changed": "현재 Git 변경을 분류하고 맞는 검증 이유를 실행합니다",
|
|
706
|
+
"verify.help.option.writePlan": "변경 파일 분류 계획을 이 저장소 안에 씁니다",
|
|
641
707
|
"verify.help.option.planOnly": "명령을 실행하지 않고 검증 계획만 출력합니다. --json이 필요합니다",
|
|
642
708
|
"verify.help.exit.ok": "선택된 모든 검증 의도가 통과했습니다",
|
|
643
709
|
"verify.help.exit.fail": "검증이 실패했거나, 일부만 실행됐거나, 막혔거나, 입력이 올바르지 않습니다",
|
|
@@ -647,10 +713,13 @@ export const koMessages = {
|
|
|
647
713
|
"verify.label.status": "상태",
|
|
648
714
|
"verify.label.results": "결과",
|
|
649
715
|
"verify.error.missingReason": "검증 이유가 없습니다",
|
|
650
|
-
"verify.error.conflictingInputs": "--reason
|
|
716
|
+
"verify.error.conflictingInputs": "--reason, --from-plan, --changed 중 하나만 사용하세요",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan에는 --changed가 필요합니다",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only에는 --json이 필요합니다",
|
|
652
719
|
"verify.error.invalid_plan_file": "검증 계획은 읽을 수 있는 JSON 파일이어야 합니다",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "검증 계획은 mf classify --json이 만든 산출물이어야 합니다",
|
|
721
|
+
"verify.error.plan_root_mismatch": "검증 계획은 현재 mustflow 루트에서 나온 것이어야 합니다",
|
|
722
|
+
"verify.error.missing_plan_reasons": "검증 계획에는 summary.validationReasons가 있어야 합니다",
|
|
654
723
|
"verify.error.plan_path_outside_root": "검증 계획 경로는 mustflow 루트 안에 있어야 합니다",
|
|
655
724
|
"explain.help.summary": "파일을 수정하지 않고 mustflow 정책 결정이 왜 적용되는지 설명합니다.",
|
|
656
725
|
"explain.help.exit.ok": "정책 결정을 확인하고 출력했습니다",
|
|
@@ -680,10 +749,12 @@ export const koMessages = {
|
|
|
680
749
|
"explain.error.unknownTopic": "알 수 없는 설명 주제: {topic}",
|
|
681
750
|
"update.help.summary": "설치된 mustflow 작업 흐름의 갱신을 미리 보거나 적용합니다.",
|
|
682
751
|
"update.help.option.dryRun": "파일을 쓰지 않고 갱신 계획만 출력합니다",
|
|
752
|
+
"update.help.option.diff": "--dry-run과 함께 제한된 차이 미리보기를 출력합니다",
|
|
683
753
|
"update.help.option.apply": "차단된 로컬 변경이 없을 때 안전한 템플릿 갱신을 적용합니다",
|
|
684
754
|
"update.help.exit.ok": "계획을 출력했거나 안전한 갱신을 적용했습니다",
|
|
685
755
|
"update.help.exit.fail": "차단된 변경, 누락된 상태, 또는 잘못된 입력이 있습니다",
|
|
686
756
|
"update.error.cannotCombineModes": "--dry-run과 --apply는 함께 사용할 수 없습니다.",
|
|
757
|
+
"update.error.diffRequiresDryRun": "--diff는 --dry-run과 함께 사용하세요.",
|
|
687
758
|
"update.error.missingMode": "--dry-run 또는 --apply를 지정하세요.",
|
|
688
759
|
"update.backup.files": "{path}에 {count}개 파일을 백업했습니다",
|
|
689
760
|
"update.action.created": "{path} 생성",
|
|
@@ -700,6 +771,8 @@ export const koMessages = {
|
|
|
700
771
|
"update.plan.wouldUpdate": "갱신 예정",
|
|
701
772
|
"update.plan.wouldCreate": "생성 예정",
|
|
702
773
|
"update.plan.noUpdates": "필요한 템플릿 갱신이 없습니다.",
|
|
774
|
+
"update.diff.title": "차이 미리보기:",
|
|
775
|
+
"update.diff.unavailable": "차이 미리보기를 사용할 수 없습니다: {reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "파일을 쓰지 않았습니다.",
|
|
704
777
|
"update.complete": "mustflow update 완료: 갱신 {updated}, 생성 {created}.",
|
|
705
778
|
};
|
package/dist/cli/i18n/zh.js
CHANGED
|
@@ -20,18 +20,21 @@ export const zhMessages = {
|
|
|
20
20
|
"value.yes": "是",
|
|
21
21
|
"value.no": "否",
|
|
22
22
|
"value.none": "无",
|
|
23
|
+
"command.adapters.summary": "不生成适配器文件,检查宿主兼容性",
|
|
23
24
|
"command.init.summary": "复制默认的 mustflow 代理工作流",
|
|
24
25
|
"command.check.summary": "验证 mustflow 文件",
|
|
25
26
|
"command.classify.summary": "分类变更文件和公开表面",
|
|
26
27
|
"command.contractLint.summary": "检查命令契约",
|
|
27
28
|
"command.status.summary": "显示本地 mustflow 安装状态",
|
|
28
29
|
"command.update.summary": "预览或应用 mustflow 工作流更新",
|
|
30
|
+
"command.upgrade.summary": "检查包版本并安全更新已安装的工作流文件",
|
|
29
31
|
"command.map.summary": "生成 REPO_MAP.md",
|
|
30
32
|
"command.lineEndings.summary": "检查并规范化换行符策略",
|
|
31
33
|
"command.run.summary": "运行已配置的一次性命令",
|
|
32
34
|
"command.context.summary": "输出机器可读的代理上下文",
|
|
33
35
|
"command.doctor.summary": "检查 mustflow 健康状态和后续步骤",
|
|
34
36
|
"command.docs.summary": "跟踪文档审阅队列条目",
|
|
37
|
+
"command.handoff.summary": "验证受限的工作项和交接记录",
|
|
35
38
|
"command.index.summary": "构建本地 mustflow SQLite 索引",
|
|
36
39
|
"command.search.summary": "搜索本地 mustflow SQLite 索引",
|
|
37
40
|
"command.dashboard.summary": "启动本地 mustflow 仪表板",
|
|
@@ -52,6 +55,7 @@ export const zhMessages = {
|
|
|
52
55
|
"check.result.passed": "mustflow 检查已通过",
|
|
53
56
|
"check.result.strictPassed": "mustflow 严格检查已通过",
|
|
54
57
|
"contractLint.help.summary": "检查 .mustflow/config/commands.toml 中的命令契约错误和警告。",
|
|
58
|
+
"contractLint.help.option.coverage": "同时报告变更分类原因的 required_after 覆盖情况",
|
|
55
59
|
"contractLint.help.exit.ok": "命令契约已检查,未发现阻塞错误",
|
|
56
60
|
"contractLint.help.exit.fail": "发现命令契约错误,或输入无效",
|
|
57
61
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -64,6 +68,11 @@ export const zhMessages = {
|
|
|
64
68
|
"contractLint.label.errors": "错误",
|
|
65
69
|
"contractLint.label.warnings": "警告",
|
|
66
70
|
"contractLint.label.sourceFiles": "来源文件",
|
|
71
|
+
"contractLint.label.coverage": "覆盖情况",
|
|
72
|
+
"contractLint.label.classificationReasons": "分类原因",
|
|
73
|
+
"contractLint.label.requiredAfterReasons": "required_after 原因",
|
|
74
|
+
"contractLint.label.runnableReasons": "可运行原因",
|
|
75
|
+
"contractLint.label.coverageFindings": "覆盖发现",
|
|
67
76
|
"contractLint.label.issues": "问题",
|
|
68
77
|
"context.help.summary": "输出当前 mustflow 根目录的代理上下文。",
|
|
69
78
|
"context.help.option.json": "输出机器可读的上下文 JSON",
|
|
@@ -89,16 +98,51 @@ export const zhMessages = {
|
|
|
89
98
|
"label.results": "结果",
|
|
90
99
|
"label.comment": "评论",
|
|
91
100
|
"label.mode": "模式",
|
|
101
|
+
"adapters.help.summary": "检查仓库中可见的宿主适配器文件,但不生成文件,也不授予适配器执行权限。",
|
|
102
|
+
"adapters.help.exit.ok": "已检查并输出适配器兼容性",
|
|
103
|
+
"adapters.help.exit.fail": "命令收到无效输入",
|
|
104
|
+
"adapters.error.missingAction": "请指定 adapters 操作:status",
|
|
105
|
+
"adapters.error.unknownAction": "未知 adapters 操作:{action}",
|
|
106
|
+
"adapters.title": "mustflow 适配器状态",
|
|
107
|
+
"adapters.label.agents": "AGENTS.md",
|
|
108
|
+
"adapters.label.hostInstructionFiles": "宿主指令文件",
|
|
109
|
+
"adapters.label.adapterSurfaces": "已存在的适配器表面",
|
|
110
|
+
"adapters.label.compatibilityNotes": "兼容性说明",
|
|
111
|
+
"adapters.label.requiredChanges": "必要更改",
|
|
112
|
+
"adapters.label.commandAuthority": "命令权限来源",
|
|
92
113
|
"dashboard.help.summary": "启动本地仪表板,用于安全的 mustflow 偏好设置和文档审阅。",
|
|
93
114
|
"dashboard.help.option.host": "将仪表板绑定到本地主机。默认值:127.0.0.1",
|
|
94
115
|
"dashboard.help.option.port": "将仪表板绑定到端口。默认值 0 会选择可用端口",
|
|
95
116
|
"dashboard.help.option.open": "服务器启动后在默认浏览器中打开仪表板",
|
|
96
117
|
"dashboard.help.option.noOpen": "保持浏览器关闭。这是默认行为",
|
|
97
|
-
"dashboard.help.
|
|
118
|
+
"dashboard.help.option.export": "不启动服务器,写入静态 HTML 快照",
|
|
119
|
+
"dashboard.help.option.exportJson": "不启动服务器,写入结构化 JSON 快照",
|
|
120
|
+
"dashboard.help.exit.ok": "仪表板已启动、已写入导出,或已输出帮助",
|
|
98
121
|
"dashboard.help.exit.fail": "仪表板无法启动,或输入无效",
|
|
99
122
|
"dashboard.error.invalidPort": "无效的仪表板端口:{port}",
|
|
100
123
|
"dashboard.error.nonLocalHost": "已拒绝仪表板主机 {host}。请使用 localhost、127.0.0.1 或 ::1。",
|
|
124
|
+
"dashboard.error.conflictingExportModes": "只能使用一种仪表板导出模式",
|
|
125
|
+
"dashboard.error.exportServerOptions": "仪表板导出不能与服务器选项一起使用",
|
|
126
|
+
"dashboard.error.exportPathOutsideRoot": "仪表板导出路径必须位于 mustflow 根目录内:{path}",
|
|
127
|
+
"dashboard.export.wrote": "已将仪表板导出写入 {path}({bytes} 字节)",
|
|
101
128
|
"dashboard.listening": "mf dashboard 正在监听 {url}",
|
|
129
|
+
"handoff.help.summary": "验证受限的工作项或交接 JSON 记录,不写入文件。",
|
|
130
|
+
"handoff.help.exit.ok": "交接记录有效",
|
|
131
|
+
"handoff.help.exit.fail": "交接记录无效或无法读取",
|
|
132
|
+
"handoff.error.missingAction": "请指定 handoff 动作:validate",
|
|
133
|
+
"handoff.error.unknownAction": "未知 handoff 动作:{action}",
|
|
134
|
+
"handoff.error.missingPath": "缺少交接记录路径",
|
|
135
|
+
"handoff.error.notFile": "交接记录路径必须是普通文件。",
|
|
136
|
+
"handoff.error.tooLarge": "交接记录超过允许的读取限制。",
|
|
137
|
+
"handoff.error.unreadable": "无法读取交接记录:{message}",
|
|
138
|
+
"handoff.title": "mustflow handoff validate",
|
|
139
|
+
"handoff.label.path": "路径",
|
|
140
|
+
"handoff.label.status": "状态",
|
|
141
|
+
"handoff.label.kind": "类型",
|
|
142
|
+
"handoff.label.task": "任务",
|
|
143
|
+
"handoff.label.issues": "问题",
|
|
144
|
+
"handoff.value.valid": "有效",
|
|
145
|
+
"handoff.value.invalid": "无效",
|
|
102
146
|
"dashboard.ui.title": "mustflow 仪表板",
|
|
103
147
|
"dashboard.ui.language": "语言",
|
|
104
148
|
"dashboard.ui.noChanges": "无更改",
|
|
@@ -563,7 +607,9 @@ export const zhMessages = {
|
|
|
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": "从 .mustflow/config/commands.toml 运行已配置的一次性命令。",
|
|
566
|
-
"run.help.option.
|
|
610
|
+
"run.help.option.dryRun": "输出命令计划但不执行",
|
|
611
|
+
"run.help.option.planOnly": "--dry-run 的别名",
|
|
612
|
+
"run.help.option.json": "将运行记录或命令计划输出为 JSON",
|
|
567
613
|
"run.help.exit.ok": "命令已以允许的退出码完成",
|
|
568
614
|
"run.help.exit.fail": "命令无效、被拒绝、超时或失败",
|
|
569
615
|
"run.error.missingIntent": "缺少命令名称",
|
|
@@ -574,6 +620,13 @@ export const zhMessages = {
|
|
|
574
620
|
"run.error.stdin": '命令 "{intent}" 必须设置 stdin = "closed"',
|
|
575
621
|
"run.error.timeout": '命令 "{intent}" 必须定义 timeout_seconds',
|
|
576
622
|
"run.error.commandSource": '命令 "{intent}" 必须定义 argv,或定义 mode = "shell" 并提供 cmd',
|
|
623
|
+
"run.error.unsafeIntent": '意图 "{intent}" 的名称不安全。{detail}',
|
|
624
|
+
"run.error.unsafeIntentDetail": "请使用 shell 安全的意图名称。",
|
|
625
|
+
"run.error.blockedShellBackground": '意图 "{intent}" 已被阻止。{detail}',
|
|
626
|
+
"run.error.blockedShellBackgroundDetail": "Shell 命令不得启动后台工作。",
|
|
627
|
+
"run.error.cwdOutsideProject": '命令 "{intent}" 的 cwd 无效:{detail}',
|
|
628
|
+
"run.error.cwdOutsideProjectDetail": "意图 cwd 必须位于当前根目录内。",
|
|
629
|
+
"run.error.conflictingPreviewModes": "只能使用 --dry-run 或 --plan-only,不能同时使用",
|
|
577
630
|
"run.error.timedOut": '命令 "{intent}" 在 {seconds} 秒后超时',
|
|
578
631
|
"run.error.startFailed": '命令 "{intent}" 启动失败:{message}',
|
|
579
632
|
"search.help.summary": "搜索本地 SQLite 索引中的 mustflow 工作流。",
|
|
@@ -606,6 +659,17 @@ export const zhMessages = {
|
|
|
606
659
|
"version.check.upToDate": "最新版本 {version};已是最新",
|
|
607
660
|
"version.check.updateCommand": "更新命令:",
|
|
608
661
|
"version.error.checkFailed": "无法从 npm 检查新版本:{message}",
|
|
662
|
+
"upgrade.help.summary": "检查已安装的 mustflow 包是否为最新,然后在可行时安全应用当前 CLI 捆绑的工作流模板更新。",
|
|
663
|
+
"upgrade.help.option.dryRun": "检查包状态并打印项目更新计划,不写入文件",
|
|
664
|
+
"upgrade.help.exit.ok": "包已是最新,项目更新检查已完成",
|
|
665
|
+
"upgrade.help.exit.fail": "需要先更新包、项目更新存在阻塞项,或输入无效",
|
|
666
|
+
"upgrade.title": "mustflow upgrade",
|
|
667
|
+
"upgrade.packageSection": "包:",
|
|
668
|
+
"upgrade.projectSection": "项目模板:",
|
|
669
|
+
"upgrade.packageUpdateRequired": "请先更新 mustflow 包,然后再次运行 `mf upgrade`。",
|
|
670
|
+
"upgrade.noFilesWritten": "未写入项目文件。",
|
|
671
|
+
"upgrade.warning.versionCheckFailed": "无法从 npm 检查新版本:{message}",
|
|
672
|
+
"upgrade.warning.continueWithBundledTemplate": "继续使用当前 CLI 捆绑的模板。",
|
|
609
673
|
"classify.help.summary": "在不修改文件的情况下分类变更路径、公开表面和所需验证原因。",
|
|
610
674
|
"classify.help.option.changed": "从 git status --short --untracked-files=all 读取路径",
|
|
611
675
|
"classify.help.exit.ok": "已检查并输出变更分类",
|
|
@@ -638,6 +702,8 @@ export const zhMessages = {
|
|
|
638
702
|
"verify.help.summary": "运行由 required_after 元数据选出的已配置验证意图。",
|
|
639
703
|
"verify.help.option.reason": "选择要验证的 required_after 原因",
|
|
640
704
|
"verify.help.option.fromPlan": "从此仓库内的 JSON 计划读取验证原因",
|
|
705
|
+
"verify.help.option.changed": "分类当前 Git 变更并验证匹配的原因",
|
|
706
|
+
"verify.help.option.writePlan": "在此仓库内写入变更文件分类计划",
|
|
641
707
|
"verify.help.option.planOnly": "仅输出验证计划,不执行命令;需要 --json",
|
|
642
708
|
"verify.help.exit.ok": "选中的所有验证意图均已通过",
|
|
643
709
|
"verify.help.exit.fail": "验证失败、部分完成、被阻止,或输入无效",
|
|
@@ -647,10 +713,13 @@ export const zhMessages = {
|
|
|
647
713
|
"verify.label.status": "状态",
|
|
648
714
|
"verify.label.results": "结果",
|
|
649
715
|
"verify.error.missingReason": "缺少验证原因",
|
|
650
|
-
"verify.error.conflictingInputs": "只能使用 --reason 或 --
|
|
716
|
+
"verify.error.conflictingInputs": "只能使用 --reason、--from-plan 或 --changed 其中之一",
|
|
717
|
+
"verify.error.writePlanRequiresChanged": "--write-plan 需要 --changed",
|
|
651
718
|
"verify.error.planOnlyJson": "--plan-only 需要 --json",
|
|
652
719
|
"verify.error.invalid_plan_file": "验证计划必须是可读取的 JSON 文件",
|
|
653
|
-
"verify.error.
|
|
720
|
+
"verify.error.unsupported_plan_source": "验证计划必须由 mf classify --json 生成",
|
|
721
|
+
"verify.error.plan_root_mismatch": "验证计划必须来自当前 mustflow 根目录",
|
|
722
|
+
"verify.error.missing_plan_reasons": "验证计划必须包含 summary.validationReasons",
|
|
654
723
|
"verify.error.plan_path_outside_root": "验证计划路径必须位于 mustflow 根目录内",
|
|
655
724
|
"explain.help.summary": "在不修改文件的情况下解释 mustflow 策略决策为何适用。",
|
|
656
725
|
"explain.help.exit.ok": "已检查并输出策略决策",
|
|
@@ -680,10 +749,12 @@ export const zhMessages = {
|
|
|
680
749
|
"explain.error.unknownTopic": "未知 explain 主题:{topic}",
|
|
681
750
|
"update.help.summary": "预览或应用已安装 mustflow 工作流的更新。",
|
|
682
751
|
"update.help.option.dryRun": "输出更新计划但不写入文件",
|
|
752
|
+
"update.help.option.diff": "与 --dry-run 一起输出受限的 diff 预览",
|
|
683
753
|
"update.help.option.apply": "在没有被阻止的本地更改时应用安全的模板更新",
|
|
684
754
|
"update.help.exit.ok": "已输出计划或已应用安全更新",
|
|
685
755
|
"update.help.exit.fail": "计划发现被阻止的更改、缺失状态或无效输入",
|
|
686
756
|
"update.error.cannotCombineModes": "不能同时使用 --dry-run 和 --apply。",
|
|
757
|
+
"update.error.diffRequiresDryRun": "请将 --diff 与 --dry-run 一起使用。",
|
|
687
758
|
"update.error.missingMode": "请指定 --dry-run 或 --apply。",
|
|
688
759
|
"update.backup.files": "已将 {count} 个{fileWord}备份到 {path}",
|
|
689
760
|
"update.action.created": "已创建 {path}",
|
|
@@ -700,6 +771,8 @@ export const zhMessages = {
|
|
|
700
771
|
"update.plan.wouldUpdate": "将更新",
|
|
701
772
|
"update.plan.wouldCreate": "将创建",
|
|
702
773
|
"update.plan.noUpdates": "不需要模板更新。",
|
|
774
|
+
"update.diff.title": "Diff 预览:",
|
|
775
|
+
"update.diff.unavailable": "diff 预览不可用:{reason}",
|
|
703
776
|
"update.plan.noFilesWritten": "未写入文件。",
|
|
704
777
|
"update.complete": "mustflow update 完成:已更新 {updated},已创建 {created}。",
|
|
705
778
|
};
|