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 enMessages = {
|
|
2
|
+
"cli.error.withUsage": "Error: {message}\nRun `{helpCommand}` for usage.",
|
|
3
|
+
"cli.error.prefix": "Error: {message}",
|
|
4
|
+
"cli.error.unknownCommand": "Unknown command: {command}",
|
|
5
|
+
"cli.error.unsupportedLanguage": "Unsupported CLI language: {language}",
|
|
6
|
+
"cli.error.missingLangValue": "Missing value for --lang",
|
|
7
|
+
"cli.option.help": "Show this help message",
|
|
8
|
+
"cli.option.json": "Print machine-readable JSON",
|
|
9
|
+
"cli.heading.usage": "Usage",
|
|
10
|
+
"cli.heading.commands": "Commands",
|
|
11
|
+
"cli.heading.topics": "Topics",
|
|
12
|
+
"cli.heading.options": "Options",
|
|
13
|
+
"cli.heading.examples": "Examples",
|
|
14
|
+
"cli.heading.exitCodes": "Exit codes",
|
|
15
|
+
"cli.common.invalidInput": "Invalid input provided",
|
|
16
|
+
"cli.error.unknownOption": "Unknown option: {option}",
|
|
17
|
+
"cli.error.unexpectedArgument": "Unexpected argument: {argument}",
|
|
18
|
+
"cli.error.unexpectedValue": "Unexpected value for {option}",
|
|
19
|
+
"cli.error.missingValue": "Missing value for {option}",
|
|
20
|
+
"value.yes": "yes",
|
|
21
|
+
"value.no": "no",
|
|
22
|
+
"value.none": "none",
|
|
23
|
+
"command.init.summary": "Copy the default mustflow agent workflow",
|
|
24
|
+
"command.check.summary": "Validate mustflow files",
|
|
25
|
+
"command.classify.summary": "Classify changed files and public surfaces",
|
|
26
|
+
"command.contractLint.summary": "Lint the command contract",
|
|
27
|
+
"command.status.summary": "Show local mustflow install status",
|
|
28
|
+
"command.update.summary": "Preview or apply mustflow workflow updates",
|
|
29
|
+
"command.map.summary": "Generate REPO_MAP.md",
|
|
30
|
+
"command.lineEndings.summary": "Inspect and normalize line-ending policy",
|
|
31
|
+
"command.run.summary": "Run a configured oneshot command",
|
|
32
|
+
"command.context.summary": "Print machine-readable agent context",
|
|
33
|
+
"command.doctor.summary": "Inspect mustflow health and next steps",
|
|
34
|
+
"command.docs.summary": "Track documentation review queue entries",
|
|
35
|
+
"command.index.summary": "Build the local mustflow SQLite index",
|
|
36
|
+
"command.search.summary": "Search the local mustflow SQLite index",
|
|
37
|
+
"command.dashboard.summary": "Start the local mustflow dashboard",
|
|
38
|
+
"command.version.summary": "Show package version and optional npm update status",
|
|
39
|
+
"command.versionSources.summary": "Show detected version sources",
|
|
40
|
+
"command.verify.summary": "Run required verification for a reason",
|
|
41
|
+
"command.explain.summary": "Explain mustflow policy decisions",
|
|
42
|
+
"command.impact.summary": "Report version impact from changed files",
|
|
43
|
+
"command.help.summary": "Show installed workflow help",
|
|
44
|
+
"top.help.option.lang": "Select CLI output language. Supported values: {languages}",
|
|
45
|
+
"top.help.option.version": "Show package version",
|
|
46
|
+
"top.help.exit.ok": "Command completed successfully",
|
|
47
|
+
"top.help.exit.fail": "Command failed due to validation issues or invalid input",
|
|
48
|
+
"check.help.summary": "Validate the mustflow files in the current repository.",
|
|
49
|
+
"check.help.option.strict": "Run additional strict checks for agent safety",
|
|
50
|
+
"check.help.exit.ok": "All required mustflow files and settings are valid",
|
|
51
|
+
"check.help.exit.fail": "Validation failed or the command received invalid input",
|
|
52
|
+
"check.result.passed": "mustflow check passed",
|
|
53
|
+
"check.result.strictPassed": "mustflow strict check passed",
|
|
54
|
+
"contractLint.help.summary": "Inspect .mustflow/config/commands.toml for command-contract errors and warnings.",
|
|
55
|
+
"contractLint.help.exit.ok": "The command contract was inspected without blocking errors",
|
|
56
|
+
"contractLint.help.exit.fail": "Command-contract errors were found or input was invalid",
|
|
57
|
+
"contractLint.title": "mustflow contract-lint",
|
|
58
|
+
"contractLint.label.status": "Status",
|
|
59
|
+
"contractLint.label.totalIntents": "Total intents",
|
|
60
|
+
"contractLint.label.configured": "Configured",
|
|
61
|
+
"contractLint.label.runnable": "Runnable",
|
|
62
|
+
"contractLint.label.manualOnly": "Manual only",
|
|
63
|
+
"contractLint.label.unknown": "Unknown",
|
|
64
|
+
"contractLint.label.errors": "Errors",
|
|
65
|
+
"contractLint.label.warnings": "Warnings",
|
|
66
|
+
"contractLint.label.sourceFiles": "Source files",
|
|
67
|
+
"contractLint.label.issues": "Issues",
|
|
68
|
+
"context.help.summary": "Print the agent context for the current mustflow root.",
|
|
69
|
+
"context.help.option.json": "Print machine-readable context JSON",
|
|
70
|
+
"context.help.option.cacheProfile": "Print a prompt-cache profile: stable, task, volatile, or all",
|
|
71
|
+
"context.help.exit.ok": "Context was inspected and printed",
|
|
72
|
+
"context.title": "mustflow context",
|
|
73
|
+
"label.installed": "Installed",
|
|
74
|
+
"label.mustflowRoot": "mustflow root",
|
|
75
|
+
"label.commandContract": "Command specification",
|
|
76
|
+
"label.runnableIntents": "Runnable commands",
|
|
77
|
+
"label.latestRun": "Latest run",
|
|
78
|
+
"label.manifestLock": "Manifest lock",
|
|
79
|
+
"label.trackedFiles": "Tracked files",
|
|
80
|
+
"label.changedFiles": "Changed files",
|
|
81
|
+
"label.missingFiles": "Missing files",
|
|
82
|
+
"label.database": "Database",
|
|
83
|
+
"label.documents": "Documents",
|
|
84
|
+
"label.skills": "Skills",
|
|
85
|
+
"label.commandIntents": "Command definitions",
|
|
86
|
+
"label.wroteFiles": "Wrote files",
|
|
87
|
+
"label.query": "Query",
|
|
88
|
+
"label.scope": "Scope",
|
|
89
|
+
"label.results": "Results",
|
|
90
|
+
"label.comment": "Comment",
|
|
91
|
+
"label.mode": "Mode",
|
|
92
|
+
"dashboard.help.summary": "Start a local dashboard for safe mustflow preferences and document review.",
|
|
93
|
+
"dashboard.help.option.host": "Bind the dashboard to a local host. Default: 127.0.0.1",
|
|
94
|
+
"dashboard.help.option.port": "Bind the dashboard to a port. Default: 0 chooses an available port",
|
|
95
|
+
"dashboard.help.option.open": "Open the dashboard in the default browser after the server starts",
|
|
96
|
+
"dashboard.help.option.noOpen": "Keep the browser closed. This is the default",
|
|
97
|
+
"dashboard.help.exit.ok": "Dashboard was started or help was printed",
|
|
98
|
+
"dashboard.help.exit.fail": "Dashboard could not start or input was invalid",
|
|
99
|
+
"dashboard.error.invalidPort": "Invalid dashboard port: {port}",
|
|
100
|
+
"dashboard.error.nonLocalHost": "Refused dashboard host {host}. Use localhost, 127.0.0.1, or ::1.",
|
|
101
|
+
"dashboard.listening": "mf dashboard listening at {url}",
|
|
102
|
+
"dashboard.ui.title": "mustflow dashboard",
|
|
103
|
+
"dashboard.ui.language": "Language",
|
|
104
|
+
"dashboard.ui.noChanges": "No changes",
|
|
105
|
+
"dashboard.ui.unsavedChanges": "Unsaved changes",
|
|
106
|
+
"dashboard.ui.reloaded": "Reloaded",
|
|
107
|
+
"dashboard.ui.saved": "Saved",
|
|
108
|
+
"dashboard.ui.reload": "Reload",
|
|
109
|
+
"dashboard.ui.save": "Save",
|
|
110
|
+
"dashboard.ui.locked": "Locked",
|
|
111
|
+
"dashboard.ui.customLocale": "Custom language tag",
|
|
112
|
+
"dashboard.ui.openMustflow": "Open .mustflow folder",
|
|
113
|
+
"dashboard.ui.openedMustflow": ".mustflow folder opened",
|
|
114
|
+
"dashboard.tab.status": "Status",
|
|
115
|
+
"dashboard.tab.verification": "Verification",
|
|
116
|
+
"dashboard.tab.commands": "Commands",
|
|
117
|
+
"dashboard.tab.release": "Release",
|
|
118
|
+
"dashboard.tab.update": "Update",
|
|
119
|
+
"dashboard.tab.runs": "Runs",
|
|
120
|
+
"dashboard.tab.skills": "Skills",
|
|
121
|
+
"dashboard.tab.settings": "Settings",
|
|
122
|
+
"dashboard.tab.documents": "Documents",
|
|
123
|
+
"dashboard.status.reloaded": "Status reloaded",
|
|
124
|
+
"dashboard.status.overview": "Overview",
|
|
125
|
+
"dashboard.status.installed": "Installed",
|
|
126
|
+
"dashboard.status.manifestLock": "Manifest lock",
|
|
127
|
+
"dashboard.status.template": "Template",
|
|
128
|
+
"dashboard.status.trackedFiles": "Tracked files",
|
|
129
|
+
"dashboard.status.changedFiles": "Changed files",
|
|
130
|
+
"dashboard.status.missingFiles": "Missing files",
|
|
131
|
+
"dashboard.status.runnableIntents": "Runnable commands",
|
|
132
|
+
"dashboard.status.activeReviewDocuments": "Documents needing review",
|
|
133
|
+
"dashboard.status.latestRun": "Latest run",
|
|
134
|
+
"dashboard.status.latestRunMissing": "No run receipt",
|
|
135
|
+
"dashboard.status.latestRunInvalid": "Invalid run receipt",
|
|
136
|
+
"dashboard.status.issues": "Issues",
|
|
137
|
+
"dashboard.status.noIssues": "No issues",
|
|
138
|
+
"dashboard.status.changedFile": "Changed",
|
|
139
|
+
"dashboard.status.missingFile": "Missing",
|
|
140
|
+
"dashboard.status.yes": "yes",
|
|
141
|
+
"dashboard.status.no": "no",
|
|
142
|
+
"dashboard.verification.reloaded": "Verification recommendations reloaded",
|
|
143
|
+
"dashboard.verification.recommendations": "Recommendations",
|
|
144
|
+
"dashboard.verification.empty": "No changed files detected.",
|
|
145
|
+
"dashboard.verification.none": "No verification recommendation found.",
|
|
146
|
+
"dashboard.verification.skipped": "Skipped",
|
|
147
|
+
"dashboard.verification.schedule": "Recommended order",
|
|
148
|
+
"dashboard.verification.copyPlan": "Copy plan",
|
|
149
|
+
"dashboard.verification.planCopied": "Plan copied",
|
|
150
|
+
"dashboard.verification.batch": "Batch",
|
|
151
|
+
"dashboard.verification.locks": "Locks",
|
|
152
|
+
"dashboard.verification.effects": "Effects",
|
|
153
|
+
"dashboard.verification.conflicts": "Conflicts",
|
|
154
|
+
"dashboard.verification.noLocks": "No resource locks",
|
|
155
|
+
"dashboard.verification.files": "Files",
|
|
156
|
+
"dashboard.verification.copy": "Copy",
|
|
157
|
+
"dashboard.verification.copied": "Command copied",
|
|
158
|
+
"dashboard.verification.unavailable": "Command unavailable",
|
|
159
|
+
"dashboard.verification.reason.mustflow": "mustflow workflow, configuration, or installed template files changed.",
|
|
160
|
+
"dashboard.verification.reason.docs": "Documentation changed.",
|
|
161
|
+
"dashboard.verification.reason.code": "Source, script, or test files changed.",
|
|
162
|
+
"dashboard.verification.reason.release": "Package, schema, template, or version-sensitive files changed.",
|
|
163
|
+
"dashboard.verification.reason.fallback": "Changed files were detected but no narrower rule matched.",
|
|
164
|
+
"dashboard.verification.skip.fullCovered": "A narrower related verification is recommended before the full suite.",
|
|
165
|
+
"dashboard.verification.skip.notRunnable": "The related command is not runnable in this repository.",
|
|
166
|
+
"dashboard.commands.reloaded": "Commands reloaded",
|
|
167
|
+
"dashboard.commands.heading": "Command intents",
|
|
168
|
+
"dashboard.commands.empty": "No command intents found.",
|
|
169
|
+
"dashboard.commands.runnable": "Runnable",
|
|
170
|
+
"dashboard.commands.manualOnly": "User request required",
|
|
171
|
+
"dashboard.commands.unavailable": "Not configured",
|
|
172
|
+
"dashboard.commands.blocked": "Blocked",
|
|
173
|
+
"dashboard.commands.status": "status",
|
|
174
|
+
"dashboard.commands.lifecycle": "lifecycle",
|
|
175
|
+
"dashboard.commands.runPolicy": "run policy",
|
|
176
|
+
"dashboard.commands.stdin": "stdin",
|
|
177
|
+
"dashboard.commands.timeout": "timeout",
|
|
178
|
+
"dashboard.commands.cwd": "cwd",
|
|
179
|
+
"dashboard.commands.writes": "writes",
|
|
180
|
+
"dashboard.commands.reason": "reason",
|
|
181
|
+
"dashboard.commands.agentAction": "agent action",
|
|
182
|
+
"dashboard.release.reloaded": "Release status reloaded",
|
|
183
|
+
"dashboard.release.copied": "Command copied",
|
|
184
|
+
"dashboard.release.overview": "Overview",
|
|
185
|
+
"dashboard.release.packageVersion": "mustflow version",
|
|
186
|
+
"dashboard.release.templateVersion": "Template version",
|
|
187
|
+
"dashboard.release.autoBump": "Auto bump",
|
|
188
|
+
"dashboard.release.requireConfirmation": "Confirmation required",
|
|
189
|
+
"dashboard.release.changedFiles": "Release-sensitive files",
|
|
190
|
+
"dashboard.release.versionSources": "Version sources",
|
|
191
|
+
"dashboard.release.noVersionSources": "No version sources detected.",
|
|
192
|
+
"dashboard.release.noChangedFiles": "No release-sensitive files changed.",
|
|
193
|
+
"dashboard.release.declared": "declared",
|
|
194
|
+
"dashboard.release.authority": "authority",
|
|
195
|
+
"dashboard.release.commands": "Commands",
|
|
196
|
+
"dashboard.release.reason.versionCheck": "Checks npm for a newer mustflow package version.",
|
|
197
|
+
"dashboard.release.reason.testRelease": "Runs package metadata and packaging tests.",
|
|
198
|
+
"dashboard.release.reason.docsValidate": "Runs the full documentation build, search index, and sitemap gate.",
|
|
199
|
+
"dashboard.update.reloaded": "Update status reloaded",
|
|
200
|
+
"dashboard.update.copied": "Command copied",
|
|
201
|
+
"dashboard.update.overview": "Overview",
|
|
202
|
+
"dashboard.update.dryRun": "Dry-run available",
|
|
203
|
+
"dashboard.update.applyReady": "Apply ready",
|
|
204
|
+
"dashboard.update.wouldUpdate": "Would update",
|
|
205
|
+
"dashboard.update.wouldCreate": "Would create",
|
|
206
|
+
"dashboard.update.blockedLocalChanges": "Blocked local changes",
|
|
207
|
+
"dashboard.update.manualReview": "Manual review",
|
|
208
|
+
"dashboard.update.unchanged": "Unchanged",
|
|
209
|
+
"dashboard.update.error": "Update plan error",
|
|
210
|
+
"dashboard.update.commands": "Commands",
|
|
211
|
+
"dashboard.update.command.dryRun": "Dry run",
|
|
212
|
+
"dashboard.update.command.apply": "Apply",
|
|
213
|
+
"dashboard.update.reason.dryRun": "Shows the template update plan without writing files.",
|
|
214
|
+
"dashboard.update.reason.apply": "Applies safe template updates only when no blocker is present.",
|
|
215
|
+
"dashboard.update.blocked": "Blocked",
|
|
216
|
+
"dashboard.update.blockers": "Blockers",
|
|
217
|
+
"dashboard.update.noBlockers": "No update blockers.",
|
|
218
|
+
"dashboard.update.changes": "Template changes",
|
|
219
|
+
"dashboard.update.noChanges": "No template changes would be applied.",
|
|
220
|
+
"dashboard.update.source": "source",
|
|
221
|
+
"dashboard.update.reason": "reason",
|
|
222
|
+
"dashboard.update.action.create": "Create",
|
|
223
|
+
"dashboard.update.action.update": "Update",
|
|
224
|
+
"dashboard.update.action.blocked-local-change": "Local change",
|
|
225
|
+
"dashboard.update.action.manual-review": "Manual review",
|
|
226
|
+
"dashboard.runs.reloaded": "Run history reloaded",
|
|
227
|
+
"dashboard.runs.heading": "Latest run",
|
|
228
|
+
"dashboard.runs.empty": "No run receipt found.",
|
|
229
|
+
"dashboard.runs.invalid": "Invalid run receipt",
|
|
230
|
+
"dashboard.runs.intent": "Intent",
|
|
231
|
+
"dashboard.runs.status": "Status",
|
|
232
|
+
"dashboard.runs.exitCode": "Exit code",
|
|
233
|
+
"dashboard.runs.timedOut": "Timed out",
|
|
234
|
+
"dashboard.runs.startedAt": "Started",
|
|
235
|
+
"dashboard.runs.finishedAt": "Finished",
|
|
236
|
+
"dashboard.runs.duration": "Duration",
|
|
237
|
+
"dashboard.runs.cwd": "Working directory",
|
|
238
|
+
"dashboard.runs.mode": "Mode",
|
|
239
|
+
"dashboard.runs.timeout": "Timeout",
|
|
240
|
+
"dashboard.runs.receiptPath": "Receipt path",
|
|
241
|
+
"dashboard.runs.lifecycle": "lifecycle",
|
|
242
|
+
"dashboard.runs.runPolicy": "run policy",
|
|
243
|
+
"dashboard.runs.successExitCodes": "success exit codes",
|
|
244
|
+
"dashboard.runs.signal": "signal",
|
|
245
|
+
"dashboard.runs.killMethod": "kill method",
|
|
246
|
+
"dashboard.runs.error": "error",
|
|
247
|
+
"dashboard.runs.stdout": "stdout",
|
|
248
|
+
"dashboard.runs.stderr": "stderr",
|
|
249
|
+
"dashboard.runs.bytes": "bytes",
|
|
250
|
+
"dashboard.runs.truncated": "truncated",
|
|
251
|
+
"dashboard.runs.emptyOutput": "No output recorded.",
|
|
252
|
+
"dashboard.skills.reloaded": "Skills reloaded",
|
|
253
|
+
"dashboard.skills.heading": "Skill routes",
|
|
254
|
+
"dashboard.skills.indexPath": "Skill index",
|
|
255
|
+
"dashboard.skills.routes": "Routes",
|
|
256
|
+
"dashboard.skills.empty": "No skill routes found.",
|
|
257
|
+
"dashboard.skills.aligned": "Aligned",
|
|
258
|
+
"dashboard.skills.mismatch": "Intent mismatch",
|
|
259
|
+
"dashboard.skills.missing": "Missing file",
|
|
260
|
+
"dashboard.skills.path": "path",
|
|
261
|
+
"dashboard.skills.requiredInput": "required input",
|
|
262
|
+
"dashboard.skills.editScope": "edit scope",
|
|
263
|
+
"dashboard.skills.risk": "risk",
|
|
264
|
+
"dashboard.skills.verificationIntents": "verification intents",
|
|
265
|
+
"dashboard.skills.declaredCommandIntents": "declared intents",
|
|
266
|
+
"dashboard.skills.expectedOutput": "expected output",
|
|
267
|
+
"dashboard.docs.reloaded": "Document review list reloaded",
|
|
268
|
+
"dashboard.docs.updated": "Document review updated",
|
|
269
|
+
"dashboard.docs.empty": "No documents require review.",
|
|
270
|
+
"dashboard.docs.noSearchMatches": "No matching documents.",
|
|
271
|
+
"dashboard.docs.missingReviewerId": "Enter a reviewer ID.",
|
|
272
|
+
"dashboard.docs.statusFilter": "Status",
|
|
273
|
+
"dashboard.docs.pathFilter": "File name",
|
|
274
|
+
"dashboard.docs.pathFilterPlaceholder": "path or file name",
|
|
275
|
+
"dashboard.docs.reviewFields": "Review record",
|
|
276
|
+
"dashboard.docs.reviewerKind": "Reviewer kind",
|
|
277
|
+
"dashboard.docs.reviewerId": "Reviewer ID",
|
|
278
|
+
"dashboard.docs.reviewerIdPlaceholder": "human, LLM, or tool ID",
|
|
279
|
+
"dashboard.docs.summary": "Review summary",
|
|
280
|
+
"dashboard.docs.summaryPlaceholder": "optional",
|
|
281
|
+
"dashboard.docs.comment": "Comment",
|
|
282
|
+
"dashboard.docs.filter.active": "Active",
|
|
283
|
+
"dashboard.docs.filter.pending": "Pending",
|
|
284
|
+
"dashboard.docs.filter.in_review": "In review",
|
|
285
|
+
"dashboard.docs.filter.changes_made": "Changed",
|
|
286
|
+
"dashboard.docs.filter.needs_human": "Needs review",
|
|
287
|
+
"dashboard.docs.filter.approved": "Approved",
|
|
288
|
+
"dashboard.docs.filter.ignored": "Ignored",
|
|
289
|
+
"dashboard.docs.filter.all": "All",
|
|
290
|
+
"dashboard.docs.reviewerKind.human": "Human",
|
|
291
|
+
"dashboard.docs.reviewerKind.llm": "LLM",
|
|
292
|
+
"dashboard.docs.reviewerKind.tool": "Tool",
|
|
293
|
+
"dashboard.docs.reviewerKind.external": "External",
|
|
294
|
+
"dashboard.docs.status.pending": "pending",
|
|
295
|
+
"dashboard.docs.status.in_review": "in review",
|
|
296
|
+
"dashboard.docs.status.changes_made": "changed",
|
|
297
|
+
"dashboard.docs.status.approved": "approved",
|
|
298
|
+
"dashboard.docs.status.needs_human": "needs review",
|
|
299
|
+
"dashboard.docs.status.ignored": "ignored",
|
|
300
|
+
"dashboard.docs.action.approve": "Approve",
|
|
301
|
+
"dashboard.docs.action.approve.tooltip": "Approve this document with the selected reviewer and hide it from the default list.",
|
|
302
|
+
"dashboard.docs.action.needsHuman": "Needs review",
|
|
303
|
+
"dashboard.docs.action.needsReview": "Needs review",
|
|
304
|
+
"dashboard.docs.action.needsReview.tooltip": "Mark this document as needing another review by a human, LLM, tool, or external process.",
|
|
305
|
+
"dashboard.docs.action.ignore": "Ignore",
|
|
306
|
+
"dashboard.docs.action.ignore.tooltip": "Skip review for this document and hide it from the default list.",
|
|
307
|
+
"dashboard.locked.git.auto_push": "Remote pushes require an explicit request.",
|
|
308
|
+
"dashboard.group.git": "Git",
|
|
309
|
+
"dashboard.group.commitMessage": "Commit message",
|
|
310
|
+
"dashboard.group.reporting": "Reporting",
|
|
311
|
+
"dashboard.group.verification": "Verification",
|
|
312
|
+
"dashboard.group.testAuthoring": "Test authoring",
|
|
313
|
+
"dashboard.group.codeStyle": "Code style",
|
|
314
|
+
"dashboard.group.refactoring": "Refactoring",
|
|
315
|
+
"dashboard.group.versioning": "Versioning",
|
|
316
|
+
"dashboard.setting.git.auto_stage": "Stage on request",
|
|
317
|
+
"dashboard.setting.git.auto_stage.description": "Allow staging when the user asks for Git work.",
|
|
318
|
+
"dashboard.setting.git.auto_commit": "Commit on request",
|
|
319
|
+
"dashboard.setting.git.auto_commit.description": "Allow commit creation when the user explicitly asks for a commit.",
|
|
320
|
+
"dashboard.setting.git.auto_push": "Push on request",
|
|
321
|
+
"dashboard.setting.git.commit_message.style": "Commit message style",
|
|
322
|
+
"dashboard.setting.git.commit_message.style.description.conventional": "Use type-prefixed messages such as feat: or fix:.",
|
|
323
|
+
"dashboard.setting.git.commit_message.style.description.descriptive": "Use a short natural-language summary without a required type prefix.",
|
|
324
|
+
"dashboard.setting.git.commit_message.style.description.gitmoji": "Prefix messages with a Gitmoji emoji while keeping a type prefix such as feat: or fix:.",
|
|
325
|
+
"dashboard.setting.git.commit_message.language": "Commit message language",
|
|
326
|
+
"dashboard.setting.git.commit_message.language.description.preserve_existing": "Follow the repository's existing commit message language.",
|
|
327
|
+
"dashboard.setting.git.commit_message.language.description.agent_response": "Use the same language as the agent response.",
|
|
328
|
+
"dashboard.setting.git.commit_message.language.description.docs": "Use the same language as the project documents.",
|
|
329
|
+
"dashboard.setting.git.commit_message.language.description.en": "Suggest commit messages in English.",
|
|
330
|
+
"dashboard.setting.git.commit_message.language.description.ko": "Suggest commit messages in Korean.",
|
|
331
|
+
"dashboard.setting.git.commit_message.language.description.zh": "Suggest commit messages in Chinese.",
|
|
332
|
+
"dashboard.setting.git.commit_message.language.description.es": "Suggest commit messages in Spanish.",
|
|
333
|
+
"dashboard.setting.git.commit_message.language.description.fr": "Suggest commit messages in French.",
|
|
334
|
+
"dashboard.setting.git.commit_message.language.description.hi": "Suggest commit messages in Hindi.",
|
|
335
|
+
"dashboard.setting.git.commit_message.language.description": "Use the selected custom language tag for commit message suggestions.",
|
|
336
|
+
"dashboard.setting.git.commit_message.max_suggestions": "Commit message suggestion count",
|
|
337
|
+
"dashboard.setting.git.commit_message.include_body": "Commit body",
|
|
338
|
+
"dashboard.setting.git.commit_message.include_body.description.never": "Never include a commit message body; suggest a subject line only.",
|
|
339
|
+
"dashboard.setting.git.commit_message.include_body.description.when_non_trivial": "Include a body only when the change needs more context than the subject line.",
|
|
340
|
+
"dashboard.setting.git.commit_message.include_body.description.always": "Always include a commit message body in suggestions.",
|
|
341
|
+
"dashboard.setting.git.commit_message.split_when_multiple_concerns": "Suggest split commits",
|
|
342
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details": "Avoid sensitive details",
|
|
343
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details.description": "Avoid secrets, credentials, personal data, and private incident details.",
|
|
344
|
+
"dashboard.setting.reporting.commit_suggestion.enabled": "Commit message suggestions",
|
|
345
|
+
"dashboard.setting.verification.selection.strategy": "Verification strategy",
|
|
346
|
+
"dashboard.setting.verification.selection.strategy.description.risk_based": "Balance verification scope against change risk.",
|
|
347
|
+
"dashboard.setting.verification.selection.strategy.description.targeted": "Run only checks tied to the changed area.",
|
|
348
|
+
"dashboard.setting.verification.selection.strategy.description.full": "Prefer the complete configured verification set.",
|
|
349
|
+
"dashboard.setting.verification.selection.prefer_related_tests": "Prefer related tests",
|
|
350
|
+
"dashboard.setting.verification.selection.skip_docs_only_full_test": "Skip full test for docs-only changes",
|
|
351
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test": "Skip full test for low-risk code changes",
|
|
352
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test.description": "Skip only the full suite when code changes do not affect public behavior, config, schemas, security, or migrations.",
|
|
353
|
+
"dashboard.setting.verification.selection.skip_translation_only_full_test": "Skip full test for translation-only changes",
|
|
354
|
+
"dashboard.setting.verification.selection.skip_copy_only_full_test": "Skip full test for copy-only changes",
|
|
355
|
+
"dashboard.setting.verification.selection.report_skipped": "Report skipped verification",
|
|
356
|
+
"dashboard.setting.testing.authoring.new_test_policy": "New test policy",
|
|
357
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.evidence_required": "Add new tests only when behavior-contract evidence supports them.",
|
|
358
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.manual_approval": "Ask before adding new tests unless the user directly requested them.",
|
|
359
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.broad": "Allow proactive new tests when they clarify important behavior.",
|
|
360
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests": "Prefer existing tests",
|
|
361
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests.description": "Update nearby existing tests before creating new test files or cases.",
|
|
362
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale": "Require new test rationale",
|
|
363
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale.description": "Report why each new test is needed when tests are added.",
|
|
364
|
+
"dashboard.setting.code_style.avoid_drive_by_refactors": "Avoid drive-by refactors",
|
|
365
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb": "Large file candidate threshold",
|
|
366
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb.description": "Treat source files at or above this size in KB as review candidates, not confirmed refactor targets.",
|
|
367
|
+
"dashboard.setting.refactoring.hotspots.history_days": "Hotspot history window",
|
|
368
|
+
"dashboard.setting.refactoring.hotspots.history_days.description": "Use this many recent days when considering change frequency and bug-fix history.",
|
|
369
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit": "Primary hotspot candidate limit",
|
|
370
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit.description": "Keep at most this many first-pass candidates before opening files.",
|
|
371
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit": "Structure review candidate limit",
|
|
372
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit.description": "Keep at most this many candidates for import, export, declaration, and TODO review.",
|
|
373
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit": "Full-file review candidate limit",
|
|
374
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit.description": "Read full file contents for at most this many candidates in one refactoring scan.",
|
|
375
|
+
"dashboard.setting.release.versioning.impact_check": "Version impact check",
|
|
376
|
+
"dashboard.setting.release.versioning.impact_check.description": "Check whether the change should affect a package or template version.",
|
|
377
|
+
"dashboard.setting.release.versioning.suggest_bump": "Suggest version bump",
|
|
378
|
+
"dashboard.setting.release.versioning.suggest_bump.description": "Suggest the bump level when a version change looks necessary.",
|
|
379
|
+
"dashboard.setting.release.versioning.auto_bump": "Auto bump versions",
|
|
380
|
+
"dashboard.setting.release.versioning.auto_bump.description": "Allow direct version file edits without a separate manual step.",
|
|
381
|
+
"dashboard.setting.release.versioning.require_user_confirmation": "Require version confirmation",
|
|
382
|
+
"dashboard.setting.release.versioning.require_user_confirmation.description": "Ask before applying or accepting a version change.",
|
|
383
|
+
"dashboard.setting.release.versioning.sync_template_version": "Sync template version",
|
|
384
|
+
"dashboard.setting.release.versioning.sync_template_version.description": "Keep package and template manifest versions aligned.",
|
|
385
|
+
"dashboard.setting.release.versioning.sync_docs_examples": "Sync docs examples",
|
|
386
|
+
"dashboard.setting.release.versioning.sync_docs_examples.description": "Keep documentation examples aligned with the selected version.",
|
|
387
|
+
"dashboard.setting.release.versioning.sync_tests": "Sync tests",
|
|
388
|
+
"dashboard.setting.release.versioning.sync_tests.description": "Keep version-sensitive tests and fixtures aligned.",
|
|
389
|
+
"doctor.help.summary": "Inspect mustflow root health and get hints for next steps without modifying files.",
|
|
390
|
+
"doctor.help.option.json": "Print machine-readable diagnostic JSON",
|
|
391
|
+
"doctor.help.option.strict": "Include additional strict checks for agent safety",
|
|
392
|
+
"doctor.help.exit.ok": "mustflow state was inspected and no issues were found",
|
|
393
|
+
"doctor.help.exit.fail": "Validation issues were found or input was invalid",
|
|
394
|
+
"doctor.title": "mustflow doctor",
|
|
395
|
+
"doctor.label.strict": "Strict",
|
|
396
|
+
"doctor.label.check": "Check",
|
|
397
|
+
"doctor.label.issues": "Issues",
|
|
398
|
+
"doctor.section.health": "Health:",
|
|
399
|
+
"doctor.section.issueList": "Issue list:",
|
|
400
|
+
"doctor.section.suggestedCommands": "Suggested commands:",
|
|
401
|
+
"doctor.actionLabel": "run",
|
|
402
|
+
"doctor.diagnostic.install": "Install",
|
|
403
|
+
"doctor.diagnostic.validation": "Validation",
|
|
404
|
+
"doctor.diagnostic.skillRoutes": "Skill routes",
|
|
405
|
+
"doctor.diagnostic.commands": "Command specification",
|
|
406
|
+
"doctor.diagnostic.readOrder": "Read order",
|
|
407
|
+
"doctor.diagnostic.optionalReadOrder": "Optional read order",
|
|
408
|
+
"doctor.diagnostic.repoMap": "REPO_MAP.md",
|
|
409
|
+
"doctor.diagnostic.localIndex": "Local index",
|
|
410
|
+
"doctor.diagnostic.latestRun": "Latest run",
|
|
411
|
+
"docs.help.summary": "Track documents that need prose review after LLM creation or modification.",
|
|
412
|
+
"docs.help.option.all": "Include approved and ignored documents",
|
|
413
|
+
"docs.help.option.status": "Filter by review status",
|
|
414
|
+
"docs.help.option.reason": "Record why the document needs review",
|
|
415
|
+
"docs.help.option.origin": "Record the source of the review need, such as llm_modified",
|
|
416
|
+
"docs.help.option.actorKind": "Record who changed the document: human, llm, tool, or external",
|
|
417
|
+
"docs.help.option.actorId": "Record a free-form actor identifier",
|
|
418
|
+
"docs.help.option.comment": "Record review guidance for the selected document",
|
|
419
|
+
"docs.help.option.commentFile": "Import review guidance from a UTF-8 text file, then delete that source file after a successful update",
|
|
420
|
+
"docs.help.option.reviewerKind": "Record the reviewer kind: human, llm, tool, or external",
|
|
421
|
+
"docs.help.option.reviewerId": "Record a free-form reviewer identifier",
|
|
422
|
+
"docs.help.option.summary": "Record a short review summary",
|
|
423
|
+
"docs.help.exit.ok": "The documentation review queue was inspected or updated",
|
|
424
|
+
"docs.help.exit.fail": "The command received invalid input or could not update the queue",
|
|
425
|
+
"docs.review.title": "mustflow documentation review queue",
|
|
426
|
+
"docs.review.empty": "No documents require review.",
|
|
427
|
+
"docs.review.wrote": "Wrote",
|
|
428
|
+
"docs.review.added": "Added",
|
|
429
|
+
"docs.review.commented": "Commented",
|
|
430
|
+
"docs.review.marked.approved": "Approved",
|
|
431
|
+
"docs.review.marked.needs_human": "Marked as needs_human",
|
|
432
|
+
"docs.review.marked.ignored": "Ignored",
|
|
433
|
+
"docs.error.missingTopic": "Missing docs topic",
|
|
434
|
+
"docs.error.unknownTopic": "Unknown docs topic: {topic}",
|
|
435
|
+
"docs.error.unknownAction": "Unknown docs review action: {action}",
|
|
436
|
+
"docs.error.missingPath": "Missing document path",
|
|
437
|
+
"docs.error.missingComment": "Missing review comment",
|
|
438
|
+
"docs.error.emptyComment": "Review comment must not be empty",
|
|
439
|
+
"docs.error.commentSourceConflict": "Use either --comment or --comment-file, not both",
|
|
440
|
+
"docs.error.commentFileIsDocument": "--comment-file must not point to the document being reviewed",
|
|
441
|
+
"docs.error.invalidStatus": "Invalid review status. Use one of: {statuses}",
|
|
442
|
+
"docs.error.invalidReviewerKind": "Invalid reviewer kind. Use one of: {kinds}",
|
|
443
|
+
"docs.error.missingReviewerKind": "Missing --reviewer-kind. Use one of: {kinds}",
|
|
444
|
+
"docs.error.missingReviewerId": "Missing --reviewer-id",
|
|
445
|
+
"help.missingFile": "No {path} found in the current directory. Run mf init first or switch to a mustflow root.",
|
|
446
|
+
"help.commands.title": "Commands",
|
|
447
|
+
"help.commands.noIntents": "Commands\n\nNo [intents] table was found in .mustflow/config/commands.toml.",
|
|
448
|
+
"help.commands.configuredIntents": "Configured commands in .mustflow/config/commands.toml:",
|
|
449
|
+
"help.preferences.title": "Preferences",
|
|
450
|
+
"help.preferences.intro": "Repository-level agent preferences in .mustflow/config/preferences.toml:",
|
|
451
|
+
"help.help.summary": "Show help from the installed mustflow workflow.",
|
|
452
|
+
"help.topic.workflow": "Print .mustflow/docs/agent-workflow.md",
|
|
453
|
+
"help.topic.skills": "Print .mustflow/skills/INDEX.md",
|
|
454
|
+
"help.topic.commands": "Summarize .mustflow/config/commands.toml",
|
|
455
|
+
"help.topic.preferences": "Summarize .mustflow/config/preferences.toml",
|
|
456
|
+
"help.help.exit.ok": "Help topic was printed or no installed topic was available",
|
|
457
|
+
"help.help.exit.fail": "The command received an unknown topic or option",
|
|
458
|
+
"help.error.unknownTopic": "Unknown help topic: {topic}",
|
|
459
|
+
"index.help.summary": "Build a SQLite index that can be regenerated for the mustflow workflow.",
|
|
460
|
+
"index.help.option.dryRun": "Calculate index targets without writing files",
|
|
461
|
+
"index.help.option.source": "Include structured source-code anchors without storing source content",
|
|
462
|
+
"index.help.exit.ok": "Index targets were calculated and optionally written",
|
|
463
|
+
"index.title": "mustflow index",
|
|
464
|
+
"index.dryRunNoFiles": "Dry run: no files were written.",
|
|
465
|
+
"init.routerBlock": `<!-- mustflow:start schema=1 -->
|
|
466
|
+
This repository follows the mustflow agent workflow.
|
|
467
|
+
|
|
468
|
+
Read these files before working:
|
|
469
|
+
- \`.mustflow/docs/agent-workflow.md\`
|
|
470
|
+
- \`.mustflow/config/mustflow.toml\`
|
|
471
|
+
- \`.mustflow/config/commands.toml\`
|
|
472
|
+
- \`.mustflow/config/preferences.toml\` if present
|
|
473
|
+
- \`.mustflow/skills/INDEX.md\`
|
|
474
|
+
<!-- mustflow:end -->`,
|
|
475
|
+
"init.help.summary": "Copy the default mustflow agent workflow into the current repository.",
|
|
476
|
+
"init.help.option.yes": "Use safe defaults for prompts",
|
|
477
|
+
"init.help.option.dryRun": "Print the install plan without writing files",
|
|
478
|
+
"init.help.option.interactive": "Choose init settings from prompts",
|
|
479
|
+
"init.help.option.merge": "Merge a mustflow managed block into an existing AGENTS.md",
|
|
480
|
+
"init.help.option.force": "Back up conflicting files and overwrite them",
|
|
481
|
+
"init.help.option.profile": "Set project profile: minimal, oss, team, product, or library",
|
|
482
|
+
"init.help.option.locale": "Set installed mustflow document locale",
|
|
483
|
+
"init.help.option.agentLang": "Set the preferred agent response language",
|
|
484
|
+
"init.help.option.set": "Set a safe preference value such as git.auto_commit=true or git.auto_push=false",
|
|
485
|
+
"init.help.option.productSourceLocale": "Set source locale for user-facing product text",
|
|
486
|
+
"init.help.option.productLocale": "Add a user-facing product locale; can be repeated",
|
|
487
|
+
"init.help.exit.ok": "Install completed, skipped, or plan printed",
|
|
488
|
+
"init.help.exit.fail": "Invalid options or file conflicts prevented writing",
|
|
489
|
+
"init.error.cannotCombineMergeForce": "Cannot combine --merge and --force",
|
|
490
|
+
"init.error.cannotCombineInteractiveYes": "Cannot combine --interactive and --yes",
|
|
491
|
+
"init.error.unsupportedProfile": "Unsupported profile: {profile}",
|
|
492
|
+
"init.error.supportedProfiles": "Supported profiles: {profiles}",
|
|
493
|
+
"init.error.unsupportedLocale": "Unsupported locale: {locale}",
|
|
494
|
+
"init.error.supportedLocales": "Supported template locales for this package: {locales}",
|
|
495
|
+
"init.error.invalidLocaleTag": "Invalid locale tag for {label}: {value}",
|
|
496
|
+
"init.error.invalidPreference": "Invalid init preference override: {value}",
|
|
497
|
+
"init.error.invalidPreferenceValue": "Invalid value for {key}: {value}",
|
|
498
|
+
"init.error.unsupportedPreference": "Unsupported init preference setting: {key}",
|
|
499
|
+
"init.prompt.locale": "Which language should mustflow documents use?",
|
|
500
|
+
"init.prompt.profile": "Which project profile should mustflow use?",
|
|
501
|
+
"init.prompt.agentLang": "Which language should agents use for final reports?",
|
|
502
|
+
"init.prompt.advanced": "Customize advanced preferences?",
|
|
503
|
+
"init.prompt.autoStage": "Allow agents to stage files automatically?",
|
|
504
|
+
"init.prompt.autoCommit": "Allow agents to create commits automatically?",
|
|
505
|
+
"init.prompt.commitMessageLanguage": "Preferred commit message language?",
|
|
506
|
+
"init.prompt.commitSuggestions": "Enable commit message suggestions?",
|
|
507
|
+
"init.prompt.preserveExisting": "Preserve existing",
|
|
508
|
+
"init.prompt.sameAsAgentReports": "Same as agent reports",
|
|
509
|
+
"init.prompt.sameAsDocuments": "Same as documents",
|
|
510
|
+
"init.prompt.select": "Select [{defaultChoice}]: ",
|
|
511
|
+
"init.prompt.invalidChoice": "Enter a number between 1 and {count}.",
|
|
512
|
+
"init.prompt.invalidBoolean": "Enter yes or no.",
|
|
513
|
+
"init.plan.would": "Would {action} {path}",
|
|
514
|
+
"init.plan.noFilesWritten": "No files were written.",
|
|
515
|
+
"init.conflict": "Conflict: {path} already exists and differs from the mustflow template.",
|
|
516
|
+
"init.conflictGuidance": "Use --dry-run to preview, --merge to add a mustflow block to AGENTS.md, or --force to back up and overwrite.",
|
|
517
|
+
"init.selection.profile": "Template profile: {profile}",
|
|
518
|
+
"init.selection.locale": "Template locale: {locale}",
|
|
519
|
+
"init.selection.agentLang": "Agent response language: {locale}",
|
|
520
|
+
"init.selection.productSourceLocale": "Product source locale: {locale}",
|
|
521
|
+
"init.selection.productLocales": "Product locales: {locales}",
|
|
522
|
+
"init.selection.sourceLocaleOnly": "(source locale only)",
|
|
523
|
+
"init.backup.conflicts": "Backed up {count} conflicting {fileWord} to {path}",
|
|
524
|
+
"init.fileWord.singular": "file",
|
|
525
|
+
"init.fileWord.plural": "files",
|
|
526
|
+
"init.action.created": "Created {path}",
|
|
527
|
+
"init.action.unchanged": "Unchanged {path}",
|
|
528
|
+
"init.action.merged": "Merged {path}",
|
|
529
|
+
"init.action.overwrote": "Overwrote {path}",
|
|
530
|
+
"init.action.customizedPreferences": "Customized .mustflow/config/preferences.toml",
|
|
531
|
+
"init.action.wrote": "Wrote {path}",
|
|
532
|
+
"init.complete": "mustflow init complete: {created} created, {merged} merged, {overwritten} overwritten, {unchanged} unchanged.",
|
|
533
|
+
"map.help.summary": "Generate an agent navigation map from repository key files.",
|
|
534
|
+
"map.help.option.stdout": "Print the generated map",
|
|
535
|
+
"map.help.option.write": "Write REPO_MAP.md",
|
|
536
|
+
"map.help.option.depth": "Limit depth for non-priority directories",
|
|
537
|
+
"map.help.option.includeNested": "Include nested repositories from configured workspace roots",
|
|
538
|
+
"map.help.option.rootOnly": "Ignore nested repositories even when configured",
|
|
539
|
+
"map.help.exit.ok": "Map was generated and optionally written",
|
|
540
|
+
"map.error.nestedConflict": "Cannot combine --include-nested and --root-only",
|
|
541
|
+
"map.error.invalidDepth": "Invalid value for --depth",
|
|
542
|
+
"map.wrote": "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": "Run a configured oneshot command from .mustflow/config/commands.toml.",
|
|
563
|
+
"run.help.option.json": "Print the run record as JSON",
|
|
564
|
+
"run.help.exit.ok": "The command completed with an allowed exit code",
|
|
565
|
+
"run.help.exit.fail": "The command was invalid, refused, timed out, or failed",
|
|
566
|
+
"run.error.missingIntent": "Missing command name",
|
|
567
|
+
"run.error.unknownIntent": "Unknown command: {intent}",
|
|
568
|
+
"run.error.statusNotConfigured": 'Command "{intent}" is {status}; only configured commands can be run',
|
|
569
|
+
"run.error.lifecycleNotOneshot": 'Refused: command "{intent}" has lifecycle = "{lifecycle}"; mf run only executes oneshot commands',
|
|
570
|
+
"run.error.runPolicy": 'Command "{intent}" requires run_policy = "agent_allowed" for mf run',
|
|
571
|
+
"run.error.stdin": 'Command "{intent}" must set stdin = "closed"',
|
|
572
|
+
"run.error.timeout": 'Command "{intent}" must define timeout_seconds',
|
|
573
|
+
"run.error.commandSource": 'Command "{intent}" must define argv or mode = "shell" with cmd',
|
|
574
|
+
"run.error.timedOut": 'Command "{intent}" timed out after {seconds} seconds',
|
|
575
|
+
"run.error.startFailed": 'Command "{intent}" failed to start: {message}',
|
|
576
|
+
"search.help.summary": "Search the local SQLite index for the mustflow workflow.",
|
|
577
|
+
"search.help.option.limit": "Set the number of results to print. Default: 10, max: 50",
|
|
578
|
+
"search.help.option.scope": "Select indexed workflow data, source anchors, or both. Default: workflow",
|
|
579
|
+
"search.help.exit.ok": "Search completed",
|
|
580
|
+
"search.help.exit.fail": "Invalid input or missing local index",
|
|
581
|
+
"search.error.missingLimit": "Missing value for --limit",
|
|
582
|
+
"search.error.invalidLimit": "--limit must be an integer between 1 and 50",
|
|
583
|
+
"search.error.missingScope": "Missing value for --scope",
|
|
584
|
+
"search.error.invalidScope": 'Unsupported search scope "{scope}". Use workflow, source, or all',
|
|
585
|
+
"search.error.missingQuery": "Search query is required",
|
|
586
|
+
"search.title": "mustflow search",
|
|
587
|
+
"search.noMatches": "No matching entries.",
|
|
588
|
+
"status.help.summary": "Show the local mustflow install status without modifying files.",
|
|
589
|
+
"status.help.exit.ok": "Status was inspected and printed",
|
|
590
|
+
"status.title": "mustflow status",
|
|
591
|
+
"versionSources.help.summary": "Show detected package and template version sources without modifying files.",
|
|
592
|
+
"versionSources.help.exit.ok": "Version sources were inspected and printed",
|
|
593
|
+
"versionSources.title": "mustflow version sources",
|
|
594
|
+
"versionSources.label.versioning": "Versioning preferences",
|
|
595
|
+
"versionSources.label.sources": "Sources",
|
|
596
|
+
"versionSources.value.enabled": "enabled",
|
|
597
|
+
"versionSources.value.disabled": "disabled",
|
|
598
|
+
"versionSources.noSources": "No version sources detected",
|
|
599
|
+
"version.help.summary": "Print the installed mustflow package version. Use --check to compare it with the latest npm release.",
|
|
600
|
+
"version.help.option.check": "Check npm for the latest published mustflow version",
|
|
601
|
+
"version.help.exit.ok": "Version information was printed",
|
|
602
|
+
"version.check.latestAvailable": "latest {version} available",
|
|
603
|
+
"version.check.upToDate": "latest {version}; already up to date",
|
|
604
|
+
"version.check.updateCommand": "Update command:",
|
|
605
|
+
"version.error.checkFailed": "Could not check npm for a newer version: {message}",
|
|
606
|
+
"classify.help.summary": "Classify changed paths, public surfaces, and required validation reasons without modifying files.",
|
|
607
|
+
"classify.help.option.changed": "Read paths from git status --short --untracked-files=all",
|
|
608
|
+
"classify.help.exit.ok": "Change classification was inspected and printed",
|
|
609
|
+
"classify.title": "mustflow classify",
|
|
610
|
+
"classify.label.source": "Source",
|
|
611
|
+
"classify.label.files": "Files",
|
|
612
|
+
"classify.label.publicSurfaces": "Public surfaces",
|
|
613
|
+
"classify.label.validationReasons": "Validation reasons",
|
|
614
|
+
"classify.label.updatePolicies": "Update policies",
|
|
615
|
+
"classify.label.classifications": "Classifications",
|
|
616
|
+
"classify.label.changeKinds": "Change kinds",
|
|
617
|
+
"classify.label.updatePolicy": "Update policy",
|
|
618
|
+
"classify.label.driftChecks": "Drift checks",
|
|
619
|
+
"classify.source.changed": "changed files",
|
|
620
|
+
"classify.source.paths": "explicit paths",
|
|
621
|
+
"classify.error.missingInput": "Specify --changed or at least one path",
|
|
622
|
+
"impact.help.summary": "Report whether changed paths require a package or template version decision without modifying files.",
|
|
623
|
+
"impact.help.option.changed": "Read paths from git status --short --untracked-files=all",
|
|
624
|
+
"impact.help.exit.ok": "Version impact was inspected and printed",
|
|
625
|
+
"impact.title": "mustflow impact",
|
|
626
|
+
"impact.label.versioning": "Versioning preferences",
|
|
627
|
+
"impact.label.requiresVersionDecision": "Requires version decision",
|
|
628
|
+
"impact.label.severity": "Severity",
|
|
629
|
+
"impact.label.suggestedBump": "Suggested bump",
|
|
630
|
+
"impact.label.reasons": "Reasons",
|
|
631
|
+
"impact.label.versionSources": "Version sources",
|
|
632
|
+
"impact.label.affectedVersionSources": "Affected version sources",
|
|
633
|
+
"impact.label.affectedSurfaces": "Affected surfaces",
|
|
634
|
+
"impact.error.missingInput": "Specify --changed or at least one path",
|
|
635
|
+
"verify.help.summary": "Run configured verification intents selected by required_after metadata.",
|
|
636
|
+
"verify.help.option.reason": "Select the required_after reason to verify",
|
|
637
|
+
"verify.help.option.fromPlan": "Read verification reasons from a JSON plan inside this repository",
|
|
638
|
+
"verify.help.option.planOnly": "Print the verification plan without running commands; requires --json",
|
|
639
|
+
"verify.help.exit.ok": "All selected verification intents passed",
|
|
640
|
+
"verify.help.exit.fail": "Verification failed, was partial, was blocked, or input was invalid",
|
|
641
|
+
"verify.title": "mustflow verify",
|
|
642
|
+
"verify.label.reason": "Reason",
|
|
643
|
+
"verify.label.planSource": "Plan source",
|
|
644
|
+
"verify.label.status": "Status",
|
|
645
|
+
"verify.label.results": "Results",
|
|
646
|
+
"verify.error.missingReason": "Missing verification reason",
|
|
647
|
+
"verify.error.conflictingInputs": "Use either --reason or --from-plan, not both",
|
|
648
|
+
"verify.error.planOnlyJson": "--plan-only requires --json",
|
|
649
|
+
"verify.error.invalid_plan_file": "Verification plan must be a readable JSON file",
|
|
650
|
+
"verify.error.missing_plan_reasons": "Verification plan must include reason, reasons, validationReasons, summary.validationReasons, or classification_summary.validationReasons",
|
|
651
|
+
"verify.error.plan_path_outside_root": "Verification plan path must stay inside the mustflow root",
|
|
652
|
+
"explain.help.summary": "Explain why a mustflow policy decision applies without modifying files.",
|
|
653
|
+
"explain.help.exit.ok": "The policy decision was inspected and printed",
|
|
654
|
+
"explain.title": "mustflow explain",
|
|
655
|
+
"explain.label.topic": "Topic",
|
|
656
|
+
"explain.label.decision": "Decision",
|
|
657
|
+
"explain.label.reason": "Reason",
|
|
658
|
+
"explain.label.effectiveAction": "Effective action",
|
|
659
|
+
"explain.label.countsAsMustflowVerification": "Counts as mustflow verification",
|
|
660
|
+
"explain.label.sourceFiles": "Source files",
|
|
661
|
+
"explain.label.expectedFrontmatter": "Expected frontmatter",
|
|
662
|
+
"explain.label.authorityBoundary": "Authority boundary",
|
|
663
|
+
"explain.label.canDefine": "Can define",
|
|
664
|
+
"explain.label.cannotDefine": "Cannot define",
|
|
665
|
+
"explain.label.commandIntent": "Command intent",
|
|
666
|
+
"explain.label.commandName": "Command",
|
|
667
|
+
"explain.label.retentionPolicy": "Retention policy",
|
|
668
|
+
"explain.label.skillRoute": "Skill route",
|
|
669
|
+
"explain.label.skillRoutes": "Skill routes",
|
|
670
|
+
"explain.label.publicSurface": "Public surface",
|
|
671
|
+
"explain.label.validationReasons": "Validation reasons",
|
|
672
|
+
"explain.label.affectedContracts": "Affected contracts",
|
|
673
|
+
"explain.error.missingTopic": "Missing explain topic",
|
|
674
|
+
"explain.error.missingCommand": "Missing command intent",
|
|
675
|
+
"explain.error.missingSkill": "Missing skill id",
|
|
676
|
+
"explain.error.missingAnchor": "Missing source anchor id",
|
|
677
|
+
"explain.error.unknownTopic": "Unknown explain topic: {topic}",
|
|
678
|
+
"update.help.summary": "Preview or apply updates for the installed mustflow workflow.",
|
|
679
|
+
"update.help.option.dryRun": "Print the update plan without writing files",
|
|
680
|
+
"update.help.option.apply": "Apply safe template updates when no local changes are blocked",
|
|
681
|
+
"update.help.exit.ok": "Plan was printed or safe updates were applied",
|
|
682
|
+
"update.help.exit.fail": "Plan found blocked changes, missing state, or invalid input",
|
|
683
|
+
"update.error.cannotCombineModes": "Cannot combine --dry-run and --apply.",
|
|
684
|
+
"update.error.missingMode": "Specify --dry-run or --apply.",
|
|
685
|
+
"update.backup.files": "Backed up {count} {fileWord} to {path}",
|
|
686
|
+
"update.action.created": "Created {path}",
|
|
687
|
+
"update.action.updated": "Updated {path}",
|
|
688
|
+
"update.action.wrote": "Wrote {path}",
|
|
689
|
+
"update.policy.title": "Policy:",
|
|
690
|
+
"update.policy.baseline": "Baseline",
|
|
691
|
+
"update.policy.applyActions": "Apply actions",
|
|
692
|
+
"update.policy.blockingActions": "Blocking actions",
|
|
693
|
+
"update.policy.backupPath": "Backup path",
|
|
694
|
+
"update.plan.title": "mustflow update plan",
|
|
695
|
+
"update.plan.blocked": "Blocked local changes",
|
|
696
|
+
"update.plan.manualReview": "Manual review",
|
|
697
|
+
"update.plan.wouldUpdate": "Would update",
|
|
698
|
+
"update.plan.wouldCreate": "Would create",
|
|
699
|
+
"update.plan.noUpdates": "No template updates needed.",
|
|
700
|
+
"update.plan.noFilesWritten": "No files were written.",
|
|
701
|
+
"update.complete": "mustflow update complete: {updated} updated, {created} created.",
|
|
702
|
+
};
|