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,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://mustflow.github.io/schemas/run-receipt.schema.json",
|
|
4
|
+
"title": "mustflow run receipt",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_version",
|
|
9
|
+
"command",
|
|
10
|
+
"intent",
|
|
11
|
+
"status",
|
|
12
|
+
"timed_out",
|
|
13
|
+
"started_at",
|
|
14
|
+
"finished_at",
|
|
15
|
+
"duration_ms",
|
|
16
|
+
"cwd",
|
|
17
|
+
"lifecycle",
|
|
18
|
+
"run_policy",
|
|
19
|
+
"mode",
|
|
20
|
+
"timeout_seconds",
|
|
21
|
+
"max_output_bytes",
|
|
22
|
+
"success_exit_codes",
|
|
23
|
+
"exit_code",
|
|
24
|
+
"signal",
|
|
25
|
+
"error",
|
|
26
|
+
"kill_method",
|
|
27
|
+
"stdout",
|
|
28
|
+
"stderr",
|
|
29
|
+
"receipt_path"
|
|
30
|
+
],
|
|
31
|
+
"properties": {
|
|
32
|
+
"schema_version": { "const": "1" },
|
|
33
|
+
"command": { "const": "run" },
|
|
34
|
+
"intent": { "type": "string" },
|
|
35
|
+
"status": { "enum": ["passed", "failed", "timed_out", "start_failed"] },
|
|
36
|
+
"timed_out": { "type": "boolean" },
|
|
37
|
+
"started_at": { "type": "string", "format": "date-time" },
|
|
38
|
+
"finished_at": { "type": "string", "format": "date-time" },
|
|
39
|
+
"duration_ms": { "type": "integer" },
|
|
40
|
+
"cwd": { "type": "string" },
|
|
41
|
+
"lifecycle": { "type": "string" },
|
|
42
|
+
"run_policy": { "type": "string" },
|
|
43
|
+
"mode": { "enum": ["argv", "shell"] },
|
|
44
|
+
"argv": {
|
|
45
|
+
"type": "array",
|
|
46
|
+
"items": { "type": "string" }
|
|
47
|
+
},
|
|
48
|
+
"cmd": { "type": "string" },
|
|
49
|
+
"timeout_seconds": { "type": "integer" },
|
|
50
|
+
"max_output_bytes": { "type": "integer" },
|
|
51
|
+
"success_exit_codes": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": { "type": "integer" }
|
|
54
|
+
},
|
|
55
|
+
"exit_code": { "type": ["integer", "null"] },
|
|
56
|
+
"signal": { "type": ["string", "null"] },
|
|
57
|
+
"error": { "type": ["string", "null"] },
|
|
58
|
+
"kill_method": { "type": ["string", "null"] },
|
|
59
|
+
"stdout": { "$ref": "#/$defs/output" },
|
|
60
|
+
"stderr": { "$ref": "#/$defs/output" },
|
|
61
|
+
"receipt_path": { "type": "string" }
|
|
62
|
+
},
|
|
63
|
+
"$defs": {
|
|
64
|
+
"output": {
|
|
65
|
+
"type": "object",
|
|
66
|
+
"additionalProperties": false,
|
|
67
|
+
"required": ["bytes", "truncated", "tail"],
|
|
68
|
+
"properties": {
|
|
69
|
+
"bytes": { "type": "integer" },
|
|
70
|
+
"truncated": { "type": "boolean" },
|
|
71
|
+
"tail": { "type": "string" }
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://mustflow.github.io/schemas/verify-report.schema.json",
|
|
4
|
+
"title": "mustflow verify report",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_version",
|
|
9
|
+
"command",
|
|
10
|
+
"mustflow_root",
|
|
11
|
+
"reason",
|
|
12
|
+
"reasons",
|
|
13
|
+
"plan_source",
|
|
14
|
+
"status",
|
|
15
|
+
"summary",
|
|
16
|
+
"results"
|
|
17
|
+
],
|
|
18
|
+
"properties": {
|
|
19
|
+
"schema_version": { "const": "1" },
|
|
20
|
+
"command": { "const": "verify" },
|
|
21
|
+
"mustflow_root": { "type": "string" },
|
|
22
|
+
"reason": { "type": "string" },
|
|
23
|
+
"reasons": {
|
|
24
|
+
"type": "array",
|
|
25
|
+
"items": { "type": "string" }
|
|
26
|
+
},
|
|
27
|
+
"plan_source": { "type": ["string", "null"] },
|
|
28
|
+
"status": { "enum": ["passed", "partial", "failed", "blocked"] },
|
|
29
|
+
"summary": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"additionalProperties": false,
|
|
32
|
+
"required": ["matched", "ran", "passed", "failed", "skipped"],
|
|
33
|
+
"properties": {
|
|
34
|
+
"matched": { "type": "integer" },
|
|
35
|
+
"ran": { "type": "integer" },
|
|
36
|
+
"passed": { "type": "integer" },
|
|
37
|
+
"failed": { "type": "integer" },
|
|
38
|
+
"skipped": { "type": "integer" }
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"results": {
|
|
42
|
+
"type": "array",
|
|
43
|
+
"items": {
|
|
44
|
+
"type": "object",
|
|
45
|
+
"additionalProperties": false,
|
|
46
|
+
"required": [
|
|
47
|
+
"intent",
|
|
48
|
+
"status",
|
|
49
|
+
"skipped",
|
|
50
|
+
"reason",
|
|
51
|
+
"detail",
|
|
52
|
+
"exit_code",
|
|
53
|
+
"receipt"
|
|
54
|
+
],
|
|
55
|
+
"properties": {
|
|
56
|
+
"intent": { "type": ["string", "null"] },
|
|
57
|
+
"status": { "enum": ["passed", "failed", "timed_out", "start_failed", "skipped"] },
|
|
58
|
+
"skipped": { "type": "boolean" },
|
|
59
|
+
"reason": { "type": ["string", "null"] },
|
|
60
|
+
"detail": { "type": ["string", "null"] },
|
|
61
|
+
"exit_code": { "type": ["integer", "null"] },
|
|
62
|
+
"receipt": { "type": ["object", "null"] }
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://mustflow.github.io/schemas/version-sources-report.schema.json",
|
|
4
|
+
"title": "mustflow version sources report",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_version",
|
|
9
|
+
"command",
|
|
10
|
+
"mustflow_root",
|
|
11
|
+
"versioning_enabled",
|
|
12
|
+
"sources"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"schema_version": { "const": "1" },
|
|
16
|
+
"command": { "const": "version-sources" },
|
|
17
|
+
"mustflow_root": { "type": "string" },
|
|
18
|
+
"versioning_enabled": { "type": "boolean" },
|
|
19
|
+
"sources": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"additionalProperties": false,
|
|
24
|
+
"required": ["path", "kind"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"path": { "type": "string" },
|
|
27
|
+
"kind": {
|
|
28
|
+
"enum": [
|
|
29
|
+
"template_lock",
|
|
30
|
+
"template_manifest",
|
|
31
|
+
"package_manifest"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"declared": { "type": "boolean" },
|
|
35
|
+
"authority": {
|
|
36
|
+
"enum": ["source", "derived"]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
schema_version = "1"
|
|
2
|
+
|
|
3
|
+
# This file is the command-intent contract that prevents agents from guessing commands.
|
|
4
|
+
# mf run executes only configured + oneshot + agent_allowed + closed stdin + explicit timeout + declared command intents.
|
|
5
|
+
# cwd must stay inside the current mustflow root.
|
|
6
|
+
|
|
7
|
+
[defaults]
|
|
8
|
+
missing_behavior = "do_not_guess"
|
|
9
|
+
allow_inferred_commands = false
|
|
10
|
+
require_lifecycle = true
|
|
11
|
+
require_timeout_for_oneshot = true
|
|
12
|
+
deny_unmanaged_long_running = true
|
|
13
|
+
default_cwd = "."
|
|
14
|
+
default_timeout_seconds = 600
|
|
15
|
+
stdin = "closed"
|
|
16
|
+
max_output_bytes = 1048576
|
|
17
|
+
on_timeout = "terminate_process_tree"
|
|
18
|
+
kill_after_seconds = 5
|
|
19
|
+
|
|
20
|
+
[intents.test]
|
|
21
|
+
status = "unknown"
|
|
22
|
+
description = "Run the test suite."
|
|
23
|
+
reason = "This repository has not declared its test command yet."
|
|
24
|
+
agent_action = "do_not_guess_report_missing"
|
|
25
|
+
required_after = ["code_change", "behavior_change"]
|
|
26
|
+
|
|
27
|
+
[intents.test_related]
|
|
28
|
+
status = "unknown"
|
|
29
|
+
description = "Run tests directly related to changed files."
|
|
30
|
+
reason = "This repository has not declared its related-test command yet."
|
|
31
|
+
agent_action = "do_not_guess_report_missing"
|
|
32
|
+
required_after = ["code_change", "behavior_change", "test_change"]
|
|
33
|
+
|
|
34
|
+
[intents.test_fast]
|
|
35
|
+
status = "unknown"
|
|
36
|
+
description = "Run the fast test baseline."
|
|
37
|
+
reason = "This repository has not declared its fast-test command yet."
|
|
38
|
+
agent_action = "do_not_guess_report_missing"
|
|
39
|
+
required_after = ["low_risk_code_change", "copy_change", "i18n_change"]
|
|
40
|
+
|
|
41
|
+
[intents.test_coverage]
|
|
42
|
+
status = "manual_only"
|
|
43
|
+
description = "Inspect test coverage information."
|
|
44
|
+
reason = "Coverage runs may be slow or require repository-specific interpretation."
|
|
45
|
+
agent_action = "do_not_run_report_manual"
|
|
46
|
+
required_after = ["test_policy_change", "coverage_request"]
|
|
47
|
+
|
|
48
|
+
[intents.test_audit]
|
|
49
|
+
status = "unknown"
|
|
50
|
+
description = "Inspect stale or redundant test candidates."
|
|
51
|
+
reason = "This repository has not declared its test-audit command yet."
|
|
52
|
+
agent_action = "do_not_guess_report_missing"
|
|
53
|
+
required_after = ["test_change", "behavior_removed", "public_api_change"]
|
|
54
|
+
|
|
55
|
+
[intents.test_release]
|
|
56
|
+
status = "unknown"
|
|
57
|
+
description = "Run release-sensitive package metadata and packaging tests."
|
|
58
|
+
reason = "This repository has not declared its release-test command yet."
|
|
59
|
+
agent_action = "do_not_guess_report_missing"
|
|
60
|
+
required_after = ["package_metadata_change", "template_version_change", "packaging_change"]
|
|
61
|
+
|
|
62
|
+
[intents.snapshot_update]
|
|
63
|
+
status = "manual_only"
|
|
64
|
+
description = "Update snapshot test baselines."
|
|
65
|
+
reason = "Snapshot updates can hide unintended output changes and require explicit review."
|
|
66
|
+
agent_action = "do_not_update_snapshots_without_approval"
|
|
67
|
+
required_after = ["snapshot_change", "user_approved_snapshot_update"]
|
|
68
|
+
|
|
69
|
+
[intents.asset_optimize]
|
|
70
|
+
status = "unknown"
|
|
71
|
+
description = "Optimize web image assets with the repository's declared image pipeline."
|
|
72
|
+
reason = "No image optimization command has been declared for this repository."
|
|
73
|
+
agent_action = "do_not_guess_report_missing"
|
|
74
|
+
required_after = ["image_asset_change", "web_asset_change"]
|
|
75
|
+
|
|
76
|
+
[intents.lint]
|
|
77
|
+
status = "unknown"
|
|
78
|
+
description = "Run linting or static analysis."
|
|
79
|
+
reason = "This repository has not declared its lint command yet."
|
|
80
|
+
agent_action = "do_not_guess_report_missing"
|
|
81
|
+
required_after = ["code_change", "style_change"]
|
|
82
|
+
|
|
83
|
+
[intents.line_endings_check]
|
|
84
|
+
status = "configured"
|
|
85
|
+
kind = "mustflow_builtin"
|
|
86
|
+
lifecycle = "oneshot"
|
|
87
|
+
run_policy = "agent_allowed"
|
|
88
|
+
description = "Inspect tracked files for CRLF or mixed line-ending drift."
|
|
89
|
+
argv = ["mf", "line-endings", "check", "--json"]
|
|
90
|
+
cwd = "."
|
|
91
|
+
timeout_seconds = 120
|
|
92
|
+
stdin = "closed"
|
|
93
|
+
success_exit_codes = [0]
|
|
94
|
+
writes = []
|
|
95
|
+
network = false
|
|
96
|
+
destructive = false
|
|
97
|
+
required_after = ["line_ending_warning", "formatting_change"]
|
|
98
|
+
|
|
99
|
+
[intents.line_endings_normalize]
|
|
100
|
+
status = "manual_only"
|
|
101
|
+
description = "Normalize tracked text files to the repository line-ending policy."
|
|
102
|
+
reason = "Line-ending normalization rewrites tracked files and requires an explicit request."
|
|
103
|
+
agent_action = "do_not_normalize_report_suggestion_only"
|
|
104
|
+
required_after = ["user_requested_line_ending_normalization"]
|
|
105
|
+
|
|
106
|
+
[intents.build]
|
|
107
|
+
status = "unknown"
|
|
108
|
+
description = "Run build or type checks."
|
|
109
|
+
reason = "This repository has not declared its build command yet."
|
|
110
|
+
agent_action = "do_not_guess_report_missing"
|
|
111
|
+
required_after = ["build_config_change", "public_api_change"]
|
|
112
|
+
|
|
113
|
+
[intents.docs_validate]
|
|
114
|
+
status = "unknown"
|
|
115
|
+
description = "Validate full documentation links, examples, generated docs, search index, and sitemap output."
|
|
116
|
+
reason = "This repository has not declared its documentation validation command yet."
|
|
117
|
+
agent_action = "do_not_guess_report_missing"
|
|
118
|
+
required_after = ["docs_site_config_change", "release_risk", "before_publish"]
|
|
119
|
+
|
|
120
|
+
[intents.docs_validate_fast]
|
|
121
|
+
status = "unknown"
|
|
122
|
+
description = "Validate documentation navigation and localized content links without a full static build."
|
|
123
|
+
reason = "This repository has not declared its fast documentation validation command yet."
|
|
124
|
+
agent_action = "do_not_guess_report_missing"
|
|
125
|
+
required_after = ["docs_change", "copy_change", "i18n_change"]
|
|
126
|
+
|
|
127
|
+
[intents.mustflow_doctor]
|
|
128
|
+
status = "configured"
|
|
129
|
+
kind = "mustflow_builtin"
|
|
130
|
+
lifecycle = "oneshot"
|
|
131
|
+
run_policy = "agent_allowed"
|
|
132
|
+
description = "Diagnose the mustflow root state, check result, and next steps read-only."
|
|
133
|
+
argv = ["mf", "doctor", "--json"]
|
|
134
|
+
cwd = "."
|
|
135
|
+
timeout_seconds = 300
|
|
136
|
+
stdin = "closed"
|
|
137
|
+
success_exit_codes = [0]
|
|
138
|
+
writes = []
|
|
139
|
+
network = false
|
|
140
|
+
destructive = false
|
|
141
|
+
required_after = ["before_task", "mustflow_config_change", "mustflow_docs_change"]
|
|
142
|
+
|
|
143
|
+
[intents.mustflow_check]
|
|
144
|
+
status = "configured"
|
|
145
|
+
kind = "mustflow_builtin"
|
|
146
|
+
lifecycle = "oneshot"
|
|
147
|
+
run_policy = "agent_allowed"
|
|
148
|
+
description = "Strictly validate the mustflow document flow and configuration files."
|
|
149
|
+
argv = ["mf", "check", "--strict"]
|
|
150
|
+
cwd = "."
|
|
151
|
+
timeout_seconds = 300
|
|
152
|
+
stdin = "closed"
|
|
153
|
+
success_exit_codes = [0]
|
|
154
|
+
writes = []
|
|
155
|
+
network = false
|
|
156
|
+
destructive = false
|
|
157
|
+
required_after = ["mustflow_config_change", "mustflow_docs_change"]
|
|
158
|
+
|
|
159
|
+
[intents.mustflow_update_dry_run]
|
|
160
|
+
status = "configured"
|
|
161
|
+
kind = "mustflow_builtin"
|
|
162
|
+
lifecycle = "oneshot"
|
|
163
|
+
run_policy = "agent_allowed"
|
|
164
|
+
description = "Preview installed mustflow workflow template updates without writing files."
|
|
165
|
+
argv = ["mf", "update", "--dry-run", "--json"]
|
|
166
|
+
cwd = "."
|
|
167
|
+
timeout_seconds = 300
|
|
168
|
+
stdin = "closed"
|
|
169
|
+
success_exit_codes = [0]
|
|
170
|
+
writes = []
|
|
171
|
+
network = false
|
|
172
|
+
destructive = false
|
|
173
|
+
required_after = ["mustflow_config_change", "mustflow_docs_change", "template_update_check"]
|
|
174
|
+
|
|
175
|
+
[intents.mustflow_update_apply]
|
|
176
|
+
status = "configured"
|
|
177
|
+
kind = "mustflow_builtin"
|
|
178
|
+
lifecycle = "oneshot"
|
|
179
|
+
run_policy = "agent_allowed"
|
|
180
|
+
description = "Apply safe installed mustflow workflow template updates after a clean update plan."
|
|
181
|
+
argv = ["mf", "update", "--apply", "--json"]
|
|
182
|
+
cwd = "."
|
|
183
|
+
timeout_seconds = 300
|
|
184
|
+
stdin = "closed"
|
|
185
|
+
success_exit_codes = [0]
|
|
186
|
+
writes = [
|
|
187
|
+
"AGENTS.md",
|
|
188
|
+
".mustflow/config/manifest.lock.toml",
|
|
189
|
+
".mustflow/config/commands.toml",
|
|
190
|
+
".mustflow/config/mustflow.toml",
|
|
191
|
+
".mustflow/config/preferences.toml",
|
|
192
|
+
".mustflow/context/**",
|
|
193
|
+
".mustflow/docs/**",
|
|
194
|
+
".mustflow/skills/**",
|
|
195
|
+
".mustflow/backups/**",
|
|
196
|
+
]
|
|
197
|
+
network = false
|
|
198
|
+
destructive = false
|
|
199
|
+
required_after = ["clean_mustflow_update_plan", "template_update_apply"]
|
|
200
|
+
|
|
201
|
+
[intents.repo_map]
|
|
202
|
+
status = "configured"
|
|
203
|
+
kind = "mustflow_builtin"
|
|
204
|
+
lifecycle = "oneshot"
|
|
205
|
+
run_policy = "agent_allowed"
|
|
206
|
+
description = "Create or refresh the REPO_MAP.md repository navigation map."
|
|
207
|
+
argv = ["mf", "map", "--write"]
|
|
208
|
+
cwd = "."
|
|
209
|
+
timeout_seconds = 300
|
|
210
|
+
stdin = "closed"
|
|
211
|
+
success_exit_codes = [0]
|
|
212
|
+
writes = ["REPO_MAP.md"]
|
|
213
|
+
network = false
|
|
214
|
+
destructive = false
|
|
215
|
+
required_after = ["structure_change", "directory_change"]
|
|
216
|
+
|
|
217
|
+
[intents.changes_status]
|
|
218
|
+
status = "configured"
|
|
219
|
+
lifecycle = "oneshot"
|
|
220
|
+
run_policy = "agent_allowed"
|
|
221
|
+
description = "Inspect changed files in the Git working tree read-only."
|
|
222
|
+
argv = ["git", "status", "--short"]
|
|
223
|
+
cwd = "."
|
|
224
|
+
timeout_seconds = 120
|
|
225
|
+
stdin = "closed"
|
|
226
|
+
success_exit_codes = [0]
|
|
227
|
+
writes = []
|
|
228
|
+
network = false
|
|
229
|
+
destructive = false
|
|
230
|
+
required_after = ["before_final_report", "commit_message_suggestion"]
|
|
231
|
+
|
|
232
|
+
[intents.changes_diff_summary]
|
|
233
|
+
status = "configured"
|
|
234
|
+
lifecycle = "oneshot"
|
|
235
|
+
run_policy = "agent_allowed"
|
|
236
|
+
description = "Inspect a read-only summary of Git changes."
|
|
237
|
+
argv = ["git", "diff", "--stat"]
|
|
238
|
+
cwd = "."
|
|
239
|
+
timeout_seconds = 120
|
|
240
|
+
stdin = "closed"
|
|
241
|
+
success_exit_codes = [0]
|
|
242
|
+
writes = []
|
|
243
|
+
network = false
|
|
244
|
+
destructive = false
|
|
245
|
+
required_after = ["before_final_report", "commit_message_suggestion"]
|
|
246
|
+
|
|
247
|
+
[intents.git_commit]
|
|
248
|
+
status = "manual_only"
|
|
249
|
+
description = "Create a Git commit."
|
|
250
|
+
reason = "Creating a commit requires explicit user approval."
|
|
251
|
+
agent_action = "do_not_commit_report_suggestion_only"
|