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 koMessages = {
|
|
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 명령 계약 점검",
|
|
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": "공개 동작, 설정, 스키마, 보안, 마이그레이션에 영향이 없는 코드 변경일 때 전체 묶음만 생략합니다.",
|
|
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": "1차 후보 최대 개수",
|
|
370
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit.description": "파일을 열기 전에 남겨둘 1차 리팩토링 후보 최대 개수입니다.",
|
|
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": "패키지 버전과 템플릿 매니페스트 버전을 함께 맞춥니다.",
|
|
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": "버전에 민감한 테스트와 픽스처를 함께 맞춥니다.",
|
|
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": "인간 검수 필요로 표시",
|
|
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": "색인 대상을 계산했고 선택적으로 SQLite 파일을 저장했습니다",
|
|
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": "기존 AGENTS.md에 mustflow 관리 블록만 병합합니다",
|
|
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": "제품 사용자 대상 로케일을 추가합니다. 여러 번 지정할 수 있습니다",
|
|
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}",
|
|
494
|
+
"init.error.supportedLocales": "이 패키지가 지원하는 템플릿 언어: {locales}",
|
|
495
|
+
"init.error.invalidLocaleTag": "{label}의 언어 태그가 올바르지 않습니다: {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": "이 저장소에는 어떤 프로젝트 유형을 사용할까요?",
|
|
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": "{path}: {action} 예정",
|
|
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}",
|
|
519
|
+
"init.selection.agentLang": "에이전트 응답 언어: {locale}",
|
|
520
|
+
"init.selection.productSourceLocale": "제품 기준 언어: {locale}",
|
|
521
|
+
"init.selection.productLocales": "제품 대상 언어: {locales}",
|
|
522
|
+
"init.selection.sourceLocaleOnly": "(기준 언어만 포함)",
|
|
523
|
+
"init.backup.conflicts": "충돌 파일 {count}개를 {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": "Git 추적 파일의 줄바꿈 정책을 검사하고 필요할 때 LF로 정규화합니다.",
|
|
544
|
+
"lineEndings.help.option.all": "변경된 파일만 보지 않고 모든 추적 파일을 검사합니다",
|
|
545
|
+
"lineEndings.help.option.dryRun": "파일을 쓰지 않고 정규화 대상을 미리 봅니다",
|
|
546
|
+
"lineEndings.help.option.apply": "감지된 CRLF 또는 혼합 줄바꿈을 LF로 정규화합니다",
|
|
547
|
+
"lineEndings.help.exit.ok": "줄바꿈 정책이 검사되었고 불일치가 없습니다",
|
|
548
|
+
"lineEndings.help.exit.fail": "줄바꿈 정책 문제, 불일치 파일, 또는 잘못된 입력이 발견되었습니다",
|
|
549
|
+
"lineEndings.title": "mustflow 줄바꿈 검사",
|
|
550
|
+
"lineEndings.label.policy": "정책",
|
|
551
|
+
"lineEndings.label.checkedFiles": "검사한 파일",
|
|
552
|
+
"lineEndings.label.nonCompliantFiles": "불일치 파일",
|
|
553
|
+
"lineEndings.label.issues": "문제",
|
|
554
|
+
"lineEndings.label.files": "파일",
|
|
555
|
+
"lineEndings.value.changed": "변경됨",
|
|
556
|
+
"lineEndings.value.wouldChange": "변경 예정",
|
|
557
|
+
"lineEndings.clean": "줄바꿈 불일치가 없습니다.",
|
|
558
|
+
"lineEndings.error.missingAction": "line-endings 작업을 지정하세요: check 또는 normalize",
|
|
559
|
+
"lineEndings.error.unknownAction": "알 수 없는 line-endings 작업: {action}",
|
|
560
|
+
"lineEndings.error.checkModeOption": "check에는 --apply 또는 --dry-run을 사용할 수 없습니다",
|
|
561
|
+
"lineEndings.error.conflictingModes": "--apply와 --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}입니다. 설정된 상태(configured)인 명령만 실행할 수 있습니다',
|
|
569
|
+
"run.error.lifecycleNotOneshot": '거부됨: 명령 "{intent}"의 수명 주기(lifecycle)는 "{lifecycle}"입니다. mf run은 일회성(oneshot) 명령만 실행합니다',
|
|
570
|
+
"run.error.runPolicy": '명령 "{intent}"는 mf run에서 실행하려면 run_policy = "agent_allowed"가 필요합니다',
|
|
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": "색인된 워크플로 데이터, 소스 앵커, 또는 둘 다를 선택합니다. 기본값: 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 변경 분류",
|
|
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 버전 영향",
|
|
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 설명",
|
|
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": "설명할 주제가 없습니다",
|
|
674
|
+
"explain.error.missingCommand": "설명할 명령 의도가 없습니다",
|
|
675
|
+
"explain.error.missingSkill": "설명할 스킬 식별자가 없습니다",
|
|
676
|
+
"explain.error.missingAnchor": "설명할 소스 앵커 식별자가 없습니다",
|
|
677
|
+
"explain.error.unknownTopic": "알 수 없는 설명 주제: {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": "{path}에 {count}개 파일을 백업했습니다",
|
|
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
|
+
};
|