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,424 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
profile = "default"
|
|
3
|
+
|
|
4
|
+
read_order = [
|
|
5
|
+
"AGENTS.md",
|
|
6
|
+
".mustflow/docs/agent-workflow.md",
|
|
7
|
+
".mustflow/config/mustflow.toml",
|
|
8
|
+
".mustflow/config/commands.toml",
|
|
9
|
+
".mustflow/config/preferences.toml",
|
|
10
|
+
".mustflow/skills/INDEX.md",
|
|
11
|
+
]
|
|
12
|
+
optional_read_order = [
|
|
13
|
+
".mustflow/context/INDEX.md",
|
|
14
|
+
"REPO_MAP.md",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[authority]
|
|
18
|
+
primary_instruction = "AGENTS.md"
|
|
19
|
+
repository_map = "REPO_MAP.md"
|
|
20
|
+
skill_index = ".mustflow/skills/INDEX.md"
|
|
21
|
+
command_contract = ".mustflow/config/commands.toml"
|
|
22
|
+
workflow_preferences = ".mustflow/config/preferences.toml"
|
|
23
|
+
workflow_reference = ".mustflow/docs/agent-workflow.md"
|
|
24
|
+
context_index = ".mustflow/context/INDEX.md"
|
|
25
|
+
project_context = ".mustflow/context/PROJECT.md"
|
|
26
|
+
|
|
27
|
+
[map]
|
|
28
|
+
output = "REPO_MAP.md"
|
|
29
|
+
mode = "anchors_only"
|
|
30
|
+
privacy = "minimal"
|
|
31
|
+
include_nested = false
|
|
32
|
+
anchor_files = [
|
|
33
|
+
"AGENTS.md",
|
|
34
|
+
"REPO_MAP.md",
|
|
35
|
+
".mustflow/config/mustflow.toml",
|
|
36
|
+
".mustflow/config/commands.toml",
|
|
37
|
+
".mustflow/config/preferences.toml",
|
|
38
|
+
".mustflow/skills/INDEX.md",
|
|
39
|
+
"README.md",
|
|
40
|
+
"PROJECT.md",
|
|
41
|
+
"ROADMAP.md",
|
|
42
|
+
"DESIGN.md",
|
|
43
|
+
"CONTRIBUTING.md",
|
|
44
|
+
"SECURITY.md",
|
|
45
|
+
"CHANGELOG.md",
|
|
46
|
+
"CODE_OF_CONDUCT.md",
|
|
47
|
+
"SUPPORT.md",
|
|
48
|
+
"GOVERNANCE.md",
|
|
49
|
+
"MAINTAINERS.md",
|
|
50
|
+
"RELEASING.md",
|
|
51
|
+
"RELEASE.md",
|
|
52
|
+
"TESTING.md",
|
|
53
|
+
"DEPLOYMENT.md",
|
|
54
|
+
"OPERATIONS.md",
|
|
55
|
+
"RUNBOOK.md",
|
|
56
|
+
"CONFIGURATION.md",
|
|
57
|
+
"DATA_MODEL.md",
|
|
58
|
+
"SCHEMA.md",
|
|
59
|
+
"PRIVACY.md",
|
|
60
|
+
"TROUBLESHOOTING.md",
|
|
61
|
+
"ARCHITECTURE.md",
|
|
62
|
+
"API.md",
|
|
63
|
+
"project.contract.json",
|
|
64
|
+
"project.constants.json",
|
|
65
|
+
"design-tokens.json",
|
|
66
|
+
"openapi.json",
|
|
67
|
+
"openapi.yaml",
|
|
68
|
+
"openapi.yml",
|
|
69
|
+
"asyncapi.json",
|
|
70
|
+
"asyncapi.yaml",
|
|
71
|
+
"asyncapi.yml",
|
|
72
|
+
"schema.graphql",
|
|
73
|
+
"schema.prisma",
|
|
74
|
+
".mustflow/context/INDEX.md",
|
|
75
|
+
".mustflow/context/PROJECT.md",
|
|
76
|
+
"package.json",
|
|
77
|
+
"pyproject.toml",
|
|
78
|
+
"go.mod",
|
|
79
|
+
"Cargo.toml",
|
|
80
|
+
"deno.json",
|
|
81
|
+
"justfile",
|
|
82
|
+
"Justfile",
|
|
83
|
+
"Makefile",
|
|
84
|
+
"Taskfile.yml",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[workspace]
|
|
88
|
+
enabled = false
|
|
89
|
+
roots = []
|
|
90
|
+
max_depth = 4
|
|
91
|
+
max_repositories = 50
|
|
92
|
+
follow_symlinks = false
|
|
93
|
+
stop_at_repository_root = true
|
|
94
|
+
|
|
95
|
+
[capabilities]
|
|
96
|
+
workflow = true
|
|
97
|
+
command_contract = true
|
|
98
|
+
skills = true
|
|
99
|
+
repo_map = "generated_optional"
|
|
100
|
+
preferences = "optional"
|
|
101
|
+
context = "optional"
|
|
102
|
+
local_index = "generated_optional"
|
|
103
|
+
work_items = "disabled"
|
|
104
|
+
services = "disabled"
|
|
105
|
+
adapters = []
|
|
106
|
+
|
|
107
|
+
[context]
|
|
108
|
+
enabled = true
|
|
109
|
+
root = ".mustflow/context"
|
|
110
|
+
index = ".mustflow/context/INDEX.md"
|
|
111
|
+
default_files = [
|
|
112
|
+
".mustflow/context/PROJECT.md",
|
|
113
|
+
]
|
|
114
|
+
read_policy = "task_relevant_only"
|
|
115
|
+
authority = "contextual"
|
|
116
|
+
external_anchors = [
|
|
117
|
+
"README.md",
|
|
118
|
+
"ROADMAP.md",
|
|
119
|
+
"DESIGN.md",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[prompt_cache]
|
|
123
|
+
enabled = true
|
|
124
|
+
strategy = "stable_prefix"
|
|
125
|
+
stable_prefix_policy = "hash_verified"
|
|
126
|
+
prefer_references_when_unchanged = true
|
|
127
|
+
exclude_volatile_state_from_prefix = true
|
|
128
|
+
include_content_hashes = true
|
|
129
|
+
max_stable_prefix_kb = 96
|
|
130
|
+
max_task_context_kb = 48
|
|
131
|
+
max_volatile_suffix_kb = 24
|
|
132
|
+
|
|
133
|
+
[prompt_cache.layers.stable]
|
|
134
|
+
read = [
|
|
135
|
+
"AGENTS.md",
|
|
136
|
+
".mustflow/docs/agent-workflow.md",
|
|
137
|
+
".mustflow/config/mustflow.toml",
|
|
138
|
+
".mustflow/config/commands.toml",
|
|
139
|
+
".mustflow/skills/INDEX.md",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[prompt_cache.layers.task]
|
|
143
|
+
read_policy = "task_relevant_only"
|
|
144
|
+
sources = [
|
|
145
|
+
".mustflow/context/INDEX.md",
|
|
146
|
+
"REPO_MAP.md",
|
|
147
|
+
"matching_skill",
|
|
148
|
+
"relevant_source_files",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[prompt_cache.layers.volatile]
|
|
152
|
+
sources = [
|
|
153
|
+
".mustflow/state/runs/latest.json",
|
|
154
|
+
"changed_files",
|
|
155
|
+
"command_output_tail",
|
|
156
|
+
"current_user_task",
|
|
157
|
+
]
|
|
158
|
+
never_place_before_stable_prefix = true
|
|
159
|
+
|
|
160
|
+
[agent_loop]
|
|
161
|
+
phases = [
|
|
162
|
+
"orient",
|
|
163
|
+
"plan",
|
|
164
|
+
"act",
|
|
165
|
+
"verify",
|
|
166
|
+
"report",
|
|
167
|
+
"handoff",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[harness]
|
|
171
|
+
mode = "single_session"
|
|
172
|
+
fresh_context_preferred = true
|
|
173
|
+
fresh_context_mode = "hash_check_before_reread"
|
|
174
|
+
|
|
175
|
+
[harness.phases]
|
|
176
|
+
enabled = [
|
|
177
|
+
"plan",
|
|
178
|
+
"work",
|
|
179
|
+
"verify",
|
|
180
|
+
"judge",
|
|
181
|
+
"handoff",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[refresh]
|
|
185
|
+
enabled = true
|
|
186
|
+
mode = "checkpoint"
|
|
187
|
+
default_method = "hash_check"
|
|
188
|
+
reread_when_hash_changed = true
|
|
189
|
+
reuse_cached_prefix_when_unchanged = true
|
|
190
|
+
required_at = [
|
|
191
|
+
"session_start",
|
|
192
|
+
"task_start",
|
|
193
|
+
"before_first_edit",
|
|
194
|
+
"before_command_run",
|
|
195
|
+
"after_instruction_file_change",
|
|
196
|
+
"root_change",
|
|
197
|
+
"after_compaction",
|
|
198
|
+
"before_final_report",
|
|
199
|
+
]
|
|
200
|
+
turn_threshold = 8
|
|
201
|
+
tool_call_threshold = 16
|
|
202
|
+
output_bytes_threshold = 100000
|
|
203
|
+
state_store = "cache"
|
|
204
|
+
|
|
205
|
+
[refresh.levels.light]
|
|
206
|
+
method = "hash_check"
|
|
207
|
+
read = [
|
|
208
|
+
"AGENTS.md",
|
|
209
|
+
".mustflow/docs/agent-workflow.md",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[refresh.levels.command]
|
|
213
|
+
method = "hash_check"
|
|
214
|
+
read = [
|
|
215
|
+
"AGENTS.md",
|
|
216
|
+
".mustflow/config/commands.toml",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[refresh.levels.edit]
|
|
220
|
+
method = "reread_if_changed"
|
|
221
|
+
read = [
|
|
222
|
+
"AGENTS.md",
|
|
223
|
+
".mustflow/config/mustflow.toml",
|
|
224
|
+
".mustflow/docs/agent-workflow.md",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[refresh.levels.report]
|
|
228
|
+
method = "hash_check"
|
|
229
|
+
read = [
|
|
230
|
+
"AGENTS.md",
|
|
231
|
+
".mustflow/config/mustflow.toml",
|
|
232
|
+
".mustflow/config/preferences.toml",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[refresh.levels.skill]
|
|
236
|
+
method = "hash_check"
|
|
237
|
+
read = [
|
|
238
|
+
"AGENTS.md",
|
|
239
|
+
".mustflow/skills/INDEX.md",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[refresh.levels.full]
|
|
243
|
+
method = "reread_if_changed"
|
|
244
|
+
read = [
|
|
245
|
+
"AGENTS.md",
|
|
246
|
+
".mustflow/docs/agent-workflow.md",
|
|
247
|
+
".mustflow/config/mustflow.toml",
|
|
248
|
+
".mustflow/config/commands.toml",
|
|
249
|
+
".mustflow/config/preferences.toml",
|
|
250
|
+
".mustflow/skills/INDEX.md",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[compaction]
|
|
254
|
+
enabled = false
|
|
255
|
+
strategy = "tiered"
|
|
256
|
+
state_store = "cache"
|
|
257
|
+
|
|
258
|
+
[compaction.rules]
|
|
259
|
+
require_source_refs = true
|
|
260
|
+
summaries_are_derived = true
|
|
261
|
+
current_files_override_summaries = true
|
|
262
|
+
never_store_secrets = true
|
|
263
|
+
scrub_absolute_user_paths = true
|
|
264
|
+
do_not_store_hidden_chain_of_thought = true
|
|
265
|
+
|
|
266
|
+
[verification]
|
|
267
|
+
command_source = ".mustflow/config/commands.toml"
|
|
268
|
+
require_configured_intents = true
|
|
269
|
+
allow_inferred_commands = false
|
|
270
|
+
require_command_lifecycle = true
|
|
271
|
+
require_timeout_for_oneshot = true
|
|
272
|
+
|
|
273
|
+
[testing]
|
|
274
|
+
policy = "behavior_contract"
|
|
275
|
+
prefer_update_existing_tests = true
|
|
276
|
+
require_existing_test_search = true
|
|
277
|
+
require_test_change_report = true
|
|
278
|
+
forbid_validation_weakening = true
|
|
279
|
+
allow_test_deletion_when = [
|
|
280
|
+
"behavior_removed",
|
|
281
|
+
"public_contract_changed",
|
|
282
|
+
"duplicate_coverage",
|
|
283
|
+
"implementation_detail_removed",
|
|
284
|
+
"obsolete_snapshot",
|
|
285
|
+
]
|
|
286
|
+
forbid_test_deletion_when = [
|
|
287
|
+
"only_to_make_tests_pass",
|
|
288
|
+
"without_behavior_rationale",
|
|
289
|
+
"without_reporting",
|
|
290
|
+
"without_running_relevant_validation",
|
|
291
|
+
]
|
|
292
|
+
stale_test_action = "update_remove_or_report"
|
|
293
|
+
|
|
294
|
+
[handoff]
|
|
295
|
+
enabled = false
|
|
296
|
+
mode = "report_only"
|
|
297
|
+
|
|
298
|
+
[budget]
|
|
299
|
+
enabled = true
|
|
300
|
+
max_iterations = 6
|
|
301
|
+
max_wall_clock_minutes = 60
|
|
302
|
+
max_command_runs = 20
|
|
303
|
+
max_total_output_mb = 8
|
|
304
|
+
max_failures_per_intent = 2
|
|
305
|
+
on_limit = "stop_and_report"
|
|
306
|
+
|
|
307
|
+
[approval]
|
|
308
|
+
required_for = [
|
|
309
|
+
"git_commit",
|
|
310
|
+
"git_push",
|
|
311
|
+
"dependency_install",
|
|
312
|
+
"dependency_upgrade",
|
|
313
|
+
"network_access",
|
|
314
|
+
"database_migration",
|
|
315
|
+
"destructive_command",
|
|
316
|
+
"secret_access",
|
|
317
|
+
"release",
|
|
318
|
+
"cross_repository_change",
|
|
319
|
+
]
|
|
320
|
+
on_required = "stop_and_request_approval"
|
|
321
|
+
|
|
322
|
+
[isolation]
|
|
323
|
+
preferred = "git_worktree"
|
|
324
|
+
required_for_long_running = true
|
|
325
|
+
allow_dirty_main_worktree = false
|
|
326
|
+
|
|
327
|
+
[retention]
|
|
328
|
+
enabled = true
|
|
329
|
+
|
|
330
|
+
[retention.raw_events]
|
|
331
|
+
store = "none"
|
|
332
|
+
max_file_mb = 25
|
|
333
|
+
max_total_mb = 250
|
|
334
|
+
max_age_days = 14
|
|
335
|
+
on_limit = "report"
|
|
336
|
+
|
|
337
|
+
[retention.run_receipts]
|
|
338
|
+
store = "repo_local_ignored"
|
|
339
|
+
max_file_kb = 128
|
|
340
|
+
max_items = 1
|
|
341
|
+
max_total_mb = 1
|
|
342
|
+
keep_stdout_tail_bytes = 65536
|
|
343
|
+
keep_stderr_tail_bytes = 65536
|
|
344
|
+
|
|
345
|
+
[retention.knowledge]
|
|
346
|
+
enabled = false
|
|
347
|
+
store = "repo_local_ignored"
|
|
348
|
+
max_file_kb = 128
|
|
349
|
+
max_total_mb = 10
|
|
350
|
+
require_source_refs = true
|
|
351
|
+
require_review_status = true
|
|
352
|
+
|
|
353
|
+
[retention.context]
|
|
354
|
+
max_file_kb = 8
|
|
355
|
+
|
|
356
|
+
[retention.handoffs]
|
|
357
|
+
store = "repo_local_ignored"
|
|
358
|
+
max_file_kb = 64
|
|
359
|
+
max_total_mb = 5
|
|
360
|
+
require_source_refs = true
|
|
361
|
+
|
|
362
|
+
[retention.repo_map]
|
|
363
|
+
max_file_kb = 128
|
|
364
|
+
fail_if_larger = true
|
|
365
|
+
|
|
366
|
+
[document_roots]
|
|
367
|
+
canonical = [
|
|
368
|
+
"AGENTS.md",
|
|
369
|
+
".mustflow/config/commands.toml",
|
|
370
|
+
".mustflow/config/mustflow.toml",
|
|
371
|
+
".mustflow/config/preferences.toml",
|
|
372
|
+
".mustflow/context/**",
|
|
373
|
+
".mustflow/docs/**",
|
|
374
|
+
".mustflow/skills/**",
|
|
375
|
+
]
|
|
376
|
+
generated = [
|
|
377
|
+
"REPO_MAP.md",
|
|
378
|
+
".mustflow/config/manifest.lock.toml",
|
|
379
|
+
".mustflow/cache/**",
|
|
380
|
+
".mustflow/state/**",
|
|
381
|
+
]
|
|
382
|
+
ignored = [
|
|
383
|
+
"node_modules/**",
|
|
384
|
+
"vendor/**",
|
|
385
|
+
"third_party/**",
|
|
386
|
+
"dist/**",
|
|
387
|
+
"build/**",
|
|
388
|
+
"coverage/**",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[edit_policy]
|
|
392
|
+
protected = [
|
|
393
|
+
".git/**",
|
|
394
|
+
"node_modules/**",
|
|
395
|
+
"vendor/**",
|
|
396
|
+
"third_party/**",
|
|
397
|
+
"dist/**",
|
|
398
|
+
"build/**",
|
|
399
|
+
"coverage/**",
|
|
400
|
+
"**/*.pem",
|
|
401
|
+
"**/*.key",
|
|
402
|
+
"**/.env",
|
|
403
|
+
]
|
|
404
|
+
extra_care = [
|
|
405
|
+
"AGENTS.md",
|
|
406
|
+
"REPO_MAP.md",
|
|
407
|
+
".mustflow/config/**",
|
|
408
|
+
".mustflow/context/**",
|
|
409
|
+
".mustflow/skills/**",
|
|
410
|
+
".mustflow/docs/**",
|
|
411
|
+
"package-lock.json",
|
|
412
|
+
"pnpm-lock.yaml",
|
|
413
|
+
"yarn.lock",
|
|
414
|
+
"bun.lock",
|
|
415
|
+
"deno.lock",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[reporting]
|
|
419
|
+
include = [
|
|
420
|
+
"changed_files",
|
|
421
|
+
"commands_run",
|
|
422
|
+
"commands_failed",
|
|
423
|
+
"commands_skipped_with_reason",
|
|
424
|
+
]
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
schema_version = "1"
|
|
2
|
+
|
|
3
|
+
# This file stores repository-level defaults.
|
|
4
|
+
# Direct user instructions, parent instructions, child AGENTS.md files, and existing file style take priority.
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
convention_mode = "bootstrap"
|
|
8
|
+
profile = "minimal"
|
|
9
|
+
|
|
10
|
+
[language]
|
|
11
|
+
# agent_response는 에이전트 최종 보고 언어이고, docs는 설치된 mustflow 문서 언어입니다.
|
|
12
|
+
# 제품 사용자 문구 언어는 필요할 때 [product_i18n]에서 별도로 선언합니다.
|
|
13
|
+
agent_response = "en"
|
|
14
|
+
docs = "en"
|
|
15
|
+
|
|
16
|
+
[language.code_comments]
|
|
17
|
+
mode = "preserve_existing"
|
|
18
|
+
fallback = "en"
|
|
19
|
+
rule = "Add comments only when they clarify non-obvious intent."
|
|
20
|
+
|
|
21
|
+
[language.logs]
|
|
22
|
+
mode = "preserve_existing"
|
|
23
|
+
fallback = "en"
|
|
24
|
+
rule = "Do not translate existing log keys, error codes, or externally consumed messages without a project rule."
|
|
25
|
+
|
|
26
|
+
[language.user_facing_text]
|
|
27
|
+
mode = "preserve_existing"
|
|
28
|
+
fallback = "en"
|
|
29
|
+
rule = "Follow the product language policy when one exists."
|
|
30
|
+
|
|
31
|
+
[language.memory]
|
|
32
|
+
# summary controls derived memory such as compaction summaries and handoff summaries.
|
|
33
|
+
# Use "agent_response", "docs", "preserve_existing", or a language tag such as "en" or "ko".
|
|
34
|
+
summary = "agent_response"
|
|
35
|
+
fallback = "en"
|
|
36
|
+
preserve_code = true
|
|
37
|
+
preserve_paths = true
|
|
38
|
+
preserve_error_output = true
|
|
39
|
+
|
|
40
|
+
[formatting]
|
|
41
|
+
indentation = "preserve_existing"
|
|
42
|
+
indentation_when_missing = "editorconfig_or_formatter"
|
|
43
|
+
line_endings = "preserve_existing"
|
|
44
|
+
line_endings_when_missing = "lf"
|
|
45
|
+
quote_style = "preserve_existing"
|
|
46
|
+
trailing_whitespace = "avoid"
|
|
47
|
+
|
|
48
|
+
[code_style]
|
|
49
|
+
naming = "preserve_existing"
|
|
50
|
+
comments = "only_when_helpful"
|
|
51
|
+
public_api_docs = "when_new_or_changed"
|
|
52
|
+
avoid_drive_by_refactors = true
|
|
53
|
+
|
|
54
|
+
[refactoring.hotspots]
|
|
55
|
+
large_file_candidate_kb = 40
|
|
56
|
+
history_days = 90
|
|
57
|
+
primary_candidate_limit = 50
|
|
58
|
+
structure_candidate_limit = 10
|
|
59
|
+
full_file_candidate_limit = 3
|
|
60
|
+
|
|
61
|
+
[git]
|
|
62
|
+
auto_stage = false
|
|
63
|
+
auto_commit = false
|
|
64
|
+
auto_push = false
|
|
65
|
+
|
|
66
|
+
[git.commit_message]
|
|
67
|
+
suggest = "when_changes_made"
|
|
68
|
+
style = "conventional"
|
|
69
|
+
# language can be "preserve_existing", "agent_response", "docs", or a locale tag such as "ja" or "pt-BR".
|
|
70
|
+
language = "preserve_existing"
|
|
71
|
+
language_when_missing = "en"
|
|
72
|
+
scope = "infer_from_changed_paths"
|
|
73
|
+
max_suggestions = 2
|
|
74
|
+
include_body = "when_non_trivial"
|
|
75
|
+
split_when_multiple_concerns = true
|
|
76
|
+
avoid_sensitive_details = true
|
|
77
|
+
|
|
78
|
+
[reporting.commit_suggestion]
|
|
79
|
+
enabled = true
|
|
80
|
+
when = "files_changed"
|
|
81
|
+
source = "git.commit_message"
|
|
82
|
+
|
|
83
|
+
[release.versioning]
|
|
84
|
+
impact_check = true
|
|
85
|
+
suggest_bump = true
|
|
86
|
+
auto_bump = false
|
|
87
|
+
require_user_confirmation = true
|
|
88
|
+
sync_template_version = true
|
|
89
|
+
sync_docs_examples = true
|
|
90
|
+
sync_tests = true
|
|
91
|
+
|
|
92
|
+
[verification.selection]
|
|
93
|
+
# strategy:
|
|
94
|
+
# - "risk_based": choose the smallest configured checks that cover changed behavior and risk.
|
|
95
|
+
# - "targeted": prefer directly related checks unless the user or policy asks for broader coverage.
|
|
96
|
+
# - "full": prefer the full applicable configured verification suite.
|
|
97
|
+
strategy = "risk_based"
|
|
98
|
+
prefer_related_tests = true
|
|
99
|
+
skip_docs_only_full_test = true
|
|
100
|
+
skip_low_risk_code_full_test = true
|
|
101
|
+
skip_translation_only_full_test = true
|
|
102
|
+
skip_copy_only_full_test = true
|
|
103
|
+
report_skipped = true
|
|
104
|
+
|
|
105
|
+
[testing.authoring]
|
|
106
|
+
# new_test_policy:
|
|
107
|
+
# - "evidence_required": add new tests only when behavior-contract evidence supports them.
|
|
108
|
+
# - "manual_approval": ask before adding new tests unless the user directly requested tests.
|
|
109
|
+
# - "broad": allow proactive new tests when they clarify important behavior.
|
|
110
|
+
new_test_policy = "evidence_required"
|
|
111
|
+
prefer_existing_tests = true
|
|
112
|
+
require_new_test_rationale = true
|
|
113
|
+
|
|
114
|
+
[docs]
|
|
115
|
+
update_when = [
|
|
116
|
+
"public_api_change",
|
|
117
|
+
"user_visible_behavior_change",
|
|
118
|
+
"command_contract_change",
|
|
119
|
+
"agent_workflow_change",
|
|
120
|
+
]
|
|
121
|
+
tone = "clear_and_direct"
|
|
122
|
+
|
|
123
|
+
[logging]
|
|
124
|
+
style = "preserve_existing"
|
|
125
|
+
include_sensitive_data = false
|