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,339 @@
|
|
|
1
|
+
id = "default"
|
|
2
|
+
name = "default"
|
|
3
|
+
version = "1.15.97"
|
|
4
|
+
description = "Minimal workflow for LLM agents to read, edit, and verify their work in a repository."
|
|
5
|
+
common_root = "common"
|
|
6
|
+
locales_root = "locales"
|
|
7
|
+
|
|
8
|
+
creates = [
|
|
9
|
+
"AGENTS.md",
|
|
10
|
+
".mustflow/context/INDEX.md",
|
|
11
|
+
".mustflow/context/PROJECT.md",
|
|
12
|
+
".mustflow/skills/INDEX.md",
|
|
13
|
+
".mustflow/skills/adapter-boundary/SKILL.md",
|
|
14
|
+
".mustflow/skills/artifact-integrity-check/SKILL.md",
|
|
15
|
+
".mustflow/skills/behavior-preserving-refactor/SKILL.md",
|
|
16
|
+
".mustflow/skills/code-review/SKILL.md",
|
|
17
|
+
".mustflow/skills/codebase-orientation/SKILL.md",
|
|
18
|
+
".mustflow/skills/command-pattern/SKILL.md",
|
|
19
|
+
".mustflow/skills/composition-over-inheritance/SKILL.md",
|
|
20
|
+
".mustflow/skills/contract-sync-check/SKILL.md",
|
|
21
|
+
".mustflow/skills/date-number-audit/SKILL.md",
|
|
22
|
+
".mustflow/skills/dependency-injection/SKILL.md",
|
|
23
|
+
".mustflow/skills/dependency-reality-check/SKILL.md",
|
|
24
|
+
".mustflow/skills/diff-risk-review/SKILL.md",
|
|
25
|
+
".mustflow/skills/pure-core-imperative-shell/SKILL.md",
|
|
26
|
+
".mustflow/skills/result-option/SKILL.md",
|
|
27
|
+
".mustflow/skills/test-maintenance/SKILL.md",
|
|
28
|
+
".mustflow/skills/ui-quality-gate/SKILL.md",
|
|
29
|
+
".mustflow/skills/external-prompt-injection-defense/SKILL.md",
|
|
30
|
+
".mustflow/skills/facade-pattern/SKILL.md",
|
|
31
|
+
".mustflow/skills/instruction-conflict-scope-check/SKILL.md",
|
|
32
|
+
".mustflow/skills/failure-triage/SKILL.md",
|
|
33
|
+
".mustflow/skills/line-ending-hygiene/SKILL.md",
|
|
34
|
+
".mustflow/skills/migration-safety-check/SKILL.md",
|
|
35
|
+
".mustflow/skills/multi-agent-work-coordination/SKILL.md",
|
|
36
|
+
".mustflow/skills/null-object-pattern/SKILL.md",
|
|
37
|
+
".mustflow/skills/performance-budget-check/SKILL.md",
|
|
38
|
+
".mustflow/skills/pattern-scout/SKILL.md",
|
|
39
|
+
".mustflow/skills/repo-improvement-loop/SKILL.md",
|
|
40
|
+
".mustflow/skills/structure-discovery-gate/SKILL.md",
|
|
41
|
+
".mustflow/skills/readme-authoring/SKILL.md",
|
|
42
|
+
".mustflow/skills/requirement-regression-guard/SKILL.md",
|
|
43
|
+
".mustflow/skills/repro-first-debug/SKILL.md",
|
|
44
|
+
".mustflow/skills/source-freshness-check/SKILL.md",
|
|
45
|
+
".mustflow/skills/state-machine-pattern/SKILL.md",
|
|
46
|
+
".mustflow/skills/strategy-pattern/SKILL.md",
|
|
47
|
+
".mustflow/skills/docs-prose-review/SKILL.md",
|
|
48
|
+
".mustflow/skills/docs-update/SKILL.md",
|
|
49
|
+
".mustflow/skills/project-context-authoring/SKILL.md",
|
|
50
|
+
".mustflow/skills/security-privacy-review/SKILL.md",
|
|
51
|
+
".mustflow/skills/security-regression-tests/SKILL.md",
|
|
52
|
+
".mustflow/skills/skill-authoring/SKILL.md",
|
|
53
|
+
".mustflow/skills/visual-review-artifact/SKILL.md",
|
|
54
|
+
".mustflow/skills/visual-review-artifact/resources.toml",
|
|
55
|
+
".mustflow/skills/visual-review-artifact/assets/review-template.html",
|
|
56
|
+
".mustflow/skills/web-asset-optimization/SKILL.md",
|
|
57
|
+
".mustflow/docs/agent-workflow.md",
|
|
58
|
+
".mustflow/config/mustflow.toml",
|
|
59
|
+
".mustflow/config/commands.toml",
|
|
60
|
+
".mustflow/config/preferences.toml",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
runtime_requirements = []
|
|
64
|
+
|
|
65
|
+
after_install = [
|
|
66
|
+
"Read AGENTS.md for repository-specific working rules.",
|
|
67
|
+
"Run mf doctor to inspect the current state before editing.",
|
|
68
|
+
"Generate REPO_MAP.md with mf map when a repository map is needed.",
|
|
69
|
+
"Add your test, lint, and build commands to .mustflow/config/commands.toml.",
|
|
70
|
+
"Review repository-specific language and style defaults in .mustflow/config/preferences.toml.",
|
|
71
|
+
"Confirm that .mustflow/context/PROJECT.md describes the project goals and non-goals.",
|
|
72
|
+
"Keep only the skills needed for this repository in .mustflow/skills/INDEX.md.",
|
|
73
|
+
"Record any repository-specific workflow differences in .mustflow/docs/agent-workflow.md.",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[profiles]
|
|
77
|
+
default = "minimal"
|
|
78
|
+
available = ["minimal", "oss", "team", "product", "library"]
|
|
79
|
+
|
|
80
|
+
[skill_profiles]
|
|
81
|
+
minimal = [
|
|
82
|
+
"adapter-boundary",
|
|
83
|
+
"behavior-preserving-refactor",
|
|
84
|
+
"code-review",
|
|
85
|
+
"codebase-orientation",
|
|
86
|
+
"command-pattern",
|
|
87
|
+
"composition-over-inheritance",
|
|
88
|
+
"contract-sync-check",
|
|
89
|
+
"date-number-audit",
|
|
90
|
+
"dependency-injection",
|
|
91
|
+
"dependency-reality-check",
|
|
92
|
+
"diff-risk-review",
|
|
93
|
+
"docs-update",
|
|
94
|
+
"external-prompt-injection-defense",
|
|
95
|
+
"facade-pattern",
|
|
96
|
+
"failure-triage",
|
|
97
|
+
"instruction-conflict-scope-check",
|
|
98
|
+
"null-object-pattern",
|
|
99
|
+
"pattern-scout",
|
|
100
|
+
"pure-core-imperative-shell",
|
|
101
|
+
"result-option",
|
|
102
|
+
"requirement-regression-guard",
|
|
103
|
+
"repro-first-debug",
|
|
104
|
+
"security-privacy-review",
|
|
105
|
+
"source-freshness-check",
|
|
106
|
+
"state-machine-pattern",
|
|
107
|
+
"strategy-pattern",
|
|
108
|
+
"structure-discovery-gate",
|
|
109
|
+
"test-maintenance",
|
|
110
|
+
]
|
|
111
|
+
oss = [
|
|
112
|
+
"adapter-boundary",
|
|
113
|
+
"artifact-integrity-check",
|
|
114
|
+
"behavior-preserving-refactor",
|
|
115
|
+
"code-review",
|
|
116
|
+
"codebase-orientation",
|
|
117
|
+
"command-pattern",
|
|
118
|
+
"composition-over-inheritance",
|
|
119
|
+
"contract-sync-check",
|
|
120
|
+
"date-number-audit",
|
|
121
|
+
"dependency-injection",
|
|
122
|
+
"dependency-reality-check",
|
|
123
|
+
"diff-risk-review",
|
|
124
|
+
"docs-prose-review",
|
|
125
|
+
"docs-update",
|
|
126
|
+
"external-prompt-injection-defense",
|
|
127
|
+
"facade-pattern",
|
|
128
|
+
"failure-triage",
|
|
129
|
+
"instruction-conflict-scope-check",
|
|
130
|
+
"line-ending-hygiene",
|
|
131
|
+
"migration-safety-check",
|
|
132
|
+
"null-object-pattern",
|
|
133
|
+
"pattern-scout",
|
|
134
|
+
"project-context-authoring",
|
|
135
|
+
"pure-core-imperative-shell",
|
|
136
|
+
"readme-authoring",
|
|
137
|
+
"repo-improvement-loop",
|
|
138
|
+
"result-option",
|
|
139
|
+
"requirement-regression-guard",
|
|
140
|
+
"repro-first-debug",
|
|
141
|
+
"security-privacy-review",
|
|
142
|
+
"security-regression-tests",
|
|
143
|
+
"skill-authoring",
|
|
144
|
+
"source-freshness-check",
|
|
145
|
+
"state-machine-pattern",
|
|
146
|
+
"strategy-pattern",
|
|
147
|
+
"structure-discovery-gate",
|
|
148
|
+
"test-maintenance",
|
|
149
|
+
]
|
|
150
|
+
team = [
|
|
151
|
+
"adapter-boundary",
|
|
152
|
+
"behavior-preserving-refactor",
|
|
153
|
+
"code-review",
|
|
154
|
+
"codebase-orientation",
|
|
155
|
+
"command-pattern",
|
|
156
|
+
"composition-over-inheritance",
|
|
157
|
+
"contract-sync-check",
|
|
158
|
+
"date-number-audit",
|
|
159
|
+
"dependency-injection",
|
|
160
|
+
"dependency-reality-check",
|
|
161
|
+
"diff-risk-review",
|
|
162
|
+
"docs-update",
|
|
163
|
+
"external-prompt-injection-defense",
|
|
164
|
+
"facade-pattern",
|
|
165
|
+
"failure-triage",
|
|
166
|
+
"instruction-conflict-scope-check",
|
|
167
|
+
"multi-agent-work-coordination",
|
|
168
|
+
"null-object-pattern",
|
|
169
|
+
"pattern-scout",
|
|
170
|
+
"pure-core-imperative-shell",
|
|
171
|
+
"result-option",
|
|
172
|
+
"requirement-regression-guard",
|
|
173
|
+
"repro-first-debug",
|
|
174
|
+
"security-privacy-review",
|
|
175
|
+
"source-freshness-check",
|
|
176
|
+
"state-machine-pattern",
|
|
177
|
+
"strategy-pattern",
|
|
178
|
+
"structure-discovery-gate",
|
|
179
|
+
"test-maintenance",
|
|
180
|
+
]
|
|
181
|
+
product = [
|
|
182
|
+
"adapter-boundary",
|
|
183
|
+
"behavior-preserving-refactor",
|
|
184
|
+
"code-review",
|
|
185
|
+
"codebase-orientation",
|
|
186
|
+
"command-pattern",
|
|
187
|
+
"composition-over-inheritance",
|
|
188
|
+
"contract-sync-check",
|
|
189
|
+
"date-number-audit",
|
|
190
|
+
"dependency-injection",
|
|
191
|
+
"dependency-reality-check",
|
|
192
|
+
"diff-risk-review",
|
|
193
|
+
"docs-update",
|
|
194
|
+
"external-prompt-injection-defense",
|
|
195
|
+
"facade-pattern",
|
|
196
|
+
"failure-triage",
|
|
197
|
+
"instruction-conflict-scope-check",
|
|
198
|
+
"null-object-pattern",
|
|
199
|
+
"pattern-scout",
|
|
200
|
+
"performance-budget-check",
|
|
201
|
+
"pure-core-imperative-shell",
|
|
202
|
+
"result-option",
|
|
203
|
+
"requirement-regression-guard",
|
|
204
|
+
"repro-first-debug",
|
|
205
|
+
"security-privacy-review",
|
|
206
|
+
"source-freshness-check",
|
|
207
|
+
"state-machine-pattern",
|
|
208
|
+
"strategy-pattern",
|
|
209
|
+
"structure-discovery-gate",
|
|
210
|
+
"test-maintenance",
|
|
211
|
+
"ui-quality-gate",
|
|
212
|
+
"visual-review-artifact",
|
|
213
|
+
"web-asset-optimization",
|
|
214
|
+
]
|
|
215
|
+
library = [
|
|
216
|
+
"adapter-boundary",
|
|
217
|
+
"artifact-integrity-check",
|
|
218
|
+
"behavior-preserving-refactor",
|
|
219
|
+
"code-review",
|
|
220
|
+
"codebase-orientation",
|
|
221
|
+
"command-pattern",
|
|
222
|
+
"composition-over-inheritance",
|
|
223
|
+
"contract-sync-check",
|
|
224
|
+
"date-number-audit",
|
|
225
|
+
"dependency-injection",
|
|
226
|
+
"dependency-reality-check",
|
|
227
|
+
"diff-risk-review",
|
|
228
|
+
"docs-prose-review",
|
|
229
|
+
"docs-update",
|
|
230
|
+
"external-prompt-injection-defense",
|
|
231
|
+
"facade-pattern",
|
|
232
|
+
"failure-triage",
|
|
233
|
+
"instruction-conflict-scope-check",
|
|
234
|
+
"line-ending-hygiene",
|
|
235
|
+
"migration-safety-check",
|
|
236
|
+
"null-object-pattern",
|
|
237
|
+
"pattern-scout",
|
|
238
|
+
"project-context-authoring",
|
|
239
|
+
"pure-core-imperative-shell",
|
|
240
|
+
"readme-authoring",
|
|
241
|
+
"result-option",
|
|
242
|
+
"requirement-regression-guard",
|
|
243
|
+
"repro-first-debug",
|
|
244
|
+
"security-privacy-review",
|
|
245
|
+
"security-regression-tests",
|
|
246
|
+
"source-freshness-check",
|
|
247
|
+
"state-machine-pattern",
|
|
248
|
+
"strategy-pattern",
|
|
249
|
+
"structure-discovery-gate",
|
|
250
|
+
"test-maintenance",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[locales]
|
|
254
|
+
default = "en"
|
|
255
|
+
available = ["en", "ko", "zh", "es", "fr", "hi"]
|
|
256
|
+
source = "en"
|
|
257
|
+
|
|
258
|
+
[install_policy]
|
|
259
|
+
scope = "llm_only"
|
|
260
|
+
copied_targets = ["AGENTS.md", ".mustflow/**"]
|
|
261
|
+
managed_targets = [".gitignore"]
|
|
262
|
+
generated_targets = [
|
|
263
|
+
"REPO_MAP.md",
|
|
264
|
+
".mustflow/config/manifest.lock.toml",
|
|
265
|
+
".mustflow/state/**",
|
|
266
|
+
".mustflow/worklogs/**",
|
|
267
|
+
".mustflow/plans/**",
|
|
268
|
+
".mustflow/tasks/**",
|
|
269
|
+
".mustflow/work-items/**",
|
|
270
|
+
]
|
|
271
|
+
forbidden_targets = [
|
|
272
|
+
"README.md",
|
|
273
|
+
"PROJECT.md",
|
|
274
|
+
"ROADMAP.md",
|
|
275
|
+
"DESIGN.md",
|
|
276
|
+
"CONTRIBUTING.md",
|
|
277
|
+
"SECURITY.md",
|
|
278
|
+
"CHANGELOG.md",
|
|
279
|
+
"CODE_OF_CONDUCT.md",
|
|
280
|
+
"SUPPORT.md",
|
|
281
|
+
"GOVERNANCE.md",
|
|
282
|
+
"MAINTAINERS.md",
|
|
283
|
+
"RELEASING.md",
|
|
284
|
+
"RELEASE.md",
|
|
285
|
+
"TESTING.md",
|
|
286
|
+
"DEPLOYMENT.md",
|
|
287
|
+
"OPERATIONS.md",
|
|
288
|
+
"RUNBOOK.md",
|
|
289
|
+
"CONFIGURATION.md",
|
|
290
|
+
"DATA_MODEL.md",
|
|
291
|
+
"SCHEMA.md",
|
|
292
|
+
"PRIVACY.md",
|
|
293
|
+
"TROUBLESHOOTING.md",
|
|
294
|
+
"ARCHITECTURE.md",
|
|
295
|
+
"API.md",
|
|
296
|
+
"project.contract.json",
|
|
297
|
+
"project.constants.json",
|
|
298
|
+
"design-tokens.json",
|
|
299
|
+
"openapi.json",
|
|
300
|
+
"openapi.yaml",
|
|
301
|
+
"openapi.yml",
|
|
302
|
+
"asyncapi.json",
|
|
303
|
+
"asyncapi.yaml",
|
|
304
|
+
"asyncapi.yml",
|
|
305
|
+
"schema.graphql",
|
|
306
|
+
"schema.prisma",
|
|
307
|
+
".github/**",
|
|
308
|
+
"docs/**",
|
|
309
|
+
"skills/**",
|
|
310
|
+
"config/**",
|
|
311
|
+
"src/**",
|
|
312
|
+
"package.json",
|
|
313
|
+
"pyproject.toml",
|
|
314
|
+
"go.mod",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[i18n]
|
|
318
|
+
metadata = "i18n.toml"
|
|
319
|
+
source_locale = "en"
|
|
320
|
+
|
|
321
|
+
[conflict_policy]
|
|
322
|
+
default = "abort"
|
|
323
|
+
|
|
324
|
+
[conflict_policy.files]
|
|
325
|
+
"AGENTS.md" = "merge_with_managed_block"
|
|
326
|
+
".mustflow/config/commands.toml" = "abort"
|
|
327
|
+
".mustflow/config/mustflow.toml" = "abort"
|
|
328
|
+
".mustflow/config/preferences.toml" = "abort"
|
|
329
|
+
".mustflow/context/INDEX.md" = "abort"
|
|
330
|
+
".mustflow/context/PROJECT.md" = "abort"
|
|
331
|
+
|
|
332
|
+
[conflict_policy.generated]
|
|
333
|
+
"REPO_MAP.md" = "prompt"
|
|
334
|
+
".mustflow/config/manifest.lock.toml" = "regenerate"
|
|
335
|
+
".mustflow/state/**" = "keep"
|
|
336
|
+
".mustflow/worklogs/**" = "keep"
|
|
337
|
+
".mustflow/plans/**" = "keep"
|
|
338
|
+
".mustflow/tasks/**" = "keep"
|
|
339
|
+
".mustflow/work-items/**" = "keep"
|