mustflow 1.15.97
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/LICENSE +16 -0
- package/README.md +422 -0
- package/dist/cli/commands/check.js +73 -0
- package/dist/cli/commands/classify.js +104 -0
- package/dist/cli/commands/context.js +95 -0
- package/dist/cli/commands/contract-lint.js +74 -0
- package/dist/cli/commands/dashboard.js +654 -0
- package/dist/cli/commands/docs.js +382 -0
- package/dist/cli/commands/doctor.js +232 -0
- package/dist/cli/commands/explain.js +293 -0
- package/dist/cli/commands/help.js +148 -0
- package/dist/cli/commands/impact.js +120 -0
- package/dist/cli/commands/index.js +70 -0
- package/dist/cli/commands/init.js +986 -0
- package/dist/cli/commands/line-endings.js +102 -0
- package/dist/cli/commands/map.js +95 -0
- package/dist/cli/commands/run.js +442 -0
- package/dist/cli/commands/search.js +166 -0
- package/dist/cli/commands/status.js +65 -0
- package/dist/cli/commands/update.js +443 -0
- package/dist/cli/commands/verify.js +448 -0
- package/dist/cli/commands/version-sources.js +79 -0
- package/dist/cli/commands/version.js +57 -0
- package/dist/cli/i18n/en.js +702 -0
- package/dist/cli/i18n/es.js +702 -0
- package/dist/cli/i18n/fr.js +702 -0
- package/dist/cli/i18n/hi.js +702 -0
- package/dist/cli/i18n/ko.js +702 -0
- package/dist/cli/i18n/zh.js +702 -0
- package/dist/cli/index.js +218 -0
- package/dist/cli/lib/agent-context.js +342 -0
- package/dist/cli/lib/browser-open.js +58 -0
- package/dist/cli/lib/cli-output.js +36 -0
- package/dist/cli/lib/command-contract.js +1 -0
- package/dist/cli/lib/command-registry.js +107 -0
- package/dist/cli/lib/dashboard-html.js +1866 -0
- package/dist/cli/lib/dashboard-locale.js +309 -0
- package/dist/cli/lib/dashboard-preferences.js +405 -0
- package/dist/cli/lib/doc-review-ledger.js +226 -0
- package/dist/cli/lib/filesystem.js +125 -0
- package/dist/cli/lib/git-changes.js +13 -0
- package/dist/cli/lib/i18n.js +55 -0
- package/dist/cli/lib/local-index.js +1014 -0
- package/dist/cli/lib/locale-tags.js +4 -0
- package/dist/cli/lib/manifest-lock.js +131 -0
- package/dist/cli/lib/npm-version-check.js +97 -0
- package/dist/cli/lib/package-info.js +13 -0
- package/dist/cli/lib/preferences-options.js +8 -0
- package/dist/cli/lib/project-root.js +23 -0
- package/dist/cli/lib/repo-map.js +635 -0
- package/dist/cli/lib/reporter.js +8 -0
- package/dist/cli/lib/run-receipt.js +1 -0
- package/dist/cli/lib/template-i18n.js +265 -0
- package/dist/cli/lib/templates.js +188 -0
- package/dist/cli/lib/toml.js +1 -0
- package/dist/cli/lib/validation.js +1639 -0
- package/dist/cli/lib/version-sources.js +1 -0
- package/dist/core/authority-resolution.js +155 -0
- package/dist/core/change-classification.js +122 -0
- package/dist/core/change-verification.js +80 -0
- package/dist/core/check-issues.js +67 -0
- package/dist/core/command-classification.js +22 -0
- package/dist/core/command-contract-rules.js +27 -0
- package/dist/core/command-contract-validation.js +197 -0
- package/dist/core/command-cwd.js +12 -0
- package/dist/core/command-effects.js +182 -0
- package/dist/core/command-explanation.js +135 -0
- package/dist/core/command-intent-eligibility.js +76 -0
- package/dist/core/config-loading.js +54 -0
- package/dist/core/contract-lint.js +110 -0
- package/dist/core/contract-models.js +53 -0
- package/dist/core/dashboard-verification.js +132 -0
- package/dist/core/doc-review-triage.js +92 -0
- package/dist/core/line-endings.js +144 -0
- package/dist/core/public-json-contracts.js +112 -0
- package/dist/core/public-surface-explanation.js +49 -0
- package/dist/core/release-version-validation.js +53 -0
- package/dist/core/retention-explanation.js +74 -0
- package/dist/core/retention-policy.js +57 -0
- package/dist/core/run-receipt.js +77 -0
- package/dist/core/skill-route-alignment.js +100 -0
- package/dist/core/skill-route-explanation.js +117 -0
- package/dist/core/source-anchor-explanation.js +33 -0
- package/dist/core/source-anchor-status.js +269 -0
- package/dist/core/source-anchor-symbols.js +181 -0
- package/dist/core/source-anchor-validation.js +158 -0
- package/dist/core/source-anchors.js +194 -0
- package/dist/core/surface-decision-model.js +18 -0
- package/dist/core/toml.js +11 -0
- package/dist/core/verification-plan.js +41 -0
- package/dist/core/verification-scheduler.js +92 -0
- package/dist/core/version-impact.js +54 -0
- package/dist/core/version-sources.js +235 -0
- package/dist/core/version-sync-policy.js +85 -0
- package/examples/README.md +13 -0
- package/examples/docs-only/README.md +72 -0
- package/examples/host-instruction-conflicts/README.md +47 -0
- package/examples/minimal-js/README.md +98 -0
- package/examples/missing-command-contracts/README.md +70 -0
- package/examples/nested-repos/README.md +62 -0
- package/package.json +80 -0
- package/schemas/README.md +32 -0
- package/schemas/change-verification-report.schema.json +319 -0
- package/schemas/classify-report.schema.json +113 -0
- package/schemas/commands.schema.json +116 -0
- package/schemas/context-report.schema.json +341 -0
- package/schemas/contract-lint-report.schema.json +61 -0
- package/schemas/docs-review-list.schema.json +72 -0
- package/schemas/doctor-report.schema.json +175 -0
- package/schemas/explain-report.schema.json +471 -0
- package/schemas/impact-report.schema.json +121 -0
- package/schemas/line-endings-report.schema.json +63 -0
- package/schemas/run-receipt.schema.json +75 -0
- package/schemas/verify-report.schema.json +67 -0
- package/schemas/version-sources-report.schema.json +42 -0
- package/templates/default/common/.mustflow/config/commands.toml +251 -0
- package/templates/default/common/.mustflow/config/mustflow.toml +424 -0
- package/templates/default/common/.mustflow/config/preferences.toml +125 -0
- package/templates/default/common/gitignore.mustflow +9 -0
- package/templates/default/i18n.toml +483 -0
- package/templates/default/locales/en/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/en/.mustflow/context/PROJECT.md +66 -0
- package/templates/default/locales/en/.mustflow/docs/agent-workflow.md +345 -0
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/en/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/en/.mustflow/skills/artifact-integrity-check/SKILL.md +121 -0
- package/templates/default/locales/en/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/en/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/en/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/en/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/en/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/en/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/en/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/diff-risk-review/SKILL.md +143 -0
- package/templates/default/locales/en/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/en/.mustflow/skills/docs-update/SKILL.md +100 -0
- package/templates/default/locales/en/.mustflow/skills/external-prompt-injection-defense/SKILL.md +124 -0
- package/templates/default/locales/en/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/en/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/en/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/en/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/en/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/en/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/en/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/en/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/en/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/en/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/en/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/en/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/en/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/en/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/en/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/en/.mustflow/skills/security-privacy-review/SKILL.md +130 -0
- package/templates/default/locales/en/.mustflow/skills/security-regression-tests/SKILL.md +157 -0
- package/templates/default/locales/en/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/en/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/en/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/en/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/en/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/en/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/en/.mustflow/skills/ui-quality-gate/SKILL.md +119 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/en/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/en/AGENTS.md +114 -0
- package/templates/default/locales/es/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/es/.mustflow/context/PROJECT.md +63 -0
- package/templates/default/locales/es/.mustflow/docs/agent-workflow.md +365 -0
- package/templates/default/locales/es/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/es/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/es/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/es/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/es/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/es/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/es/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/es/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/es/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/es/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/es/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/es/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/es/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/es/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/es/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/es/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/es/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/es/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/es/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/es/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/es/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/es/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/es/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/es/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/es/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/es/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/es/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/es/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/es/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/es/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/es/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/es/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/es/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/es/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/es/AGENTS.md +83 -0
- package/templates/default/locales/fr/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/fr/.mustflow/context/PROJECT.md +63 -0
- package/templates/default/locales/fr/.mustflow/docs/agent-workflow.md +368 -0
- package/templates/default/locales/fr/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/fr/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/fr/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/fr/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/fr/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/fr/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/fr/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/fr/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/fr/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/fr/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/fr/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/fr/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/fr/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/fr/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/fr/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/fr/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/fr/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/fr/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/fr/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/fr/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/fr/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/fr/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/fr/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/fr/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/fr/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/fr/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/fr/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/fr/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/fr/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/fr/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/fr/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/fr/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/fr/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/fr/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/fr/AGENTS.md +84 -0
- package/templates/default/locales/hi/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/hi/.mustflow/context/PROJECT.md +65 -0
- package/templates/default/locales/hi/.mustflow/docs/agent-workflow.md +359 -0
- package/templates/default/locales/hi/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/hi/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/hi/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/hi/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/hi/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/hi/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/hi/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/hi/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/hi/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/hi/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/hi/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/hi/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/hi/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/hi/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/hi/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/hi/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/hi/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/hi/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/hi/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/hi/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/hi/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/hi/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/hi/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/hi/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/hi/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/hi/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/hi/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/hi/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/hi/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/hi/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/hi/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/hi/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/hi/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/hi/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/hi/AGENTS.md +83 -0
- package/templates/default/locales/ko/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/ko/.mustflow/context/PROJECT.md +66 -0
- package/templates/default/locales/ko/.mustflow/docs/agent-workflow.md +506 -0
- package/templates/default/locales/ko/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/ko/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/ko/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/ko/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/ko/.mustflow/skills/code-review/SKILL.md +118 -0
- package/templates/default/locales/ko/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/ko/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/ko/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/ko/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/ko/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/ko/.mustflow/skills/docs-update/SKILL.md +107 -0
- package/templates/default/locales/ko/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/ko/.mustflow/skills/failure-triage/SKILL.md +119 -0
- package/templates/default/locales/ko/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/ko/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/ko/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/ko/.mustflow/skills/multi-agent-work-coordination/SKILL.md +259 -0
- package/templates/default/locales/ko/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/ko/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/ko/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/ko/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/ko/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/ko/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/ko/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/ko/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/ko/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/ko/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/ko/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/ko/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/ko/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/ko/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/ko/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/ko/.mustflow/skills/test-maintenance/SKILL.md +130 -0
- package/templates/default/locales/ko/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/ko/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/ko/AGENTS.md +85 -0
- package/templates/default/locales/zh/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/zh/.mustflow/context/PROJECT.md +64 -0
- package/templates/default/locales/zh/.mustflow/docs/agent-workflow.md +310 -0
- package/templates/default/locales/zh/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/zh/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/zh/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/zh/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/zh/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/zh/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/zh/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/zh/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/zh/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/zh/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/zh/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/zh/.mustflow/skills/failure-triage/SKILL.md +96 -0
- package/templates/default/locales/zh/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/zh/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/zh/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/zh/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/zh/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/zh/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/zh/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/zh/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/zh/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/zh/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/zh/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/zh/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/zh/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/zh/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/zh/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/zh/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/zh/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/zh/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/zh/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/zh/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/zh/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/zh/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/zh/AGENTS.md +86 -0
- package/templates/default/manifest.toml +339 -0
|
@@ -0,0 +1,702 @@
|
|
|
1
|
+
export const zhMessages = {
|
|
2
|
+
"cli.error.withUsage": "错误:{message}\n运行 `{helpCommand}` 查看用法。",
|
|
3
|
+
"cli.error.prefix": "错误:{message}",
|
|
4
|
+
"cli.error.unknownCommand": "未知命令:{command}",
|
|
5
|
+
"cli.error.unsupportedLanguage": "不支持的 CLI 语言:{language}",
|
|
6
|
+
"cli.error.missingLangValue": "--lang 缺少值",
|
|
7
|
+
"cli.option.help": "显示此帮助信息",
|
|
8
|
+
"cli.option.json": "输出机器可读的 JSON",
|
|
9
|
+
"cli.heading.usage": "用法",
|
|
10
|
+
"cli.heading.commands": "命令",
|
|
11
|
+
"cli.heading.topics": "主题",
|
|
12
|
+
"cli.heading.options": "选项",
|
|
13
|
+
"cli.heading.examples": "示例",
|
|
14
|
+
"cli.heading.exitCodes": "退出码",
|
|
15
|
+
"cli.common.invalidInput": "提供了无效输入",
|
|
16
|
+
"cli.error.unknownOption": "未知选项:{option}",
|
|
17
|
+
"cli.error.unexpectedArgument": "意外参数:{argument}",
|
|
18
|
+
"cli.error.unexpectedValue": "{option} 的值不符合预期",
|
|
19
|
+
"cli.error.missingValue": "{option} 缺少值",
|
|
20
|
+
"value.yes": "是",
|
|
21
|
+
"value.no": "否",
|
|
22
|
+
"value.none": "无",
|
|
23
|
+
"command.init.summary": "复制默认的 mustflow 代理工作流",
|
|
24
|
+
"command.check.summary": "验证 mustflow 文件",
|
|
25
|
+
"command.classify.summary": "分类变更文件和公开表面",
|
|
26
|
+
"command.contractLint.summary": "检查命令契约",
|
|
27
|
+
"command.status.summary": "显示本地 mustflow 安装状态",
|
|
28
|
+
"command.update.summary": "预览或应用 mustflow 工作流更新",
|
|
29
|
+
"command.map.summary": "生成 REPO_MAP.md",
|
|
30
|
+
"command.lineEndings.summary": "检查并规范化换行符策略",
|
|
31
|
+
"command.run.summary": "运行已配置的一次性命令",
|
|
32
|
+
"command.context.summary": "输出机器可读的代理上下文",
|
|
33
|
+
"command.doctor.summary": "检查 mustflow 健康状态和后续步骤",
|
|
34
|
+
"command.docs.summary": "跟踪文档审阅队列条目",
|
|
35
|
+
"command.index.summary": "构建本地 mustflow SQLite 索引",
|
|
36
|
+
"command.search.summary": "搜索本地 mustflow SQLite 索引",
|
|
37
|
+
"command.dashboard.summary": "启动本地 mustflow 仪表板",
|
|
38
|
+
"command.version.summary": "显示包版本和 npm 更新状态",
|
|
39
|
+
"command.versionSources.summary": "显示检测到的版本来源",
|
|
40
|
+
"command.verify.summary": "按原因运行必需验证",
|
|
41
|
+
"command.explain.summary": "解释 mustflow 策略决策",
|
|
42
|
+
"command.impact.summary": "报告变更文件的版本影响",
|
|
43
|
+
"command.help.summary": "显示已安装工作流的帮助",
|
|
44
|
+
"top.help.option.lang": "选择 CLI 输出语言。支持的值:{languages}",
|
|
45
|
+
"top.help.option.version": "显示包版本",
|
|
46
|
+
"top.help.exit.ok": "命令已成功完成",
|
|
47
|
+
"top.help.exit.fail": "命令因验证问题或无效输入而失败",
|
|
48
|
+
"check.help.summary": "验证当前仓库中的 mustflow 文件。",
|
|
49
|
+
"check.help.option.strict": "运行额外的代理安全严格检查",
|
|
50
|
+
"check.help.exit.ok": "所有必需的 mustflow 文件和设置均有效",
|
|
51
|
+
"check.help.exit.fail": "验证失败,或命令收到了无效输入",
|
|
52
|
+
"check.result.passed": "mustflow 检查已通过",
|
|
53
|
+
"check.result.strictPassed": "mustflow 严格检查已通过",
|
|
54
|
+
"contractLint.help.summary": "检查 .mustflow/config/commands.toml 中的命令契约错误和警告。",
|
|
55
|
+
"contractLint.help.exit.ok": "命令契约已检查,未发现阻塞错误",
|
|
56
|
+
"contractLint.help.exit.fail": "发现命令契约错误,或输入无效",
|
|
57
|
+
"contractLint.title": "mustflow contract-lint",
|
|
58
|
+
"contractLint.label.status": "状态",
|
|
59
|
+
"contractLint.label.totalIntents": "意图总数",
|
|
60
|
+
"contractLint.label.configured": "已配置",
|
|
61
|
+
"contractLint.label.runnable": "可运行",
|
|
62
|
+
"contractLint.label.manualOnly": "仅手动",
|
|
63
|
+
"contractLint.label.unknown": "未知",
|
|
64
|
+
"contractLint.label.errors": "错误",
|
|
65
|
+
"contractLint.label.warnings": "警告",
|
|
66
|
+
"contractLint.label.sourceFiles": "来源文件",
|
|
67
|
+
"contractLint.label.issues": "问题",
|
|
68
|
+
"context.help.summary": "输出当前 mustflow 根目录的代理上下文。",
|
|
69
|
+
"context.help.option.json": "输出机器可读的上下文 JSON",
|
|
70
|
+
"context.help.option.cacheProfile": "输出提示缓存配置文件:stable、task、volatile 或 all",
|
|
71
|
+
"context.help.exit.ok": "已检查并输出上下文",
|
|
72
|
+
"context.title": "mustflow 上下文",
|
|
73
|
+
"label.installed": "已安装",
|
|
74
|
+
"label.mustflowRoot": "mustflow 根目录",
|
|
75
|
+
"label.commandContract": "命令规范",
|
|
76
|
+
"label.runnableIntents": "可运行命令",
|
|
77
|
+
"label.latestRun": "最近运行",
|
|
78
|
+
"label.manifestLock": "清单锁定文件",
|
|
79
|
+
"label.trackedFiles": "已跟踪文件",
|
|
80
|
+
"label.changedFiles": "已更改文件",
|
|
81
|
+
"label.missingFiles": "缺失文件",
|
|
82
|
+
"label.database": "数据库",
|
|
83
|
+
"label.documents": "文档",
|
|
84
|
+
"label.skills": "技能",
|
|
85
|
+
"label.commandIntents": "命令定义",
|
|
86
|
+
"label.wroteFiles": "已写入文件",
|
|
87
|
+
"label.query": "查询",
|
|
88
|
+
"label.scope": "范围",
|
|
89
|
+
"label.results": "结果",
|
|
90
|
+
"label.comment": "评论",
|
|
91
|
+
"label.mode": "模式",
|
|
92
|
+
"dashboard.help.summary": "启动本地仪表板,用于安全的 mustflow 偏好设置和文档审阅。",
|
|
93
|
+
"dashboard.help.option.host": "将仪表板绑定到本地主机。默认值:127.0.0.1",
|
|
94
|
+
"dashboard.help.option.port": "将仪表板绑定到端口。默认值 0 会选择可用端口",
|
|
95
|
+
"dashboard.help.option.open": "服务器启动后在默认浏览器中打开仪表板",
|
|
96
|
+
"dashboard.help.option.noOpen": "保持浏览器关闭。这是默认行为",
|
|
97
|
+
"dashboard.help.exit.ok": "仪表板已启动,或已输出帮助",
|
|
98
|
+
"dashboard.help.exit.fail": "仪表板无法启动,或输入无效",
|
|
99
|
+
"dashboard.error.invalidPort": "无效的仪表板端口:{port}",
|
|
100
|
+
"dashboard.error.nonLocalHost": "已拒绝仪表板主机 {host}。请使用 localhost、127.0.0.1 或 ::1。",
|
|
101
|
+
"dashboard.listening": "mf dashboard 正在监听 {url}",
|
|
102
|
+
"dashboard.ui.title": "mustflow 仪表板",
|
|
103
|
+
"dashboard.ui.language": "语言",
|
|
104
|
+
"dashboard.ui.noChanges": "无更改",
|
|
105
|
+
"dashboard.ui.unsavedChanges": "未保存的更改",
|
|
106
|
+
"dashboard.ui.reloaded": "已重新加载",
|
|
107
|
+
"dashboard.ui.saved": "已保存",
|
|
108
|
+
"dashboard.ui.reload": "重新加载",
|
|
109
|
+
"dashboard.ui.save": "保存",
|
|
110
|
+
"dashboard.ui.locked": "已锁定",
|
|
111
|
+
"dashboard.ui.customLocale": "自定义语言标签",
|
|
112
|
+
"dashboard.ui.openMustflow": "打开 .mustflow 文件夹",
|
|
113
|
+
"dashboard.ui.openedMustflow": "已打开 .mustflow 文件夹",
|
|
114
|
+
"dashboard.tab.status": "状态",
|
|
115
|
+
"dashboard.tab.verification": "验证建议",
|
|
116
|
+
"dashboard.tab.commands": "命令",
|
|
117
|
+
"dashboard.tab.release": "发布",
|
|
118
|
+
"dashboard.tab.update": "更新",
|
|
119
|
+
"dashboard.tab.runs": "运行记录",
|
|
120
|
+
"dashboard.tab.skills": "技能",
|
|
121
|
+
"dashboard.tab.settings": "设置",
|
|
122
|
+
"dashboard.tab.documents": "文档审阅",
|
|
123
|
+
"dashboard.status.reloaded": "状态已重新加载",
|
|
124
|
+
"dashboard.status.overview": "概览",
|
|
125
|
+
"dashboard.status.installed": "已安装",
|
|
126
|
+
"dashboard.status.manifestLock": "清单锁",
|
|
127
|
+
"dashboard.status.template": "模板",
|
|
128
|
+
"dashboard.status.trackedFiles": "跟踪文件",
|
|
129
|
+
"dashboard.status.changedFiles": "已更改文件",
|
|
130
|
+
"dashboard.status.missingFiles": "缺失文件",
|
|
131
|
+
"dashboard.status.runnableIntents": "可运行命令",
|
|
132
|
+
"dashboard.status.activeReviewDocuments": "待审阅文档",
|
|
133
|
+
"dashboard.status.latestRun": "最近运行",
|
|
134
|
+
"dashboard.status.latestRunMissing": "没有运行记录",
|
|
135
|
+
"dashboard.status.latestRunInvalid": "运行记录无效",
|
|
136
|
+
"dashboard.status.issues": "问题",
|
|
137
|
+
"dashboard.status.noIssues": "没有问题",
|
|
138
|
+
"dashboard.status.changedFile": "已更改",
|
|
139
|
+
"dashboard.status.missingFile": "缺失",
|
|
140
|
+
"dashboard.status.yes": "是",
|
|
141
|
+
"dashboard.status.no": "否",
|
|
142
|
+
"dashboard.verification.reloaded": "验证建议已重新加载",
|
|
143
|
+
"dashboard.verification.recommendations": "建议",
|
|
144
|
+
"dashboard.verification.empty": "未检测到已更改文件。",
|
|
145
|
+
"dashboard.verification.none": "没有验证建议。",
|
|
146
|
+
"dashboard.verification.skipped": "已跳过",
|
|
147
|
+
"dashboard.verification.schedule": "建议顺序",
|
|
148
|
+
"dashboard.verification.copyPlan": "复制计划",
|
|
149
|
+
"dashboard.verification.planCopied": "计划已复制",
|
|
150
|
+
"dashboard.verification.batch": "批次",
|
|
151
|
+
"dashboard.verification.locks": "锁",
|
|
152
|
+
"dashboard.verification.effects": "效果",
|
|
153
|
+
"dashboard.verification.conflicts": "冲突",
|
|
154
|
+
"dashboard.verification.noLocks": "没有资源锁",
|
|
155
|
+
"dashboard.verification.files": "文件",
|
|
156
|
+
"dashboard.verification.copy": "复制",
|
|
157
|
+
"dashboard.verification.copied": "命令已复制",
|
|
158
|
+
"dashboard.verification.unavailable": "命令不可用",
|
|
159
|
+
"dashboard.verification.reason.mustflow": "mustflow 工作流、配置或安装模板文件已更改。",
|
|
160
|
+
"dashboard.verification.reason.docs": "文档已更改。",
|
|
161
|
+
"dashboard.verification.reason.code": "源码、脚本或测试文件已更改。",
|
|
162
|
+
"dashboard.verification.reason.release": "包、架构、模板或版本相关文件已更改。",
|
|
163
|
+
"dashboard.verification.reason.fallback": "检测到已更改文件,但没有匹配到更窄的规则。",
|
|
164
|
+
"dashboard.verification.skip.fullCovered": "建议先运行更窄的相关验证,再考虑完整测试。",
|
|
165
|
+
"dashboard.verification.skip.notRunnable": "此仓库中相关命令不可运行。",
|
|
166
|
+
"dashboard.commands.reloaded": "命令已重新加载",
|
|
167
|
+
"dashboard.commands.heading": "命令意图",
|
|
168
|
+
"dashboard.commands.empty": "未找到命令意图。",
|
|
169
|
+
"dashboard.commands.runnable": "可运行",
|
|
170
|
+
"dashboard.commands.manualOnly": "需要用户请求",
|
|
171
|
+
"dashboard.commands.unavailable": "未配置",
|
|
172
|
+
"dashboard.commands.blocked": "已阻止",
|
|
173
|
+
"dashboard.commands.status": "状态",
|
|
174
|
+
"dashboard.commands.lifecycle": "生命周期",
|
|
175
|
+
"dashboard.commands.runPolicy": "运行策略",
|
|
176
|
+
"dashboard.commands.stdin": "标准输入",
|
|
177
|
+
"dashboard.commands.timeout": "超时",
|
|
178
|
+
"dashboard.commands.cwd": "工作目录",
|
|
179
|
+
"dashboard.commands.writes": "写入路径",
|
|
180
|
+
"dashboard.commands.reason": "原因",
|
|
181
|
+
"dashboard.commands.agentAction": "代理操作",
|
|
182
|
+
"dashboard.release.reloaded": "发布状态已重新加载",
|
|
183
|
+
"dashboard.release.copied": "命令已复制",
|
|
184
|
+
"dashboard.release.overview": "概览",
|
|
185
|
+
"dashboard.release.packageVersion": "mustflow 版本",
|
|
186
|
+
"dashboard.release.templateVersion": "模板版本",
|
|
187
|
+
"dashboard.release.autoBump": "自动提升版本",
|
|
188
|
+
"dashboard.release.requireConfirmation": "需要确认",
|
|
189
|
+
"dashboard.release.changedFiles": "发布相关文件",
|
|
190
|
+
"dashboard.release.versionSources": "版本来源",
|
|
191
|
+
"dashboard.release.noVersionSources": "未检测到版本来源。",
|
|
192
|
+
"dashboard.release.noChangedFiles": "没有发布相关文件变更。",
|
|
193
|
+
"dashboard.release.declared": "已声明",
|
|
194
|
+
"dashboard.release.authority": "权威",
|
|
195
|
+
"dashboard.release.commands": "命令",
|
|
196
|
+
"dashboard.release.reason.versionCheck": "检查 npm 上是否有更新的 mustflow 包版本。",
|
|
197
|
+
"dashboard.release.reason.testRelease": "运行包元数据和打包测试。",
|
|
198
|
+
"dashboard.release.reason.docsValidate": "运行完整文档构建、搜索索引和站点地图检查。",
|
|
199
|
+
"dashboard.update.reloaded": "更新状态已重新加载",
|
|
200
|
+
"dashboard.update.copied": "命令已复制",
|
|
201
|
+
"dashboard.update.overview": "概览",
|
|
202
|
+
"dashboard.update.dryRun": "可查看计划",
|
|
203
|
+
"dashboard.update.applyReady": "可应用",
|
|
204
|
+
"dashboard.update.wouldUpdate": "将更新",
|
|
205
|
+
"dashboard.update.wouldCreate": "将创建",
|
|
206
|
+
"dashboard.update.blockedLocalChanges": "本地更改阻塞",
|
|
207
|
+
"dashboard.update.manualReview": "人工复查",
|
|
208
|
+
"dashboard.update.unchanged": "未更改",
|
|
209
|
+
"dashboard.update.error": "更新计划错误",
|
|
210
|
+
"dashboard.update.commands": "命令",
|
|
211
|
+
"dashboard.update.command.dryRun": "查看计划",
|
|
212
|
+
"dashboard.update.command.apply": "应用",
|
|
213
|
+
"dashboard.update.reason.dryRun": "显示模板更新计划,但不写入文件。",
|
|
214
|
+
"dashboard.update.reason.apply": "仅在没有阻塞项时应用安全的模板更新。",
|
|
215
|
+
"dashboard.update.blocked": "已阻止",
|
|
216
|
+
"dashboard.update.blockers": "阻塞项",
|
|
217
|
+
"dashboard.update.noBlockers": "没有更新阻塞项。",
|
|
218
|
+
"dashboard.update.changes": "模板更改",
|
|
219
|
+
"dashboard.update.noChanges": "没有将要应用的模板更改。",
|
|
220
|
+
"dashboard.update.source": "来源",
|
|
221
|
+
"dashboard.update.reason": "原因",
|
|
222
|
+
"dashboard.update.action.create": "创建",
|
|
223
|
+
"dashboard.update.action.update": "更新",
|
|
224
|
+
"dashboard.update.action.blocked-local-change": "本地更改",
|
|
225
|
+
"dashboard.update.action.manual-review": "人工复查",
|
|
226
|
+
"dashboard.runs.reloaded": "运行记录已重新加载",
|
|
227
|
+
"dashboard.runs.heading": "最近运行",
|
|
228
|
+
"dashboard.runs.empty": "未找到运行记录。",
|
|
229
|
+
"dashboard.runs.invalid": "运行记录无效",
|
|
230
|
+
"dashboard.runs.intent": "命令意图",
|
|
231
|
+
"dashboard.runs.status": "状态",
|
|
232
|
+
"dashboard.runs.exitCode": "退出代码",
|
|
233
|
+
"dashboard.runs.timedOut": "超时",
|
|
234
|
+
"dashboard.runs.startedAt": "开始",
|
|
235
|
+
"dashboard.runs.finishedAt": "结束",
|
|
236
|
+
"dashboard.runs.duration": "耗时",
|
|
237
|
+
"dashboard.runs.cwd": "工作目录",
|
|
238
|
+
"dashboard.runs.mode": "模式",
|
|
239
|
+
"dashboard.runs.timeout": "超时",
|
|
240
|
+
"dashboard.runs.receiptPath": "记录路径",
|
|
241
|
+
"dashboard.runs.lifecycle": "生命周期",
|
|
242
|
+
"dashboard.runs.runPolicy": "运行策略",
|
|
243
|
+
"dashboard.runs.successExitCodes": "成功退出代码",
|
|
244
|
+
"dashboard.runs.signal": "信号",
|
|
245
|
+
"dashboard.runs.killMethod": "终止方式",
|
|
246
|
+
"dashboard.runs.error": "错误",
|
|
247
|
+
"dashboard.runs.stdout": "标准输出",
|
|
248
|
+
"dashboard.runs.stderr": "标准错误",
|
|
249
|
+
"dashboard.runs.bytes": "字节",
|
|
250
|
+
"dashboard.runs.truncated": "已截断",
|
|
251
|
+
"dashboard.runs.emptyOutput": "没有记录输出。",
|
|
252
|
+
"dashboard.skills.reloaded": "技能已重新加载",
|
|
253
|
+
"dashboard.skills.heading": "技能路由",
|
|
254
|
+
"dashboard.skills.indexPath": "技能索引",
|
|
255
|
+
"dashboard.skills.routes": "路由",
|
|
256
|
+
"dashboard.skills.empty": "未找到技能路由。",
|
|
257
|
+
"dashboard.skills.aligned": "已对齐",
|
|
258
|
+
"dashboard.skills.mismatch": "命令意图不一致",
|
|
259
|
+
"dashboard.skills.missing": "文件缺失",
|
|
260
|
+
"dashboard.skills.path": "路径",
|
|
261
|
+
"dashboard.skills.requiredInput": "所需输入",
|
|
262
|
+
"dashboard.skills.editScope": "编辑范围",
|
|
263
|
+
"dashboard.skills.risk": "风险",
|
|
264
|
+
"dashboard.skills.verificationIntents": "验证意图",
|
|
265
|
+
"dashboard.skills.declaredCommandIntents": "已声明意图",
|
|
266
|
+
"dashboard.skills.expectedOutput": "预期输出",
|
|
267
|
+
"dashboard.docs.reloaded": "文档审阅列表已重新加载",
|
|
268
|
+
"dashboard.docs.updated": "文档审阅已更新",
|
|
269
|
+
"dashboard.docs.empty": "没有需要审阅的文档。",
|
|
270
|
+
"dashboard.docs.noSearchMatches": "没有匹配的文档。",
|
|
271
|
+
"dashboard.docs.missingReviewerId": "请输入审阅者 ID。",
|
|
272
|
+
"dashboard.docs.statusFilter": "状态",
|
|
273
|
+
"dashboard.docs.pathFilter": "文件名",
|
|
274
|
+
"dashboard.docs.pathFilterPlaceholder": "路径或文件名",
|
|
275
|
+
"dashboard.docs.reviewFields": "审阅记录",
|
|
276
|
+
"dashboard.docs.reviewerKind": "审阅者类型",
|
|
277
|
+
"dashboard.docs.reviewerId": "审阅者 ID",
|
|
278
|
+
"dashboard.docs.reviewerIdPlaceholder": "人员、LLM 或工具 ID",
|
|
279
|
+
"dashboard.docs.summary": "审阅摘要",
|
|
280
|
+
"dashboard.docs.summaryPlaceholder": "可选",
|
|
281
|
+
"dashboard.docs.comment": "评论",
|
|
282
|
+
"dashboard.docs.filter.active": "进行中",
|
|
283
|
+
"dashboard.docs.filter.pending": "待处理",
|
|
284
|
+
"dashboard.docs.filter.in_review": "审阅中",
|
|
285
|
+
"dashboard.docs.filter.changes_made": "已修改",
|
|
286
|
+
"dashboard.docs.filter.needs_human": "需要复审",
|
|
287
|
+
"dashboard.docs.filter.approved": "已批准",
|
|
288
|
+
"dashboard.docs.filter.ignored": "已忽略",
|
|
289
|
+
"dashboard.docs.filter.all": "全部",
|
|
290
|
+
"dashboard.docs.reviewerKind.human": "人工",
|
|
291
|
+
"dashboard.docs.reviewerKind.llm": "LLM",
|
|
292
|
+
"dashboard.docs.reviewerKind.tool": "工具",
|
|
293
|
+
"dashboard.docs.reviewerKind.external": "外部",
|
|
294
|
+
"dashboard.docs.status.pending": "待处理",
|
|
295
|
+
"dashboard.docs.status.in_review": "审阅中",
|
|
296
|
+
"dashboard.docs.status.changes_made": "已修改",
|
|
297
|
+
"dashboard.docs.status.approved": "已批准",
|
|
298
|
+
"dashboard.docs.status.needs_human": "需要复审",
|
|
299
|
+
"dashboard.docs.status.ignored": "已忽略",
|
|
300
|
+
"dashboard.docs.action.approve": "批准",
|
|
301
|
+
"dashboard.docs.action.approve.tooltip": "使用选定的审阅者批准此文档,并从默认列表中隐藏。",
|
|
302
|
+
"dashboard.docs.action.needsHuman": "需要复审",
|
|
303
|
+
"dashboard.docs.action.needsReview": "需要复审",
|
|
304
|
+
"dashboard.docs.action.needsReview.tooltip": "将此文档标记为需要人员、LLM、工具或外部流程再次审阅。",
|
|
305
|
+
"dashboard.docs.action.ignore": "忽略",
|
|
306
|
+
"dashboard.docs.action.ignore.tooltip": "跳过此文档的审阅,并从默认列表中隐藏。",
|
|
307
|
+
"dashboard.locked.git.auto_push": "远程推送需要明确请求。",
|
|
308
|
+
"dashboard.group.git": "Git",
|
|
309
|
+
"dashboard.group.commitMessage": "提交消息",
|
|
310
|
+
"dashboard.group.reporting": "报告",
|
|
311
|
+
"dashboard.group.verification": "验证",
|
|
312
|
+
"dashboard.group.testAuthoring": "测试编写",
|
|
313
|
+
"dashboard.group.codeStyle": "代码风格",
|
|
314
|
+
"dashboard.group.refactoring": "重构",
|
|
315
|
+
"dashboard.group.versioning": "版本",
|
|
316
|
+
"dashboard.setting.git.auto_stage": "请求时自动暂存",
|
|
317
|
+
"dashboard.setting.git.auto_stage.description": "允许在用户请求 Git 操作时执行暂存。",
|
|
318
|
+
"dashboard.setting.git.auto_commit": "请求时自动提交",
|
|
319
|
+
"dashboard.setting.git.auto_commit.description": "允许在用户明确请求提交时创建提交。",
|
|
320
|
+
"dashboard.setting.git.auto_push": "请求时自动推送",
|
|
321
|
+
"dashboard.setting.git.commit_message.style": "提交消息风格",
|
|
322
|
+
"dashboard.setting.git.commit_message.style.description.conventional": "使用 feat: 或 fix: 等类型前缀。",
|
|
323
|
+
"dashboard.setting.git.commit_message.style.description.descriptive": "使用简短的自然语言摘要,不强制类型前缀。",
|
|
324
|
+
"dashboard.setting.git.commit_message.style.description.gitmoji": "在消息前添加 Gitmoji 表情,并保留 feat: 或 fix: 等类型前缀。",
|
|
325
|
+
"dashboard.setting.git.commit_message.language": "提交消息语言",
|
|
326
|
+
"dashboard.setting.git.commit_message.language.description.preserve_existing": "沿用仓库现有的提交消息语言。",
|
|
327
|
+
"dashboard.setting.git.commit_message.language.description.agent_response": "使用与代理回复相同的语言。",
|
|
328
|
+
"dashboard.setting.git.commit_message.language.description.docs": "使用与项目文档相同的语言。",
|
|
329
|
+
"dashboard.setting.git.commit_message.language.description.en": "用英语建议提交消息。",
|
|
330
|
+
"dashboard.setting.git.commit_message.language.description.ko": "用韩语建议提交消息。",
|
|
331
|
+
"dashboard.setting.git.commit_message.language.description.zh": "用中文建议提交消息。",
|
|
332
|
+
"dashboard.setting.git.commit_message.language.description.es": "用西班牙语建议提交消息。",
|
|
333
|
+
"dashboard.setting.git.commit_message.language.description.fr": "用法语建议提交消息。",
|
|
334
|
+
"dashboard.setting.git.commit_message.language.description.hi": "用印地语建议提交消息。",
|
|
335
|
+
"dashboard.setting.git.commit_message.language.description": "使用选定的自定义语言标签来建议提交消息。",
|
|
336
|
+
"dashboard.setting.git.commit_message.max_suggestions": "提交消息建议数",
|
|
337
|
+
"dashboard.setting.git.commit_message.include_body": "提交正文",
|
|
338
|
+
"dashboard.setting.git.commit_message.include_body.description.never": "不包含提交正文;只建议标题行。",
|
|
339
|
+
"dashboard.setting.git.commit_message.include_body.description.when_non_trivial": "只有当标题行不足以说明变更时,才建议提交正文。",
|
|
340
|
+
"dashboard.setting.git.commit_message.include_body.description.always": "始终在建议中包含提交正文。",
|
|
341
|
+
"dashboard.setting.git.commit_message.split_when_multiple_concerns": "建议拆分提交",
|
|
342
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details": "避免敏感细节",
|
|
343
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details.description": "避免写入密钥、凭据、个人数据和非公开事故细节。",
|
|
344
|
+
"dashboard.setting.reporting.commit_suggestion.enabled": "提交消息建议",
|
|
345
|
+
"dashboard.setting.verification.selection.strategy": "验证策略",
|
|
346
|
+
"dashboard.setting.verification.selection.strategy.description.risk_based": "根据变更风险调整验证范围。",
|
|
347
|
+
"dashboard.setting.verification.selection.strategy.description.targeted": "优先运行与变更区域直接相关的检查。",
|
|
348
|
+
"dashboard.setting.verification.selection.strategy.description.full": "优先运行已配置的完整验证集合。",
|
|
349
|
+
"dashboard.setting.verification.selection.prefer_related_tests": "优先运行相关测试",
|
|
350
|
+
"dashboard.setting.verification.selection.skip_docs_only_full_test": "仅文档变更时跳过完整测试",
|
|
351
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test": "低风险代码变更时跳过完整测试",
|
|
352
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test.description": "仅当代码变更不影响公开行为、配置、schema、安全或迁移时,才跳过完整测试集合。",
|
|
353
|
+
"dashboard.setting.verification.selection.skip_translation_only_full_test": "仅翻译变更时跳过完整测试",
|
|
354
|
+
"dashboard.setting.verification.selection.skip_copy_only_full_test": "仅文案变更时跳过完整测试",
|
|
355
|
+
"dashboard.setting.verification.selection.report_skipped": "报告跳过的验证",
|
|
356
|
+
"dashboard.setting.testing.authoring.new_test_policy": "新测试策略",
|
|
357
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.evidence_required": "只有存在行为契约依据时才添加新测试。",
|
|
358
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.manual_approval": "除非用户直接要求测试,否则添加新测试前先询问。",
|
|
359
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.broad": "当新测试能说明重要行为时,允许主动添加。",
|
|
360
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests": "优先使用现有测试",
|
|
361
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests.description": "创建新的测试文件或用例前,先更新附近的现有测试。",
|
|
362
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale": "要求说明新测试理由",
|
|
363
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale.description": "添加测试时,在最终报告中说明每个新测试为什么必要。",
|
|
364
|
+
"dashboard.setting.code_style.avoid_drive_by_refactors": "避免无关重构",
|
|
365
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb": "大文件候选阈值",
|
|
366
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb.description": "将达到或超过此 KB 大小的源文件视为需要进一步查看的候选项,而不是已确认的重构目标。",
|
|
367
|
+
"dashboard.setting.refactoring.hotspots.history_days": "候选历史窗口",
|
|
368
|
+
"dashboard.setting.refactoring.hotspots.history_days.description": "查看变更频率和修复历史时使用最近多少天。",
|
|
369
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit": "第一轮候选上限",
|
|
370
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit.description": "打开文件前最多保留多少个第一轮候选。",
|
|
371
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit": "结构查看候选上限",
|
|
372
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit.description": "最多对多少个候选查看 import、export、声明列表和 TODO 周边。",
|
|
373
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit": "全文查看候选上限",
|
|
374
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit.description": "一次重构扫描中最多完整阅读多少个候选文件。",
|
|
375
|
+
"dashboard.setting.release.versioning.impact_check": "版本影响检查",
|
|
376
|
+
"dashboard.setting.release.versioning.impact_check.description": "检查变更是否应影响包或模板版本。",
|
|
377
|
+
"dashboard.setting.release.versioning.suggest_bump": "建议版本变更",
|
|
378
|
+
"dashboard.setting.release.versioning.suggest_bump.description": "当看起来需要版本变更时建议提升级别。",
|
|
379
|
+
"dashboard.setting.release.versioning.auto_bump": "自动提升版本",
|
|
380
|
+
"dashboard.setting.release.versioning.auto_bump.description": "允许不经过单独手动步骤就直接编辑版本文件。",
|
|
381
|
+
"dashboard.setting.release.versioning.require_user_confirmation": "需要版本确认",
|
|
382
|
+
"dashboard.setting.release.versioning.require_user_confirmation.description": "在应用或接受版本变更前先请求确认。",
|
|
383
|
+
"dashboard.setting.release.versioning.sync_template_version": "同步模板版本",
|
|
384
|
+
"dashboard.setting.release.versioning.sync_template_version.description": "保持包版本和模板 manifest 版本一致。",
|
|
385
|
+
"dashboard.setting.release.versioning.sync_docs_examples": "同步文档示例",
|
|
386
|
+
"dashboard.setting.release.versioning.sync_docs_examples.description": "保持文档示例中的版本值与所选版本一致。",
|
|
387
|
+
"dashboard.setting.release.versioning.sync_tests": "同步测试",
|
|
388
|
+
"dashboard.setting.release.versioning.sync_tests.description": "保持对版本敏感的测试和 fixture 一致。",
|
|
389
|
+
"doctor.help.summary": "检查 mustflow 根目录健康状态并提示后续步骤,不修改文件。",
|
|
390
|
+
"doctor.help.option.json": "输出机器可读的诊断 JSON",
|
|
391
|
+
"doctor.help.option.strict": "包含额外的代理安全严格检查",
|
|
392
|
+
"doctor.help.exit.ok": "已检查 mustflow 状态,未发现问题",
|
|
393
|
+
"doctor.help.exit.fail": "发现验证问题,或输入无效",
|
|
394
|
+
"doctor.title": "mustflow 诊断",
|
|
395
|
+
"doctor.label.strict": "严格",
|
|
396
|
+
"doctor.label.check": "检查",
|
|
397
|
+
"doctor.label.issues": "问题",
|
|
398
|
+
"doctor.section.health": "健康状态:",
|
|
399
|
+
"doctor.section.issueList": "问题列表:",
|
|
400
|
+
"doctor.section.suggestedCommands": "建议命令:",
|
|
401
|
+
"doctor.actionLabel": "运行",
|
|
402
|
+
"doctor.diagnostic.install": "安装",
|
|
403
|
+
"doctor.diagnostic.validation": "验证",
|
|
404
|
+
"doctor.diagnostic.skillRoutes": "技能路由",
|
|
405
|
+
"doctor.diagnostic.commands": "命令规范",
|
|
406
|
+
"doctor.diagnostic.readOrder": "读取顺序",
|
|
407
|
+
"doctor.diagnostic.optionalReadOrder": "可选读取顺序",
|
|
408
|
+
"doctor.diagnostic.repoMap": "REPO_MAP.md",
|
|
409
|
+
"doctor.diagnostic.localIndex": "本地索引",
|
|
410
|
+
"doctor.diagnostic.latestRun": "最近运行",
|
|
411
|
+
"docs.help.summary": "跟踪由 LLM 创建或修改后需要文字审阅的文档。",
|
|
412
|
+
"docs.help.option.all": "包含已批准和已忽略的文档",
|
|
413
|
+
"docs.help.option.status": "按审阅状态过滤",
|
|
414
|
+
"docs.help.option.reason": "记录文档需要审阅的原因",
|
|
415
|
+
"docs.help.option.origin": "记录审阅来源,例如 llm_modified",
|
|
416
|
+
"docs.help.option.actorKind": "记录谁修改了文档:human、llm、tool 或 external",
|
|
417
|
+
"docs.help.option.actorId": "记录自由格式的修改者标识",
|
|
418
|
+
"docs.help.option.comment": "记录所选文档的审核说明",
|
|
419
|
+
"docs.help.option.commentFile": "从 UTF-8 文本文件导入审核说明,并在更新成功后删除该源文件",
|
|
420
|
+
"docs.help.option.reviewerKind": "记录审阅者类型:human、llm、tool 或 external",
|
|
421
|
+
"docs.help.option.reviewerId": "记录自由格式的审阅者标识",
|
|
422
|
+
"docs.help.option.summary": "记录简短审阅摘要",
|
|
423
|
+
"docs.help.exit.ok": "文档审阅队列已检查或更新",
|
|
424
|
+
"docs.help.exit.fail": "输入无效或无法更新队列",
|
|
425
|
+
"docs.review.title": "mustflow 文档审阅队列",
|
|
426
|
+
"docs.review.empty": "没有需要审阅的文档。",
|
|
427
|
+
"docs.review.wrote": "写入",
|
|
428
|
+
"docs.review.added": "已添加",
|
|
429
|
+
"docs.review.commented": "已添加评论",
|
|
430
|
+
"docs.review.marked.approved": "已批准",
|
|
431
|
+
"docs.review.marked.needs_human": "已标记为 needs_human",
|
|
432
|
+
"docs.review.marked.ignored": "已忽略",
|
|
433
|
+
"docs.error.missingTopic": "缺少 docs 主题",
|
|
434
|
+
"docs.error.unknownTopic": "未知 docs 主题:{topic}",
|
|
435
|
+
"docs.error.unknownAction": "未知 docs review 操作:{action}",
|
|
436
|
+
"docs.error.missingPath": "缺少文档路径",
|
|
437
|
+
"docs.error.missingComment": "缺少审核评论",
|
|
438
|
+
"docs.error.emptyComment": "审核评论不能为空",
|
|
439
|
+
"docs.error.commentSourceConflict": "只能使用 --comment 或 --comment-file 其中一个",
|
|
440
|
+
"docs.error.commentFileIsDocument": "--comment-file 不能指向正在审核的文档",
|
|
441
|
+
"docs.error.invalidStatus": "无效审阅状态。请使用:{statuses}",
|
|
442
|
+
"docs.error.invalidReviewerKind": "无效审阅者类型。请使用:{kinds}",
|
|
443
|
+
"docs.error.missingReviewerKind": "缺少 --reviewer-kind。请使用:{kinds}",
|
|
444
|
+
"docs.error.missingReviewerId": "缺少 --reviewer-id",
|
|
445
|
+
"help.missingFile": "当前目录中未找到 {path}。请先运行 mf init,或切换到 mustflow 根目录。",
|
|
446
|
+
"help.commands.title": "命令",
|
|
447
|
+
"help.commands.noIntents": "命令\n\n在 .mustflow/config/commands.toml 中未找到 [intents] 表。",
|
|
448
|
+
"help.commands.configuredIntents": ".mustflow/config/commands.toml 中配置的命令:",
|
|
449
|
+
"help.preferences.title": "偏好设置",
|
|
450
|
+
"help.preferences.intro": ".mustflow/config/preferences.toml 中的仓库级代理偏好设置:",
|
|
451
|
+
"help.help.summary": "显示已安装 mustflow 工作流中的帮助。",
|
|
452
|
+
"help.topic.workflow": "输出 .mustflow/docs/agent-workflow.md",
|
|
453
|
+
"help.topic.skills": "输出 .mustflow/skills/INDEX.md",
|
|
454
|
+
"help.topic.commands": "汇总 .mustflow/config/commands.toml",
|
|
455
|
+
"help.topic.preferences": "汇总 .mustflow/config/preferences.toml",
|
|
456
|
+
"help.help.exit.ok": "已输出帮助主题,或没有可用的已安装主题",
|
|
457
|
+
"help.help.exit.fail": "命令收到了未知主题或选项",
|
|
458
|
+
"help.error.unknownTopic": "未知帮助主题:{topic}",
|
|
459
|
+
"index.help.summary": "为 mustflow 工作流构建可重新生成的 SQLite 索引。",
|
|
460
|
+
"index.help.option.dryRun": "计算索引目标但不写入文件",
|
|
461
|
+
"index.help.option.source": "包含结构化源码锚点但不存储源码内容",
|
|
462
|
+
"index.help.exit.ok": "已计算索引目标,并可选写入",
|
|
463
|
+
"index.title": "mustflow 索引",
|
|
464
|
+
"index.dryRunNoFiles": "试运行:未写入文件。",
|
|
465
|
+
"init.routerBlock": `<!-- mustflow:start schema=1 -->
|
|
466
|
+
此仓库遵循 mustflow 代理工作流。
|
|
467
|
+
|
|
468
|
+
开始工作前请阅读这些文件:
|
|
469
|
+
- \`.mustflow/docs/agent-workflow.md\`
|
|
470
|
+
- \`.mustflow/config/mustflow.toml\`
|
|
471
|
+
- \`.mustflow/config/commands.toml\`
|
|
472
|
+
- \`.mustflow/config/preferences.toml\`(如果存在)
|
|
473
|
+
- \`.mustflow/skills/INDEX.md\`
|
|
474
|
+
<!-- mustflow:end -->`,
|
|
475
|
+
"init.help.summary": "将默认的 mustflow 代理工作流复制到当前仓库。",
|
|
476
|
+
"init.help.option.yes": "对提示使用安全默认值",
|
|
477
|
+
"init.help.option.dryRun": "输出安装计划但不写入文件",
|
|
478
|
+
"init.help.option.interactive": "通过提示选择初始化设置",
|
|
479
|
+
"init.help.option.merge": "将 mustflow 管理块合并到现有 AGENTS.md",
|
|
480
|
+
"init.help.option.force": "备份冲突文件并覆盖它们",
|
|
481
|
+
"init.help.option.profile": "设置项目配置:minimal、oss、team、product 或 library",
|
|
482
|
+
"init.help.option.locale": "设置已安装 mustflow 文档的语言",
|
|
483
|
+
"init.help.option.agentLang": "设置首选代理响应语言",
|
|
484
|
+
"init.help.option.set": "设置安全偏好值,例如 git.auto_commit=true 或 git.auto_push=false",
|
|
485
|
+
"init.help.option.productSourceLocale": "设置面向用户产品文本的源语言",
|
|
486
|
+
"init.help.option.productLocale": "添加面向用户的产品 locale;可重复指定",
|
|
487
|
+
"init.help.exit.ok": "安装已完成、已跳过,或已输出计划",
|
|
488
|
+
"init.help.exit.fail": "无效选项或文件冲突阻止了写入",
|
|
489
|
+
"init.error.cannotCombineMergeForce": "不能同时使用 --merge 和 --force",
|
|
490
|
+
"init.error.cannotCombineInteractiveYes": "不能同时使用 --interactive 和 --yes",
|
|
491
|
+
"init.error.unsupportedProfile": "不支持的配置:{profile}",
|
|
492
|
+
"init.error.supportedProfiles": "支持的配置:{profiles}",
|
|
493
|
+
"init.error.unsupportedLocale": "不支持的 locale:{locale}",
|
|
494
|
+
"init.error.supportedLocales": "此包支持的模板 locale:{locales}",
|
|
495
|
+
"init.error.invalidLocaleTag": "{label} 的 locale 标记无效:{value}",
|
|
496
|
+
"init.error.invalidPreference": "无效的初始化偏好覆盖:{value}",
|
|
497
|
+
"init.error.invalidPreferenceValue": "{key} 的值无效:{value}",
|
|
498
|
+
"init.error.unsupportedPreference": "不支持的初始化偏好设置:{key}",
|
|
499
|
+
"init.prompt.locale": "mustflow 文档应使用哪种语言?",
|
|
500
|
+
"init.prompt.profile": "mustflow 应使用哪个项目配置?",
|
|
501
|
+
"init.prompt.agentLang": "代理最终报告应使用哪种语言?",
|
|
502
|
+
"init.prompt.advanced": "是否自定义高级偏好?",
|
|
503
|
+
"init.prompt.autoStage": "是否允许代理自动暂存文件?",
|
|
504
|
+
"init.prompt.autoCommit": "是否允许代理自动创建提交?",
|
|
505
|
+
"init.prompt.commitMessageLanguage": "首选提交消息语言?",
|
|
506
|
+
"init.prompt.commitSuggestions": "是否启用提交消息建议?",
|
|
507
|
+
"init.prompt.preserveExisting": "保留现有值",
|
|
508
|
+
"init.prompt.sameAsAgentReports": "与代理报告相同",
|
|
509
|
+
"init.prompt.sameAsDocuments": "与文档相同",
|
|
510
|
+
"init.prompt.select": "选择 [{defaultChoice}]:",
|
|
511
|
+
"init.prompt.invalidChoice": "请输入 1 到 {count} 之间的数字。",
|
|
512
|
+
"init.prompt.invalidBoolean": "请输入 yes 或 no。",
|
|
513
|
+
"init.plan.would": "将 {action} {path}",
|
|
514
|
+
"init.plan.noFilesWritten": "未写入文件。",
|
|
515
|
+
"init.conflict": "冲突:{path} 已存在,且不同于 mustflow 模板。",
|
|
516
|
+
"init.conflictGuidance": "使用 --dry-run 预览,使用 --merge 向 AGENTS.md 添加 mustflow 块,或使用 --force 备份并覆盖。",
|
|
517
|
+
"init.selection.profile": "模板配置:{profile}",
|
|
518
|
+
"init.selection.locale": "模板 locale:{locale}",
|
|
519
|
+
"init.selection.agentLang": "代理响应语言:{locale}",
|
|
520
|
+
"init.selection.productSourceLocale": "产品源 locale:{locale}",
|
|
521
|
+
"init.selection.productLocales": "产品 locale:{locales}",
|
|
522
|
+
"init.selection.sourceLocaleOnly": "(仅源 locale)",
|
|
523
|
+
"init.backup.conflicts": "已将 {count} 个冲突{fileWord}备份到 {path}",
|
|
524
|
+
"init.fileWord.singular": "文件",
|
|
525
|
+
"init.fileWord.plural": "文件",
|
|
526
|
+
"init.action.created": "已创建 {path}",
|
|
527
|
+
"init.action.unchanged": "{path} 未改变",
|
|
528
|
+
"init.action.merged": "已合并 {path}",
|
|
529
|
+
"init.action.overwrote": "已覆盖 {path}",
|
|
530
|
+
"init.action.customizedPreferences": "已自定义 .mustflow/config/preferences.toml",
|
|
531
|
+
"init.action.wrote": "已写入 {path}",
|
|
532
|
+
"init.complete": "mustflow init 完成:创建 {created},合并 {merged},覆盖 {overwritten},未改变 {unchanged}。",
|
|
533
|
+
"map.help.summary": "基于仓库关键文件生成代理导航地图。",
|
|
534
|
+
"map.help.option.stdout": "输出生成的地图",
|
|
535
|
+
"map.help.option.write": "写入 REPO_MAP.md",
|
|
536
|
+
"map.help.option.depth": "限制非优先目录的深度",
|
|
537
|
+
"map.help.option.includeNested": "包含已配置工作区根目录下的嵌套仓库",
|
|
538
|
+
"map.help.option.rootOnly": "即使已配置也忽略嵌套仓库",
|
|
539
|
+
"map.help.exit.ok": "地图已生成,并可选写入",
|
|
540
|
+
"map.error.nestedConflict": "不能同时使用 --include-nested 和 --root-only",
|
|
541
|
+
"map.error.invalidDepth": "--depth 的值无效",
|
|
542
|
+
"map.wrote": "已写入 REPO_MAP.md",
|
|
543
|
+
"lineEndings.help.summary": "Inspect Git-tracked files for line-ending policy drift and normalize them to LF when requested.",
|
|
544
|
+
"lineEndings.help.option.all": "Inspect every tracked file instead of only changed files",
|
|
545
|
+
"lineEndings.help.option.dryRun": "Preview normalization targets without writing files",
|
|
546
|
+
"lineEndings.help.option.apply": "Normalize detected CRLF or mixed line endings to LF",
|
|
547
|
+
"lineEndings.help.exit.ok": "Line endings were inspected and no drift was found",
|
|
548
|
+
"lineEndings.help.exit.fail": "Line-ending policy issues, mismatched files, or invalid input were found",
|
|
549
|
+
"lineEndings.title": "mustflow line endings",
|
|
550
|
+
"lineEndings.label.policy": "Policy",
|
|
551
|
+
"lineEndings.label.checkedFiles": "Checked files",
|
|
552
|
+
"lineEndings.label.nonCompliantFiles": "Non-compliant files",
|
|
553
|
+
"lineEndings.label.issues": "Issues",
|
|
554
|
+
"lineEndings.label.files": "Files",
|
|
555
|
+
"lineEndings.value.changed": "changed",
|
|
556
|
+
"lineEndings.value.wouldChange": "would change",
|
|
557
|
+
"lineEndings.clean": "No line-ending drift found.",
|
|
558
|
+
"lineEndings.error.missingAction": "Specify a line-endings action: check or normalize",
|
|
559
|
+
"lineEndings.error.unknownAction": "Unknown line-endings action: {action}",
|
|
560
|
+
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
561
|
+
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
562
|
+
"run.help.summary": "从 .mustflow/config/commands.toml 运行已配置的一次性命令。",
|
|
563
|
+
"run.help.option.json": "将运行记录输出为 JSON",
|
|
564
|
+
"run.help.exit.ok": "命令已以允许的退出码完成",
|
|
565
|
+
"run.help.exit.fail": "命令无效、被拒绝、超时或失败",
|
|
566
|
+
"run.error.missingIntent": "缺少命令名称",
|
|
567
|
+
"run.error.unknownIntent": "未知命令:{intent}",
|
|
568
|
+
"run.error.statusNotConfigured": '命令 "{intent}" 的状态为 {status};只能运行已配置的命令',
|
|
569
|
+
"run.error.lifecycleNotOneshot": '已拒绝:命令 "{intent}" 的 lifecycle = "{lifecycle}";mf run 只执行 oneshot 命令',
|
|
570
|
+
"run.error.runPolicy": '命令 "{intent}" 需要 run_policy = "agent_allowed" 才能通过 mf run 执行',
|
|
571
|
+
"run.error.stdin": '命令 "{intent}" 必须设置 stdin = "closed"',
|
|
572
|
+
"run.error.timeout": '命令 "{intent}" 必须定义 timeout_seconds',
|
|
573
|
+
"run.error.commandSource": '命令 "{intent}" 必须定义 argv,或定义 mode = "shell" 并提供 cmd',
|
|
574
|
+
"run.error.timedOut": '命令 "{intent}" 在 {seconds} 秒后超时',
|
|
575
|
+
"run.error.startFailed": '命令 "{intent}" 启动失败:{message}',
|
|
576
|
+
"search.help.summary": "搜索本地 SQLite 索引中的 mustflow 工作流。",
|
|
577
|
+
"search.help.option.limit": "设置要输出的结果数量。默认值:10,最大:50",
|
|
578
|
+
"search.help.option.scope": "选择已索引的工作流数据、源码 anchors,或两者。默认值:workflow",
|
|
579
|
+
"search.help.exit.ok": "搜索完成",
|
|
580
|
+
"search.help.exit.fail": "输入无效或缺少本地索引",
|
|
581
|
+
"search.error.missingLimit": "--limit 缺少值",
|
|
582
|
+
"search.error.invalidLimit": "--limit 必须是 1 到 50 之间的整数",
|
|
583
|
+
"search.error.missingScope": "--scope 缺少值",
|
|
584
|
+
"search.error.invalidScope": '不支持的搜索范围 "{scope}"。请使用 workflow、source 或 all',
|
|
585
|
+
"search.error.missingQuery": "需要搜索查询",
|
|
586
|
+
"search.title": "mustflow 搜索",
|
|
587
|
+
"search.noMatches": "没有匹配条目。",
|
|
588
|
+
"status.help.summary": "显示本地 mustflow 安装状态,不修改文件。",
|
|
589
|
+
"status.help.exit.ok": "已检查并输出状态",
|
|
590
|
+
"status.title": "mustflow 状态",
|
|
591
|
+
"versionSources.help.summary": "显示检测到的包和模板版本来源,不修改文件。",
|
|
592
|
+
"versionSources.help.exit.ok": "已检查并输出版本来源",
|
|
593
|
+
"versionSources.title": "mustflow 版本来源",
|
|
594
|
+
"versionSources.label.versioning": "版本管理偏好",
|
|
595
|
+
"versionSources.label.sources": "来源",
|
|
596
|
+
"versionSources.value.enabled": "已启用",
|
|
597
|
+
"versionSources.value.disabled": "已禁用",
|
|
598
|
+
"versionSources.noSources": "未检测到版本来源",
|
|
599
|
+
"version.help.summary": "打印已安装的 mustflow 包版本。使用 --check 可与 npm 上最新发布版本比较。",
|
|
600
|
+
"version.help.option.check": "从 npm 检查最新发布的 mustflow 版本",
|
|
601
|
+
"version.help.exit.ok": "已打印版本信息",
|
|
602
|
+
"version.check.latestAvailable": "最新版本 {version} 可用",
|
|
603
|
+
"version.check.upToDate": "最新版本 {version};已是最新",
|
|
604
|
+
"version.check.updateCommand": "更新命令:",
|
|
605
|
+
"version.error.checkFailed": "无法从 npm 检查新版本:{message}",
|
|
606
|
+
"classify.help.summary": "在不修改文件的情况下分类变更路径、公开表面和所需验证原因。",
|
|
607
|
+
"classify.help.option.changed": "从 git status --short --untracked-files=all 读取路径",
|
|
608
|
+
"classify.help.exit.ok": "已检查并输出变更分类",
|
|
609
|
+
"classify.title": "mustflow classify",
|
|
610
|
+
"classify.label.source": "来源",
|
|
611
|
+
"classify.label.files": "文件",
|
|
612
|
+
"classify.label.publicSurfaces": "公开表面",
|
|
613
|
+
"classify.label.validationReasons": "验证原因",
|
|
614
|
+
"classify.label.updatePolicies": "更新策略",
|
|
615
|
+
"classify.label.classifications": "分类",
|
|
616
|
+
"classify.label.changeKinds": "变更类型",
|
|
617
|
+
"classify.label.updatePolicy": "更新策略",
|
|
618
|
+
"classify.label.driftChecks": "漂移检查",
|
|
619
|
+
"classify.source.changed": "变更文件",
|
|
620
|
+
"classify.source.paths": "指定路径",
|
|
621
|
+
"classify.error.missingInput": "请指定 --changed 或至少一个路径",
|
|
622
|
+
"impact.help.summary": "在不修改文件的情况下报告变更路径是否需要包或模板版本决策。",
|
|
623
|
+
"impact.help.option.changed": "从 git status --short --untracked-files=all 读取路径",
|
|
624
|
+
"impact.help.exit.ok": "已检查并输出版本影响",
|
|
625
|
+
"impact.title": "mustflow impact",
|
|
626
|
+
"impact.label.versioning": "版本偏好",
|
|
627
|
+
"impact.label.requiresVersionDecision": "需要版本决策",
|
|
628
|
+
"impact.label.severity": "严重级别",
|
|
629
|
+
"impact.label.suggestedBump": "建议版本提升",
|
|
630
|
+
"impact.label.reasons": "原因",
|
|
631
|
+
"impact.label.versionSources": "版本来源",
|
|
632
|
+
"impact.label.affectedVersionSources": "受影响的版本来源",
|
|
633
|
+
"impact.label.affectedSurfaces": "受影响的公开表面",
|
|
634
|
+
"impact.error.missingInput": "请指定 --changed 或至少一个路径",
|
|
635
|
+
"verify.help.summary": "运行由 required_after 元数据选出的已配置验证意图。",
|
|
636
|
+
"verify.help.option.reason": "选择要验证的 required_after 原因",
|
|
637
|
+
"verify.help.option.fromPlan": "从此仓库内的 JSON 计划读取验证原因",
|
|
638
|
+
"verify.help.option.planOnly": "仅输出验证计划,不执行命令;需要 --json",
|
|
639
|
+
"verify.help.exit.ok": "选中的所有验证意图均已通过",
|
|
640
|
+
"verify.help.exit.fail": "验证失败、部分完成、被阻止,或输入无效",
|
|
641
|
+
"verify.title": "mustflow verify",
|
|
642
|
+
"verify.label.reason": "原因",
|
|
643
|
+
"verify.label.planSource": "计划来源",
|
|
644
|
+
"verify.label.status": "状态",
|
|
645
|
+
"verify.label.results": "结果",
|
|
646
|
+
"verify.error.missingReason": "缺少验证原因",
|
|
647
|
+
"verify.error.conflictingInputs": "只能使用 --reason 或 --from-plan 其中之一",
|
|
648
|
+
"verify.error.planOnlyJson": "--plan-only 需要 --json",
|
|
649
|
+
"verify.error.invalid_plan_file": "验证计划必须是可读取的 JSON 文件",
|
|
650
|
+
"verify.error.missing_plan_reasons": "验证计划必须包含 reason、reasons、validationReasons、summary.validationReasons 或 classification_summary.validationReasons",
|
|
651
|
+
"verify.error.plan_path_outside_root": "验证计划路径必须位于 mustflow 根目录内",
|
|
652
|
+
"explain.help.summary": "在不修改文件的情况下解释 mustflow 策略决策为何适用。",
|
|
653
|
+
"explain.help.exit.ok": "已检查并输出策略决策",
|
|
654
|
+
"explain.title": "mustflow explain",
|
|
655
|
+
"explain.label.topic": "主题",
|
|
656
|
+
"explain.label.decision": "决策",
|
|
657
|
+
"explain.label.reason": "原因",
|
|
658
|
+
"explain.label.effectiveAction": "有效操作",
|
|
659
|
+
"explain.label.countsAsMustflowVerification": "算作 mustflow 验证",
|
|
660
|
+
"explain.label.sourceFiles": "来源文件",
|
|
661
|
+
"explain.label.expectedFrontmatter": "预期 frontmatter",
|
|
662
|
+
"explain.label.authorityBoundary": "权威边界",
|
|
663
|
+
"explain.label.canDefine": "可以定义",
|
|
664
|
+
"explain.label.cannotDefine": "不能定义",
|
|
665
|
+
"explain.label.commandIntent": "命令意图",
|
|
666
|
+
"explain.label.commandName": "命令",
|
|
667
|
+
"explain.label.retentionPolicy": "保留策略",
|
|
668
|
+
"explain.label.skillRoute": "技能路由",
|
|
669
|
+
"explain.label.skillRoutes": "技能路由",
|
|
670
|
+
"explain.label.publicSurface": "公共表面",
|
|
671
|
+
"explain.label.validationReasons": "验证原因",
|
|
672
|
+
"explain.label.affectedContracts": "受影响契约",
|
|
673
|
+
"explain.error.missingTopic": "缺少 explain 主题",
|
|
674
|
+
"explain.error.missingCommand": "缺少命令意图",
|
|
675
|
+
"explain.error.missingSkill": "缺少技能标识",
|
|
676
|
+
"explain.error.missingAnchor": "缺少源码锚点标识",
|
|
677
|
+
"explain.error.unknownTopic": "未知 explain 主题:{topic}",
|
|
678
|
+
"update.help.summary": "预览或应用已安装 mustflow 工作流的更新。",
|
|
679
|
+
"update.help.option.dryRun": "输出更新计划但不写入文件",
|
|
680
|
+
"update.help.option.apply": "在没有被阻止的本地更改时应用安全的模板更新",
|
|
681
|
+
"update.help.exit.ok": "已输出计划或已应用安全更新",
|
|
682
|
+
"update.help.exit.fail": "计划发现被阻止的更改、缺失状态或无效输入",
|
|
683
|
+
"update.error.cannotCombineModes": "不能同时使用 --dry-run 和 --apply。",
|
|
684
|
+
"update.error.missingMode": "请指定 --dry-run 或 --apply。",
|
|
685
|
+
"update.backup.files": "已将 {count} 个{fileWord}备份到 {path}",
|
|
686
|
+
"update.action.created": "已创建 {path}",
|
|
687
|
+
"update.action.updated": "已更新 {path}",
|
|
688
|
+
"update.action.wrote": "已写入 {path}",
|
|
689
|
+
"update.policy.title": "策略:",
|
|
690
|
+
"update.policy.baseline": "基线",
|
|
691
|
+
"update.policy.applyActions": "应用操作",
|
|
692
|
+
"update.policy.blockingActions": "阻止操作",
|
|
693
|
+
"update.policy.backupPath": "备份路径",
|
|
694
|
+
"update.plan.title": "mustflow 更新计划",
|
|
695
|
+
"update.plan.blocked": "被阻止的本地更改",
|
|
696
|
+
"update.plan.manualReview": "人工审查",
|
|
697
|
+
"update.plan.wouldUpdate": "将更新",
|
|
698
|
+
"update.plan.wouldCreate": "将创建",
|
|
699
|
+
"update.plan.noUpdates": "不需要模板更新。",
|
|
700
|
+
"update.plan.noFilesWritten": "未写入文件。",
|
|
701
|
+
"update.complete": "mustflow update 完成:已更新 {updated},已创建 {created}。",
|
|
702
|
+
};
|