mustflow 1.30.0 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -11
- package/dist/cli/commands/classify.js +61 -6
- package/dist/cli/commands/contract-lint.js +13 -4
- package/dist/cli/commands/dashboard.js +6 -0
- package/dist/cli/commands/index.js +5 -0
- package/dist/cli/commands/run.js +224 -48
- package/dist/cli/commands/upgrade.js +65 -0
- package/dist/cli/commands/verify.js +550 -33
- package/dist/cli/i18n/en.js +73 -10
- package/dist/cli/i18n/es.js +73 -10
- package/dist/cli/i18n/fr.js +73 -10
- package/dist/cli/i18n/hi.js +73 -10
- package/dist/cli/i18n/ko.js +73 -10
- package/dist/cli/i18n/zh.js +73 -10
- package/dist/cli/index.js +27 -46
- package/dist/cli/lib/command-registry.js +5 -0
- package/dist/cli/lib/dashboard-export.js +62 -12
- package/dist/cli/lib/dashboard-html/client-script.js +1936 -0
- package/dist/cli/lib/dashboard-html/locale-bootstrap.js +8 -0
- package/dist/cli/lib/dashboard-html/styles.js +572 -0
- package/dist/cli/lib/dashboard-html/template.js +134 -0
- package/dist/cli/lib/dashboard-html/types.js +1 -0
- package/dist/cli/lib/dashboard-html.js +1 -1907
- package/dist/cli/lib/dashboard-locale.js +37 -0
- package/dist/cli/lib/local-index/constants.js +48 -0
- package/dist/cli/lib/local-index/index.js +2256 -0
- package/dist/cli/lib/local-index/sql.js +15 -0
- package/dist/cli/lib/local-index/types.js +1 -0
- package/dist/cli/lib/local-index.js +1 -1908
- package/dist/cli/lib/reporter.js +6 -0
- package/dist/cli/lib/run-plan.js +96 -4
- package/dist/cli/lib/templates.js +18 -1
- package/dist/cli/lib/validation/command-intents.js +11 -0
- package/dist/cli/lib/validation/constants.js +238 -0
- package/dist/cli/lib/validation/index.js +1384 -0
- package/dist/cli/lib/validation/primitives.js +198 -0
- package/dist/cli/lib/validation/test-selection.js +95 -0
- package/dist/cli/lib/validation/types.js +1 -0
- package/dist/cli/lib/validation.js +1 -1661
- package/dist/core/bounded-output.js +38 -0
- package/dist/core/change-classification.js +6 -2
- package/dist/core/change-verification.js +240 -6
- package/dist/core/check-issues.js +12 -0
- package/dist/core/command-contract-validation.js +20 -0
- package/dist/core/command-effects.js +13 -0
- package/dist/core/completion-verdict.js +209 -0
- package/dist/core/contract-lint.js +316 -7
- package/dist/core/dashboard-verification.js +8 -0
- package/dist/core/external-evidence.js +9 -0
- package/dist/core/public-json-contracts.js +28 -0
- package/dist/core/repeated-failure.js +17 -0
- package/dist/core/repro-evidence.js +53 -0
- package/dist/core/run-performance-history.js +307 -0
- package/dist/core/run-profile.js +87 -0
- package/dist/core/run-receipt.js +171 -4
- package/dist/core/run-write-drift.js +18 -2
- package/dist/core/scope-risk.js +64 -0
- package/dist/core/skill-route-alignment.js +110 -0
- package/dist/core/source-anchor-status.js +4 -1
- package/dist/core/test-selection.js +227 -0
- package/dist/core/validation-ratchet.js +52 -0
- package/dist/core/verification-decision-graph.js +67 -0
- package/dist/core/verification-evidence.js +249 -0
- package/dist/core/verification-scheduler.js +96 -2
- package/examples/README.md +12 -4
- package/package.json +1 -1
- package/schemas/README.md +18 -4
- package/schemas/change-verification-report.schema.json +169 -5
- package/schemas/commands.schema.json +51 -1
- package/schemas/contract-lint-report.schema.json +80 -0
- package/schemas/dashboard-export.schema.json +500 -0
- package/schemas/explain-report.schema.json +2 -0
- package/schemas/latest-run-pointer.schema.json +384 -0
- package/schemas/run-receipt.schema.json +113 -0
- package/schemas/test-selection.schema.json +81 -0
- package/schemas/verify-report.schema.json +361 -1
- package/schemas/verify-run-manifest.schema.json +410 -0
- package/templates/default/common/.mustflow/config/commands.toml +1 -1
- package/templates/default/i18n.toml +1 -1
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +124 -29
- package/templates/default/locales/en/.mustflow/skills/routes.toml +289 -0
- package/templates/default/manifest.toml +29 -2
package/dist/cli/i18n/hi.js
CHANGED
|
@@ -27,6 +27,7 @@ export const hiMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "कमांड अनुबंध की जाँच करें",
|
|
28
28
|
"command.status.summary": "स्थानीय mustflow इंस्टॉल स्थिति दिखाएँ",
|
|
29
29
|
"command.update.summary": "mustflow वर्कफ़्लो अपडेट का पूर्वावलोकन करें या लागू करें",
|
|
30
|
+
"command.upgrade.summary": "Package version जाँचें और installed workflow files सुरक्षित रूप से update करें",
|
|
30
31
|
"command.map.summary": "REPO_MAP.md बनाएँ",
|
|
31
32
|
"command.lineEndings.summary": "लाइन-एंडिंग नीति की जाँच और सामान्यीकरण करें",
|
|
32
33
|
"command.run.summary": "कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ",
|
|
@@ -55,6 +56,7 @@ export const hiMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "mustflow strict check पास हुआ",
|
|
56
57
|
"contractLint.help.summary": ".mustflow/config/commands.toml में command-contract errors और warnings जाँचें.",
|
|
57
58
|
"contractLint.help.option.coverage": "change-classification reasons के लिए required_after coverage भी report करें",
|
|
59
|
+
"contractLint.help.option.suggest": "package.json, Makefile, या justfile से non-runnable intent snippets सुझाएँ",
|
|
58
60
|
"contractLint.help.exit.ok": "कमांड अनुबंध बिना blocking errors के जाँचा गया",
|
|
59
61
|
"contractLint.help.exit.fail": "कमांड अनुबंध errors मिले या input अमान्य था",
|
|
60
62
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -72,6 +74,7 @@ export const hiMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "required_after reasons",
|
|
73
75
|
"contractLint.label.runnableReasons": "Runnable reasons",
|
|
74
76
|
"contractLint.label.coverageFindings": "Coverage findings",
|
|
77
|
+
"contractLint.label.suggestions": "Suggestions",
|
|
75
78
|
"contractLint.label.issues": "Issues",
|
|
76
79
|
"context.help.summary": "वर्तमान mustflow रूट के लिए एजेंट संदर्भ प्रिंट करें।",
|
|
77
80
|
"context.help.option.json": "मशीन-पठनीय संदर्भ JSON प्रिंट करें",
|
|
@@ -148,12 +151,28 @@ export const hiMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "बिना सहेजे बदलाव",
|
|
149
152
|
"dashboard.ui.reloaded": "फिर से लोड हुआ",
|
|
150
153
|
"dashboard.ui.saved": "सहेजा गया",
|
|
154
|
+
"dashboard.ui.loading": "लोड हो रहा है",
|
|
155
|
+
"dashboard.ui.lastUpdated": "आखिरी अपडेट: {time}",
|
|
156
|
+
"dashboard.ui.copied": "कॉपी हुआ",
|
|
151
157
|
"dashboard.ui.reload": "फिर से लोड करें",
|
|
152
158
|
"dashboard.ui.save": "सहेजें",
|
|
153
159
|
"dashboard.ui.locked": "लॉक है",
|
|
154
160
|
"dashboard.ui.customLocale": "कस्टम भाषा टैग",
|
|
155
161
|
"dashboard.ui.openMustflow": ".mustflow फ़ोल्डर खोलें",
|
|
156
162
|
"dashboard.ui.openedMustflow": ".mustflow फ़ोल्डर खोला गया",
|
|
163
|
+
"dashboard.settings.pendingHeading": "बिना सहेजी सेटिंग्स ({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "बदलाव रीसेट करें",
|
|
166
|
+
"dashboard.filter.search": "खोज",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "नाम, path, command या कारण",
|
|
168
|
+
"dashboard.filter.state": "स्थिति",
|
|
169
|
+
"dashboard.filter.all": "सभी",
|
|
170
|
+
"dashboard.filter.runnable": "चलाने योग्य",
|
|
171
|
+
"dashboard.filter.unavailable": "उपलब्ध नहीं",
|
|
172
|
+
"dashboard.filter.aligned": "Aligned",
|
|
173
|
+
"dashboard.filter.mismatch": "Mismatch",
|
|
174
|
+
"dashboard.filter.missing": "Missing",
|
|
175
|
+
"dashboard.filter.noMatches": "मेल खाते item नहीं मिले।",
|
|
157
176
|
"dashboard.tab.status": "स्थिति",
|
|
158
177
|
"dashboard.tab.verification": "सत्यापन सुझाव",
|
|
159
178
|
"dashboard.tab.commands": "कमांड",
|
|
@@ -163,6 +182,24 @@ export const hiMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "स्किल",
|
|
164
183
|
"dashboard.tab.settings": "सेटिंग्स",
|
|
165
184
|
"dashboard.tab.documents": "दस्तावेज़ समीक्षा",
|
|
185
|
+
"dashboard.actions.heading": "अगले काम",
|
|
186
|
+
"dashboard.actions.empty": "कोई काम नहीं।",
|
|
187
|
+
"dashboard.actions.missingFiles": "Missing files: {count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "समस्याएँ: {count}",
|
|
189
|
+
"dashboard.actions.verification": "सत्यापन सुझाव: {count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "अपडेट रोकने वाली चीज़ें: {count}",
|
|
191
|
+
"dashboard.actions.documents": "Review वाले दस्तावेज़: {count}",
|
|
192
|
+
"dashboard.actions.latestRun": "Latest run देखना है",
|
|
193
|
+
"dashboard.actions.openStatus": "स्थिति खोलें",
|
|
194
|
+
"dashboard.actions.openVerification": "सत्यापन खोलें",
|
|
195
|
+
"dashboard.actions.openUpdate": "अपडेट खोलें",
|
|
196
|
+
"dashboard.actions.openDocuments": "दस्तावेज़ खोलें",
|
|
197
|
+
"dashboard.actions.openRuns": "रन इतिहास खोलें",
|
|
198
|
+
"dashboard.a11y.state.ok": "ठीक",
|
|
199
|
+
"dashboard.a11y.state.warn": "ध्यान चाहिए",
|
|
200
|
+
"dashboard.a11y.state.neutral": "स्थिति",
|
|
201
|
+
"dashboard.a11y.copyCommand": "कमांड कॉपी करें: {command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "सत्यापन योजना कॉपी करें",
|
|
166
203
|
"dashboard.status.reloaded": "स्थिति फिर से लोड हुई",
|
|
167
204
|
"dashboard.status.overview": "सारांश",
|
|
168
205
|
"dashboard.status.installed": "स्थापित",
|
|
@@ -321,6 +358,8 @@ export const hiMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "Reviewer प्रकार",
|
|
322
359
|
"dashboard.docs.reviewerId": "Reviewer ID",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "व्यक्ति, LLM या tool-id",
|
|
361
|
+
"dashboard.docs.reviewerState": "{kind}: {id} के रूप में समीक्षा",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "समीक्षा actions से पहले Reviewer ID दर्ज करें।",
|
|
324
363
|
"dashboard.docs.summary": "समीक्षा सारांश",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "वैकल्पिक",
|
|
326
365
|
"dashboard.docs.comment": "टिप्पणी",
|
|
@@ -349,6 +388,7 @@ export const hiMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "इस दस्तावेज को व्यक्ति, LLM, tool या बाहरी प्रक्रिया से फिर समीक्षा के लिए चिह्नित करें।",
|
|
350
389
|
"dashboard.docs.action.ignore": "अनदेखा करें",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "इस दस्तावेज की समीक्षा छोड़ें और default सूची से छिपाएं।",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "पहले से {status}",
|
|
352
392
|
"dashboard.locked.git.auto_push": "Remote push के लिए स्पष्ट अनुरोध आवश्यक है।",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "Commit संदेश",
|
|
@@ -524,7 +564,7 @@ export const hiMessages = {
|
|
|
524
564
|
"init.help.option.interactive": "प्रॉम्प्ट से init सेटिंग्स चुनें",
|
|
525
565
|
"init.help.option.merge": "मौजूदा AGENTS.md में mustflow प्रबंधित ब्लॉक मिलाएँ",
|
|
526
566
|
"init.help.option.force": "टकराती फ़ाइलों का बैकअप लेकर उन्हें overwrite करें",
|
|
527
|
-
"init.help.option.profile": "प्रोजेक्ट profile सेट करें: minimal, oss, team, product या library",
|
|
567
|
+
"init.help.option.profile": "प्रोजेक्ट profile सेट करें: minimal, patterns, oss, team, product या library",
|
|
528
568
|
"init.help.option.locale": "इंस्टॉल किए गए mustflow दस्तावेज़ों की भाषा सेट करें",
|
|
529
569
|
"init.help.option.agentLang": "पसंदीदा एजेंट प्रतिक्रिया भाषा सेट करें",
|
|
530
570
|
"init.help.option.set": "git.auto_commit=true या git.auto_push=false जैसी सुरक्षित preference सेट करें",
|
|
@@ -611,6 +651,7 @@ export const hiMessages = {
|
|
|
611
651
|
"run.help.option.json": "Run record या command plan को JSON के रूप में प्रिंट करें",
|
|
612
652
|
"run.help.exit.ok": "कमांड अनुमत exit code के साथ पूरी हुई",
|
|
613
653
|
"run.help.exit.fail": "कमांड अमान्य थी, अस्वीकार हुई, timed out हुई या विफल हुई",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "Suggested command contract snippet",
|
|
614
655
|
"run.error.missingIntent": "कमांड नाम नहीं दिया गया",
|
|
615
656
|
"run.error.unknownIntent": "अज्ञात कमांड: {intent}",
|
|
616
657
|
"run.error.statusNotConfigured": 'कमांड "{intent}" {status} है; केवल configured कमांड चलाई जा सकती हैं',
|
|
@@ -658,8 +699,20 @@ export const hiMessages = {
|
|
|
658
699
|
"version.check.upToDate": "latest {version}; पहले से up to date",
|
|
659
700
|
"version.check.updateCommand": "Update command:",
|
|
660
701
|
"version.error.checkFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "जाँचें कि installed mustflow package current है या नहीं, फिर संभव होने पर current CLI में bundled workflow template updates सुरक्षित रूप से लागू करें.",
|
|
703
|
+
"upgrade.help.option.dryRun": "Package status जाँचें और files लिखे बिना project update plan प्रिंट करें",
|
|
704
|
+
"upgrade.help.exit.ok": "Package current था और project update check पूरा हुआ",
|
|
705
|
+
"upgrade.help.exit.fail": "Package update चाहिए, project update blocker मिला, या input invalid है",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "Package:",
|
|
708
|
+
"upgrade.projectSection": "Project template:",
|
|
709
|
+
"upgrade.packageUpdateRequired": "पहले mustflow package update करें, फिर `mf upgrade` दोबारा चलाएँ.",
|
|
710
|
+
"upgrade.noFilesWritten": "कोई project file नहीं लिखी गई.",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "Current CLI में bundled template के साथ आगे बढ़ रहे हैं.",
|
|
713
|
+
"classify.help.summary": "बदले पथ, सार्वजनिक सतह और जरूरी सत्यापन कारण वर्गीकृत करें.",
|
|
662
714
|
"classify.help.option.changed": "git status --short --untracked-files=all से पथ पढ़ें",
|
|
715
|
+
"classify.help.option.write": "Classification report को इस repository के अंदर JSON file में लिखें",
|
|
663
716
|
"classify.help.exit.ok": "बदलाव वर्गीकरण जांचकर प्रिंट किया गया",
|
|
664
717
|
"classify.title": "mustflow classify",
|
|
665
718
|
"classify.label.source": "स्रोत",
|
|
@@ -674,6 +727,7 @@ export const hiMessages = {
|
|
|
674
727
|
"classify.source.changed": "बदली फ़ाइलें",
|
|
675
728
|
"classify.source.paths": "दिए गए पथ",
|
|
676
729
|
"classify.error.missingInput": "--changed या कम से कम एक पथ दें",
|
|
730
|
+
"classify.error.write_path_outside_root": "Classification report path mustflow root के अंदर रहना चाहिए",
|
|
677
731
|
"impact.help.summary": "फ़ाइल बदले बिना बताएं कि बदले पथ package या template version decision मांगते हैं या नहीं.",
|
|
678
732
|
"impact.help.option.changed": "git status --short --untracked-files=all से पथ पढ़ें",
|
|
679
733
|
"impact.help.exit.ok": "Version impact जांचकर प्रिंट किया गया",
|
|
@@ -689,9 +743,12 @@ export const hiMessages = {
|
|
|
689
743
|
"impact.error.missingInput": "--changed या कम से कम एक पथ दें",
|
|
690
744
|
"verify.help.summary": "required_after metadata से चुने गए configured verification intents चलाएँ।",
|
|
691
745
|
"verify.help.option.reason": "Verify करने के लिए required_after reason चुनें",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "इस repository के अंदर mf classify report से verification reasons पढ़ें",
|
|
747
|
+
"verify.help.option.fromPlan": "--from-classification का compatibility alias",
|
|
693
748
|
"verify.help.option.changed": "Current Git changes classify करके matching reasons verify करें",
|
|
694
|
-
"verify.help.option.writePlan": "Changed-file classification
|
|
749
|
+
"verify.help.option.writePlan": "Changed-file classification report लिखने वाला compatibility option",
|
|
750
|
+
"verify.help.option.reproEvidence": "Repository-local JSON summary से structured bug reproduction evidence पढ़ें",
|
|
751
|
+
"verify.help.option.externalEvidence": "Repository-local JSON summary से lower-authority external CI evidence पढ़ें",
|
|
695
752
|
"verify.help.option.planOnly": "Commands चलाए बिना verification plan print करें; --json चाहिए",
|
|
696
753
|
"verify.help.exit.ok": "सभी selected verification intents pass हुए",
|
|
697
754
|
"verify.help.exit.fail": "Verification fail हुआ, partial रहा, blocked रहा, या input invalid था",
|
|
@@ -701,14 +758,20 @@ export const hiMessages = {
|
|
|
701
758
|
"verify.label.status": "Status",
|
|
702
759
|
"verify.label.results": "Results",
|
|
703
760
|
"verify.error.missingReason": "Verification reason missing है",
|
|
704
|
-
"verify.error.conflictingInputs": "--reason, --from-plan, या --changed में से केवल एक इस्तेमाल करें",
|
|
761
|
+
"verify.error.conflictingInputs": "--reason, --from-classification, --from-plan, या --changed में से केवल एक इस्तेमाल करें",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan के लिए --changed चाहिए",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only के लिए --json चाहिए",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence को --plan-only के साथ इस्तेमाल नहीं किया जा सकता",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence को --plan-only के साथ इस्तेमाल नहीं किया जा सकता",
|
|
766
|
+
"verify.error.invalid_plan_file": "Classification report readable JSON file होना चाहिए",
|
|
767
|
+
"verify.error.unsupported_plan_source": "Verification input mf classify report होना चाहिए",
|
|
768
|
+
"verify.error.plan_root_mismatch": "Classification report इसी mustflow root से आना चाहिए",
|
|
769
|
+
"verify.error.missing_plan_reasons": "Classification report में summary.validationReasons होना चाहिए",
|
|
770
|
+
"verify.error.plan_path_outside_root": "Classification report path mustflow root के अंदर रहना चाहिए",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "Repro evidence structured evidence fields वाला readable JSON summary होना चाहिए",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "Repro evidence input को command repro-evidence इस्तेमाल करना चाहिए",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "External evidence checks वाला readable JSON summary होना चाहिए",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "External evidence input को command external-evidence इस्तेमाल करना चाहिए",
|
|
712
775
|
"explain.help.summary": "फ़ाइलें बदले बिना समझाएँ कि mustflow policy decision क्यों लागू होता है।",
|
|
713
776
|
"explain.help.exit.ok": "Policy decision जाँचा और प्रिंट किया गया",
|
|
714
777
|
"explain.title": "mustflow explain",
|
package/dist/cli/i18n/ko.js
CHANGED
|
@@ -27,6 +27,7 @@ export const koMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "명령 계약을 점검합니다",
|
|
28
28
|
"command.status.summary": "로컬 mustflow 설치 상태를 출력합니다",
|
|
29
29
|
"command.update.summary": "mustflow 워크플로우 갱신을 미리 보거나 적용합니다",
|
|
30
|
+
"command.upgrade.summary": "패키지 버전을 확인하고 설치된 워크플로우 파일을 안전하게 갱신합니다",
|
|
30
31
|
"command.map.summary": "REPO_MAP.md를 작성합니다",
|
|
31
32
|
"command.lineEndings.summary": "줄바꿈 정책을 검사하고 정규화합니다",
|
|
32
33
|
"command.run.summary": "설정된 일회성 명령을 실행합니다",
|
|
@@ -55,6 +56,7 @@ export const koMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "mustflow 엄격 검사 통과",
|
|
56
57
|
"contractLint.help.summary": ".mustflow/config/commands.toml의 명령 계약 오류와 경고를 확인합니다.",
|
|
57
58
|
"contractLint.help.option.coverage": "변경 분류 이유에 대한 required_after 연결 상태도 보고합니다",
|
|
59
|
+
"contractLint.help.option.suggest": "package.json, Makefile, justfile에서 실행 불가 후보 조각을 제안합니다",
|
|
58
60
|
"contractLint.help.exit.ok": "차단 오류 없이 명령 계약을 확인했습니다",
|
|
59
61
|
"contractLint.help.exit.fail": "명령 계약 오류가 있거나 입력이 잘못되었습니다",
|
|
60
62
|
"contractLint.title": "mustflow 명령 계약 점검",
|
|
@@ -72,6 +74,7 @@ export const koMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "required_after 이유",
|
|
73
75
|
"contractLint.label.runnableReasons": "실행 가능한 이유",
|
|
74
76
|
"contractLint.label.coverageFindings": "연결 상태 발견 항목",
|
|
77
|
+
"contractLint.label.suggestions": "제안",
|
|
75
78
|
"contractLint.label.issues": "문제",
|
|
76
79
|
"context.help.summary": "현재 mustflow 루트의 에이전트 작업 맥락을 출력합니다.",
|
|
77
80
|
"context.help.option.json": "맥락을 JSON 형식으로 출력합니다",
|
|
@@ -148,12 +151,28 @@ export const koMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "저장하지 않은 변경",
|
|
149
152
|
"dashboard.ui.reloaded": "다시 불러왔습니다",
|
|
150
153
|
"dashboard.ui.saved": "저장했습니다",
|
|
154
|
+
"dashboard.ui.loading": "불러오는 중",
|
|
155
|
+
"dashboard.ui.lastUpdated": "마지막 갱신: {time}",
|
|
156
|
+
"dashboard.ui.copied": "복사됨",
|
|
151
157
|
"dashboard.ui.reload": "새로고침",
|
|
152
158
|
"dashboard.ui.save": "저장",
|
|
153
159
|
"dashboard.ui.locked": "잠김",
|
|
154
160
|
"dashboard.ui.customLocale": "직접 입력",
|
|
155
161
|
"dashboard.ui.openMustflow": ".mustflow 폴더 열기",
|
|
156
162
|
"dashboard.ui.openedMustflow": ".mustflow 폴더를 열었습니다",
|
|
163
|
+
"dashboard.settings.pendingHeading": "저장 전 설정 ({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "변경 되돌리기",
|
|
166
|
+
"dashboard.filter.search": "검색",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "이름, 경로, 명령, 이유",
|
|
168
|
+
"dashboard.filter.state": "상태",
|
|
169
|
+
"dashboard.filter.all": "전체",
|
|
170
|
+
"dashboard.filter.runnable": "실행 가능",
|
|
171
|
+
"dashboard.filter.unavailable": "사용 불가",
|
|
172
|
+
"dashboard.filter.aligned": "일치",
|
|
173
|
+
"dashboard.filter.mismatch": "불일치",
|
|
174
|
+
"dashboard.filter.missing": "누락",
|
|
175
|
+
"dashboard.filter.noMatches": "일치하는 항목이 없습니다.",
|
|
157
176
|
"dashboard.tab.status": "상태",
|
|
158
177
|
"dashboard.tab.verification": "검증 추천",
|
|
159
178
|
"dashboard.tab.commands": "명령",
|
|
@@ -163,6 +182,24 @@ export const koMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "스킬",
|
|
164
183
|
"dashboard.tab.settings": "설정",
|
|
165
184
|
"dashboard.tab.documents": "문서 검수",
|
|
185
|
+
"dashboard.actions.heading": "다음 작업",
|
|
186
|
+
"dashboard.actions.empty": "처리할 항목 없음",
|
|
187
|
+
"dashboard.actions.missingFiles": "누락 파일: {count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "이슈: {count}",
|
|
189
|
+
"dashboard.actions.verification": "검증 추천: {count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "업데이트 차단: {count}",
|
|
191
|
+
"dashboard.actions.documents": "검수 문서: {count}",
|
|
192
|
+
"dashboard.actions.latestRun": "최근 실행 확인 필요",
|
|
193
|
+
"dashboard.actions.openStatus": "상태 보기",
|
|
194
|
+
"dashboard.actions.openVerification": "검증 보기",
|
|
195
|
+
"dashboard.actions.openUpdate": "업데이트 보기",
|
|
196
|
+
"dashboard.actions.openDocuments": "문서 보기",
|
|
197
|
+
"dashboard.actions.openRuns": "실행 기록 보기",
|
|
198
|
+
"dashboard.a11y.state.ok": "정상",
|
|
199
|
+
"dashboard.a11y.state.warn": "확인 필요",
|
|
200
|
+
"dashboard.a11y.state.neutral": "상태",
|
|
201
|
+
"dashboard.a11y.copyCommand": "명령 복사: {command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "검증 계획 복사",
|
|
166
203
|
"dashboard.status.reloaded": "상태를 다시 불러왔습니다",
|
|
167
204
|
"dashboard.status.overview": "개요",
|
|
168
205
|
"dashboard.status.installed": "설치됨",
|
|
@@ -321,6 +358,8 @@ export const koMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "검수자 종류",
|
|
322
359
|
"dashboard.docs.reviewerId": "검수자 ID",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "사람 이름, LLM, 도구 ID",
|
|
361
|
+
"dashboard.docs.reviewerState": "현재 검수자: {kind} / {id}",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "검수 작업 버튼을 쓰려면 검수자 ID를 입력하세요.",
|
|
324
363
|
"dashboard.docs.summary": "검수 요약",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "선택 입력",
|
|
326
365
|
"dashboard.docs.comment": "코멘트",
|
|
@@ -349,6 +388,7 @@ export const koMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "사람, LLM, 도구 등 다른 검수자가 다시 봐야 하는 문서로 표시합니다.",
|
|
350
389
|
"dashboard.docs.action.ignore": "무시",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "검수를 건너뛰기로 결정하고 기본 목록에서 숨깁니다.",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "이미 {status} 상태입니다",
|
|
352
392
|
"dashboard.locked.git.auto_push": "원격 저장소 변경은 명시적 요청이 필요합니다.",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "커밋 메시지",
|
|
@@ -524,7 +564,7 @@ export const koMessages = {
|
|
|
524
564
|
"init.help.option.interactive": "질문에 답하며 초기 설정을 선택합니다",
|
|
525
565
|
"init.help.option.merge": "기존 AGENTS.md에 mustflow 관리 블록만 병합합니다",
|
|
526
566
|
"init.help.option.force": "충돌 파일을 백업한 뒤 덮어씁니다",
|
|
527
|
-
"init.help.option.profile": "프로젝트 유형을 설정합니다: minimal, oss, team, product, library",
|
|
567
|
+
"init.help.option.profile": "프로젝트 유형을 설정합니다: minimal, patterns, oss, team, product, library",
|
|
528
568
|
"init.help.option.locale": "설치할 mustflow 문서 언어를 설정합니다",
|
|
529
569
|
"init.help.option.agentLang": "에이전트 응답 언어를 설정합니다",
|
|
530
570
|
"init.help.option.set": "git.auto_commit=true 또는 git.auto_push=false 같은 안전한 설정 항목의 값을 지정합니다",
|
|
@@ -611,6 +651,7 @@ export const koMessages = {
|
|
|
611
651
|
"run.help.option.json": "실행 결과 또는 명령 계획을 JSON으로 출력합니다",
|
|
612
652
|
"run.help.exit.ok": "명령이 허용된 종료 코드로 완료되었습니다",
|
|
613
653
|
"run.help.exit.fail": "명령이 잘못되었거나, 거부되었거나, 시간 초과되었거나, 실패했습니다",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "제안 명령 계약 조각",
|
|
614
655
|
"run.error.missingIntent": "명령 이름이 없습니다",
|
|
615
656
|
"run.error.unknownIntent": "알 수 없는 명령: {intent}",
|
|
616
657
|
"run.error.statusNotConfigured": '명령 "{intent}"의 상태는 {status}입니다. 설정된 상태(configured)인 명령만 실행할 수 있습니다',
|
|
@@ -658,8 +699,20 @@ export const koMessages = {
|
|
|
658
699
|
"version.check.upToDate": "최신 {version}; 이미 최신 상태입니다",
|
|
659
700
|
"version.check.updateCommand": "업데이트 명령:",
|
|
660
701
|
"version.error.checkFailed": "npm에서 새 버전을 확인하지 못했습니다: {message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "설치된 mustflow 패키지가 최신인지 확인한 뒤, 가능하면 현재 CLI에 포함된 워크플로우 템플릿 갱신을 안전하게 적용합니다.",
|
|
703
|
+
"upgrade.help.option.dryRun": "패키지 상태를 확인하고 파일을 쓰지 않은 채 프로젝트 갱신 계획을 출력합니다",
|
|
704
|
+
"upgrade.help.exit.ok": "패키지가 최신이고 프로젝트 갱신 확인이 완료되었습니다",
|
|
705
|
+
"upgrade.help.exit.fail": "패키지 업데이트가 필요하거나, 프로젝트 갱신 차단 항목이 있거나, 입력이 잘못되었습니다",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "패키지:",
|
|
708
|
+
"upgrade.projectSection": "프로젝트 템플릿:",
|
|
709
|
+
"upgrade.packageUpdateRequired": "mustflow 패키지를 먼저 업데이트한 뒤 `mf upgrade`를 다시 실행하세요.",
|
|
710
|
+
"upgrade.noFilesWritten": "프로젝트 파일은 쓰지 않았습니다.",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "npm에서 새 버전을 확인하지 못했습니다: {message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "현재 CLI에 포함된 템플릿으로 계속 진행합니다.",
|
|
713
|
+
"classify.help.summary": "변경 경로, 공개 표면, 필요한 검증 이유를 분류합니다.",
|
|
662
714
|
"classify.help.option.changed": "git status --short --untracked-files=all에서 경로를 읽습니다",
|
|
715
|
+
"classify.help.option.write": "분류 보고서를 이 저장소 안의 JSON 파일로 씁니다",
|
|
663
716
|
"classify.help.exit.ok": "변경 분류를 확인하고 출력했습니다",
|
|
664
717
|
"classify.title": "mustflow 변경 분류",
|
|
665
718
|
"classify.label.source": "입력",
|
|
@@ -674,6 +727,7 @@ export const koMessages = {
|
|
|
674
727
|
"classify.source.changed": "변경 파일",
|
|
675
728
|
"classify.source.paths": "지정한 경로",
|
|
676
729
|
"classify.error.missingInput": "--changed 또는 하나 이상의 경로를 지정하세요",
|
|
730
|
+
"classify.error.write_path_outside_root": "분류 보고서 경로는 mustflow 루트 안에 있어야 합니다",
|
|
677
731
|
"impact.help.summary": "파일을 수정하지 않고 변경 경로가 패키지나 템플릿 버전 결정을 요구하는지 보고합니다.",
|
|
678
732
|
"impact.help.option.changed": "git status --short --untracked-files=all에서 경로를 읽습니다",
|
|
679
733
|
"impact.help.exit.ok": "버전 영향을 확인하고 출력했습니다",
|
|
@@ -689,9 +743,12 @@ export const koMessages = {
|
|
|
689
743
|
"impact.error.missingInput": "--changed 또는 하나 이상의 경로를 지정하세요",
|
|
690
744
|
"verify.help.summary": "required_after 메타데이터로 선택된 설정된 검증 의도를 실행합니다.",
|
|
691
745
|
"verify.help.option.reason": "검증할 required_after 이유를 지정합니다",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "이 저장소 안의 mf classify 보고서에서 검증 이유를 읽습니다",
|
|
747
|
+
"verify.help.option.fromPlan": "--from-classification과 같은 호환 옵션입니다",
|
|
693
748
|
"verify.help.option.changed": "현재 Git 변경을 분류하고 맞는 검증 이유를 실행합니다",
|
|
694
|
-
"verify.help.option.writePlan": "변경 파일 분류
|
|
749
|
+
"verify.help.option.writePlan": "변경 파일 분류 보고서를 쓰는 호환 옵션입니다",
|
|
750
|
+
"verify.help.option.reproEvidence": "저장소 안의 JSON 요약에서 구조화된 버그 재현 증거를 읽습니다",
|
|
751
|
+
"verify.help.option.externalEvidence": "저장소 안의 JSON 요약에서 낮은 권한의 외부 CI 증거를 읽습니다",
|
|
695
752
|
"verify.help.option.planOnly": "명령을 실행하지 않고 검증 계획만 출력합니다. --json이 필요합니다",
|
|
696
753
|
"verify.help.exit.ok": "선택된 모든 검증 의도가 통과했습니다",
|
|
697
754
|
"verify.help.exit.fail": "검증이 실패했거나, 일부만 실행됐거나, 막혔거나, 입력이 올바르지 않습니다",
|
|
@@ -701,14 +758,20 @@ export const koMessages = {
|
|
|
701
758
|
"verify.label.status": "상태",
|
|
702
759
|
"verify.label.results": "결과",
|
|
703
760
|
"verify.error.missingReason": "검증 이유가 없습니다",
|
|
704
|
-
"verify.error.conflictingInputs": "--reason, --from-plan, --changed 중 하나만 사용하세요",
|
|
761
|
+
"verify.error.conflictingInputs": "--reason, --from-classification, --from-plan, --changed 중 하나만 사용하세요",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan에는 --changed가 필요합니다",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only에는 --json이 필요합니다",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence는 --plan-only와 함께 사용할 수 없습니다",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence는 --plan-only와 함께 사용할 수 없습니다",
|
|
766
|
+
"verify.error.invalid_plan_file": "분류 보고서는 읽을 수 있는 JSON 파일이어야 합니다",
|
|
767
|
+
"verify.error.unsupported_plan_source": "검증 입력은 mf classify 보고서여야 합니다",
|
|
768
|
+
"verify.error.plan_root_mismatch": "분류 보고서는 현재 mustflow 루트에서 나온 것이어야 합니다",
|
|
769
|
+
"verify.error.missing_plan_reasons": "분류 보고서에는 summary.validationReasons가 있어야 합니다",
|
|
770
|
+
"verify.error.plan_path_outside_root": "분류 보고서 경로는 mustflow 루트 안에 있어야 합니다",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "재현 증거는 구조화된 증거 필드를 포함한 읽을 수 있는 JSON 요약이어야 합니다",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "재현 증거 입력은 command repro-evidence를 사용해야 합니다",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "외부 증거는 checks를 포함한 읽을 수 있는 JSON 요약이어야 합니다",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "외부 증거 입력은 command external-evidence를 사용해야 합니다",
|
|
712
775
|
"explain.help.summary": "파일을 수정하지 않고 mustflow 정책 결정이 왜 적용되는지 설명합니다.",
|
|
713
776
|
"explain.help.exit.ok": "정책 결정을 확인하고 출력했습니다",
|
|
714
777
|
"explain.title": "mustflow 설명",
|
package/dist/cli/i18n/zh.js
CHANGED
|
@@ -27,6 +27,7 @@ export const zhMessages = {
|
|
|
27
27
|
"command.contractLint.summary": "检查命令契约",
|
|
28
28
|
"command.status.summary": "显示本地 mustflow 安装状态",
|
|
29
29
|
"command.update.summary": "预览或应用 mustflow 工作流更新",
|
|
30
|
+
"command.upgrade.summary": "检查包版本并安全更新已安装的工作流文件",
|
|
30
31
|
"command.map.summary": "生成 REPO_MAP.md",
|
|
31
32
|
"command.lineEndings.summary": "检查并规范化换行符策略",
|
|
32
33
|
"command.run.summary": "运行已配置的一次性命令",
|
|
@@ -55,6 +56,7 @@ export const zhMessages = {
|
|
|
55
56
|
"check.result.strictPassed": "mustflow 严格检查已通过",
|
|
56
57
|
"contractLint.help.summary": "检查 .mustflow/config/commands.toml 中的命令契约错误和警告。",
|
|
57
58
|
"contractLint.help.option.coverage": "同时报告变更分类原因的 required_after 覆盖情况",
|
|
59
|
+
"contractLint.help.option.suggest": "从 package.json、Makefile 或 justfile 建议不可运行的 intent 片段",
|
|
58
60
|
"contractLint.help.exit.ok": "命令契约已检查,未发现阻塞错误",
|
|
59
61
|
"contractLint.help.exit.fail": "发现命令契约错误,或输入无效",
|
|
60
62
|
"contractLint.title": "mustflow contract-lint",
|
|
@@ -72,6 +74,7 @@ export const zhMessages = {
|
|
|
72
74
|
"contractLint.label.requiredAfterReasons": "required_after 原因",
|
|
73
75
|
"contractLint.label.runnableReasons": "可运行原因",
|
|
74
76
|
"contractLint.label.coverageFindings": "覆盖发现",
|
|
77
|
+
"contractLint.label.suggestions": "建议",
|
|
75
78
|
"contractLint.label.issues": "问题",
|
|
76
79
|
"context.help.summary": "输出当前 mustflow 根目录的代理上下文。",
|
|
77
80
|
"context.help.option.json": "输出机器可读的上下文 JSON",
|
|
@@ -148,12 +151,28 @@ export const zhMessages = {
|
|
|
148
151
|
"dashboard.ui.unsavedChanges": "未保存的更改",
|
|
149
152
|
"dashboard.ui.reloaded": "已重新加载",
|
|
150
153
|
"dashboard.ui.saved": "已保存",
|
|
154
|
+
"dashboard.ui.loading": "正在加载",
|
|
155
|
+
"dashboard.ui.lastUpdated": "上次更新:{time}",
|
|
156
|
+
"dashboard.ui.copied": "已复制",
|
|
151
157
|
"dashboard.ui.reload": "重新加载",
|
|
152
158
|
"dashboard.ui.save": "保存",
|
|
153
159
|
"dashboard.ui.locked": "已锁定",
|
|
154
160
|
"dashboard.ui.customLocale": "自定义语言标签",
|
|
155
161
|
"dashboard.ui.openMustflow": "打开 .mustflow 文件夹",
|
|
156
162
|
"dashboard.ui.openedMustflow": "已打开 .mustflow 文件夹",
|
|
163
|
+
"dashboard.settings.pendingHeading": "未保存设置({count})",
|
|
164
|
+
"dashboard.settings.pendingItem": "{name}: {from} -> {to}",
|
|
165
|
+
"dashboard.settings.resetChanges": "重置更改",
|
|
166
|
+
"dashboard.filter.search": "搜索",
|
|
167
|
+
"dashboard.filter.searchPlaceholder": "名称、路径、命令或原因",
|
|
168
|
+
"dashboard.filter.state": "状态",
|
|
169
|
+
"dashboard.filter.all": "全部",
|
|
170
|
+
"dashboard.filter.runnable": "可运行",
|
|
171
|
+
"dashboard.filter.unavailable": "不可用",
|
|
172
|
+
"dashboard.filter.aligned": "已对齐",
|
|
173
|
+
"dashboard.filter.mismatch": "不匹配",
|
|
174
|
+
"dashboard.filter.missing": "缺失",
|
|
175
|
+
"dashboard.filter.noMatches": "没有匹配项。",
|
|
157
176
|
"dashboard.tab.status": "状态",
|
|
158
177
|
"dashboard.tab.verification": "验证建议",
|
|
159
178
|
"dashboard.tab.commands": "命令",
|
|
@@ -163,6 +182,24 @@ export const zhMessages = {
|
|
|
163
182
|
"dashboard.tab.skills": "技能",
|
|
164
183
|
"dashboard.tab.settings": "设置",
|
|
165
184
|
"dashboard.tab.documents": "文档审阅",
|
|
185
|
+
"dashboard.actions.heading": "下一步",
|
|
186
|
+
"dashboard.actions.empty": "没有待处理项。",
|
|
187
|
+
"dashboard.actions.missingFiles": "缺失文件:{count}",
|
|
188
|
+
"dashboard.actions.manifestIssues": "问题:{count}",
|
|
189
|
+
"dashboard.actions.verification": "验证建议:{count}",
|
|
190
|
+
"dashboard.actions.updateBlockers": "更新阻塞项:{count}",
|
|
191
|
+
"dashboard.actions.documents": "待审阅文档:{count}",
|
|
192
|
+
"dashboard.actions.latestRun": "最近运行需要查看",
|
|
193
|
+
"dashboard.actions.openStatus": "打开状态",
|
|
194
|
+
"dashboard.actions.openVerification": "打开验证",
|
|
195
|
+
"dashboard.actions.openUpdate": "打开更新",
|
|
196
|
+
"dashboard.actions.openDocuments": "打开文档",
|
|
197
|
+
"dashboard.actions.openRuns": "打开运行记录",
|
|
198
|
+
"dashboard.a11y.state.ok": "正常",
|
|
199
|
+
"dashboard.a11y.state.warn": "需要注意",
|
|
200
|
+
"dashboard.a11y.state.neutral": "状态",
|
|
201
|
+
"dashboard.a11y.copyCommand": "复制命令:{command}",
|
|
202
|
+
"dashboard.a11y.copyVerificationPlan": "复制验证计划",
|
|
166
203
|
"dashboard.status.reloaded": "状态已重新加载",
|
|
167
204
|
"dashboard.status.overview": "概览",
|
|
168
205
|
"dashboard.status.installed": "已安装",
|
|
@@ -321,6 +358,8 @@ export const zhMessages = {
|
|
|
321
358
|
"dashboard.docs.reviewerKind": "审阅者类型",
|
|
322
359
|
"dashboard.docs.reviewerId": "审阅者 ID",
|
|
323
360
|
"dashboard.docs.reviewerIdPlaceholder": "人员、LLM 或工具 ID",
|
|
361
|
+
"dashboard.docs.reviewerState": "当前审阅者:{kind} / {id}",
|
|
362
|
+
"dashboard.docs.reviewerStateMissing": "使用审阅操作前请输入审阅者 ID。",
|
|
324
363
|
"dashboard.docs.summary": "审阅摘要",
|
|
325
364
|
"dashboard.docs.summaryPlaceholder": "可选",
|
|
326
365
|
"dashboard.docs.comment": "评论",
|
|
@@ -349,6 +388,7 @@ export const zhMessages = {
|
|
|
349
388
|
"dashboard.docs.action.needsReview.tooltip": "将此文档标记为需要人员、LLM、工具或外部流程再次审阅。",
|
|
350
389
|
"dashboard.docs.action.ignore": "忽略",
|
|
351
390
|
"dashboard.docs.action.ignore.tooltip": "跳过此文档的审阅,并从默认列表中隐藏。",
|
|
391
|
+
"dashboard.docs.action.currentStatus": "已是 {status}",
|
|
352
392
|
"dashboard.locked.git.auto_push": "远程推送需要明确请求。",
|
|
353
393
|
"dashboard.group.git": "Git",
|
|
354
394
|
"dashboard.group.commitMessage": "提交消息",
|
|
@@ -524,7 +564,7 @@ export const zhMessages = {
|
|
|
524
564
|
"init.help.option.interactive": "通过提示选择初始化设置",
|
|
525
565
|
"init.help.option.merge": "将 mustflow 管理块合并到现有 AGENTS.md",
|
|
526
566
|
"init.help.option.force": "备份冲突文件并覆盖它们",
|
|
527
|
-
"init.help.option.profile": "设置项目配置:minimal、oss、team、product 或 library",
|
|
567
|
+
"init.help.option.profile": "设置项目配置:minimal、patterns、oss、team、product 或 library",
|
|
528
568
|
"init.help.option.locale": "设置已安装 mustflow 文档的语言",
|
|
529
569
|
"init.help.option.agentLang": "设置首选代理响应语言",
|
|
530
570
|
"init.help.option.set": "设置安全偏好值,例如 git.auto_commit=true 或 git.auto_push=false",
|
|
@@ -611,6 +651,7 @@ export const zhMessages = {
|
|
|
611
651
|
"run.help.option.json": "将运行记录或命令计划输出为 JSON",
|
|
612
652
|
"run.help.exit.ok": "命令已以允许的退出码完成",
|
|
613
653
|
"run.help.exit.fail": "命令无效、被拒绝、超时或失败",
|
|
654
|
+
"run.label.suggestedIntentSnippet": "建议的命令契约片段",
|
|
614
655
|
"run.error.missingIntent": "缺少命令名称",
|
|
615
656
|
"run.error.unknownIntent": "未知命令:{intent}",
|
|
616
657
|
"run.error.statusNotConfigured": '命令 "{intent}" 的状态为 {status};只能运行已配置的命令',
|
|
@@ -658,8 +699,20 @@ export const zhMessages = {
|
|
|
658
699
|
"version.check.upToDate": "最新版本 {version};已是最新",
|
|
659
700
|
"version.check.updateCommand": "更新命令:",
|
|
660
701
|
"version.error.checkFailed": "无法从 npm 检查新版本:{message}",
|
|
661
|
-
"
|
|
702
|
+
"upgrade.help.summary": "检查已安装的 mustflow 包是否为最新,然后在可行时安全应用当前 CLI 捆绑的工作流模板更新。",
|
|
703
|
+
"upgrade.help.option.dryRun": "检查包状态并打印项目更新计划,不写入文件",
|
|
704
|
+
"upgrade.help.exit.ok": "包已是最新,项目更新检查已完成",
|
|
705
|
+
"upgrade.help.exit.fail": "需要先更新包、项目更新存在阻塞项,或输入无效",
|
|
706
|
+
"upgrade.title": "mustflow upgrade",
|
|
707
|
+
"upgrade.packageSection": "包:",
|
|
708
|
+
"upgrade.projectSection": "项目模板:",
|
|
709
|
+
"upgrade.packageUpdateRequired": "请先更新 mustflow 包,然后再次运行 `mf upgrade`。",
|
|
710
|
+
"upgrade.noFilesWritten": "未写入项目文件。",
|
|
711
|
+
"upgrade.warning.versionCheckFailed": "无法从 npm 检查新版本:{message}",
|
|
712
|
+
"upgrade.warning.continueWithBundledTemplate": "继续使用当前 CLI 捆绑的模板。",
|
|
713
|
+
"classify.help.summary": "分类变更路径、公开表面和所需验证原因。",
|
|
662
714
|
"classify.help.option.changed": "从 git status --short --untracked-files=all 读取路径",
|
|
715
|
+
"classify.help.option.write": "将分类报告写入此仓库内的 JSON 文件",
|
|
663
716
|
"classify.help.exit.ok": "已检查并输出变更分类",
|
|
664
717
|
"classify.title": "mustflow classify",
|
|
665
718
|
"classify.label.source": "来源",
|
|
@@ -674,6 +727,7 @@ export const zhMessages = {
|
|
|
674
727
|
"classify.source.changed": "变更文件",
|
|
675
728
|
"classify.source.paths": "指定路径",
|
|
676
729
|
"classify.error.missingInput": "请指定 --changed 或至少一个路径",
|
|
730
|
+
"classify.error.write_path_outside_root": "分类报告路径必须位于 mustflow 根目录内",
|
|
677
731
|
"impact.help.summary": "在不修改文件的情况下报告变更路径是否需要包或模板版本决策。",
|
|
678
732
|
"impact.help.option.changed": "从 git status --short --untracked-files=all 读取路径",
|
|
679
733
|
"impact.help.exit.ok": "已检查并输出版本影响",
|
|
@@ -689,9 +743,12 @@ export const zhMessages = {
|
|
|
689
743
|
"impact.error.missingInput": "请指定 --changed 或至少一个路径",
|
|
690
744
|
"verify.help.summary": "运行由 required_after 元数据选出的已配置验证意图。",
|
|
691
745
|
"verify.help.option.reason": "选择要验证的 required_after 原因",
|
|
692
|
-
"verify.help.option.
|
|
746
|
+
"verify.help.option.fromClassification": "从此仓库内的 mf classify 报告读取验证原因",
|
|
747
|
+
"verify.help.option.fromPlan": "--from-classification 的兼容别名",
|
|
693
748
|
"verify.help.option.changed": "分类当前 Git 变更并验证匹配的原因",
|
|
694
|
-
"verify.help.option.writePlan": "
|
|
749
|
+
"verify.help.option.writePlan": "写入变更文件分类报告的兼容选项",
|
|
750
|
+
"verify.help.option.reproEvidence": "从仓库本地 JSON 摘要读取结构化的 bug 复现证据",
|
|
751
|
+
"verify.help.option.externalEvidence": "从仓库本地 JSON 摘要读取低权限外部 CI 证据",
|
|
695
752
|
"verify.help.option.planOnly": "仅输出验证计划,不执行命令;需要 --json",
|
|
696
753
|
"verify.help.exit.ok": "选中的所有验证意图均已通过",
|
|
697
754
|
"verify.help.exit.fail": "验证失败、部分完成、被阻止,或输入无效",
|
|
@@ -701,14 +758,20 @@ export const zhMessages = {
|
|
|
701
758
|
"verify.label.status": "状态",
|
|
702
759
|
"verify.label.results": "结果",
|
|
703
760
|
"verify.error.missingReason": "缺少验证原因",
|
|
704
|
-
"verify.error.conflictingInputs": "只能使用 --reason、--from-plan 或 --changed 其中之一",
|
|
761
|
+
"verify.error.conflictingInputs": "只能使用 --reason、--from-classification、--from-plan 或 --changed 其中之一",
|
|
705
762
|
"verify.error.writePlanRequiresChanged": "--write-plan 需要 --changed",
|
|
706
763
|
"verify.error.planOnlyJson": "--plan-only 需要 --json",
|
|
707
|
-
"verify.error.
|
|
708
|
-
"verify.error.
|
|
709
|
-
"verify.error.
|
|
710
|
-
"verify.error.
|
|
711
|
-
"verify.error.
|
|
764
|
+
"verify.error.reproEvidenceRequiresRun": "--repro-evidence 不能与 --plan-only 一起使用",
|
|
765
|
+
"verify.error.externalEvidenceRequiresRun": "--external-evidence 不能与 --plan-only 一起使用",
|
|
766
|
+
"verify.error.invalid_plan_file": "分类报告必须是可读取的 JSON 文件",
|
|
767
|
+
"verify.error.unsupported_plan_source": "验证输入必须是 mf classify 报告",
|
|
768
|
+
"verify.error.plan_root_mismatch": "分类报告必须来自当前 mustflow 根目录",
|
|
769
|
+
"verify.error.missing_plan_reasons": "分类报告必须包含 summary.validationReasons",
|
|
770
|
+
"verify.error.plan_path_outside_root": "分类报告路径必须位于 mustflow 根目录内",
|
|
771
|
+
"verify.error.invalid_repro_evidence_file": "复现证据必须是包含结构化证据字段的可读取 JSON 摘要",
|
|
772
|
+
"verify.error.unsupported_repro_evidence_source": "复现证据输入必须使用 command repro-evidence",
|
|
773
|
+
"verify.error.invalid_external_evidence_file": "外部证据必须是包含 checks 的可读取 JSON 摘要",
|
|
774
|
+
"verify.error.unsupported_external_evidence_source": "外部证据输入必须使用 command external-evidence",
|
|
712
775
|
"explain.help.summary": "在不修改文件的情况下解释 mustflow 策略决策为何适用。",
|
|
713
776
|
"explain.help.exit.ok": "已检查并输出策略决策",
|
|
714
777
|
"explain.title": "mustflow explain",
|