mustflow 1.18.16 → 1.31.0
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/README.md +28 -8
- package/dist/cli/commands/adapters.js +90 -0
- package/dist/cli/commands/classify.js +3 -4
- package/dist/cli/commands/contract-lint.js +26 -6
- package/dist/cli/commands/dashboard.js +103 -4
- package/dist/cli/commands/explain-verify.js +213 -0
- package/dist/cli/commands/explain.js +48 -4
- package/dist/cli/commands/handoff.js +136 -0
- package/dist/cli/commands/run.js +302 -168
- package/dist/cli/commands/update.js +91 -61
- package/dist/cli/commands/upgrade.js +65 -0
- package/dist/cli/commands/verify.js +304 -139
- package/dist/cli/i18n/en.js +77 -4
- package/dist/cli/i18n/es.js +77 -4
- package/dist/cli/i18n/fr.js +77 -4
- package/dist/cli/i18n/hi.js +77 -4
- package/dist/cli/i18n/ko.js +77 -4
- package/dist/cli/i18n/zh.js +77 -4
- package/dist/cli/index.js +34 -42
- package/dist/cli/lib/command-registry.js +15 -0
- package/dist/cli/lib/dashboard-export.js +775 -0
- package/dist/cli/lib/dashboard-html.js +1 -1
- package/dist/cli/lib/local-index.js +33 -14
- package/dist/cli/lib/reporter.js +6 -0
- package/dist/cli/lib/run-plan.js +239 -0
- package/dist/cli/lib/templates.js +18 -3
- package/dist/cli/lib/update-diff-preview.js +163 -0
- package/dist/cli/lib/validation.js +132 -1
- package/dist/core/adapter-compatibility.js +235 -0
- package/dist/core/bounded-output.js +38 -0
- package/dist/core/change-classification.js +14 -1
- package/dist/core/change-verification.js +246 -5
- package/dist/core/check-issues.js +10 -0
- package/dist/core/command-contract-validation.js +34 -0
- package/dist/core/command-cwd.js +18 -6
- package/dist/core/command-effects.js +13 -0
- package/dist/core/command-env.js +91 -0
- package/dist/core/contract-lint.js +260 -4
- package/dist/core/contract-models.js +172 -0
- package/dist/core/dashboard-verification.js +10 -0
- package/dist/core/doc-review-triage.js +1 -0
- package/dist/core/handoff-record.js +376 -0
- package/dist/core/public-json-contracts.js +23 -0
- package/dist/core/run-performance-history.js +307 -0
- package/dist/core/run-profile.js +87 -0
- package/dist/core/run-receipt.js +217 -11
- package/dist/core/run-write-drift.js +196 -0
- package/dist/core/secret-redaction.js +39 -0
- package/dist/core/skill-route-alignment.js +90 -0
- package/dist/core/source-anchors.js +3 -5
- package/dist/core/test-selection.js +224 -0
- package/dist/core/verification-decision-graph.js +290 -0
- package/dist/core/verification-scheduler.js +96 -2
- package/package.json +3 -1
- package/schemas/README.md +15 -4
- package/schemas/adapter-compatibility-report.schema.json +184 -0
- package/schemas/change-verification-report.schema.json +286 -4
- package/schemas/commands.schema.json +55 -2
- package/schemas/contract-lint-report.schema.json +99 -0
- package/schemas/dashboard-export.schema.json +273 -0
- package/schemas/explain-report.schema.json +267 -2
- package/schemas/handoff-validation-report.schema.json +68 -0
- package/schemas/run-receipt.schema.json +183 -1
- package/templates/default/common/.mustflow/config/commands.toml +3 -1
- package/templates/default/i18n.toml +78 -234
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +7 -3
- package/templates/default/locales/en/.mustflow/skills/architecture-deepening-review/SKILL.md +154 -0
- package/templates/default/locales/en/.mustflow/skills/behavior-preserving-refactor/SKILL.md +8 -3
- package/templates/default/locales/en/.mustflow/skills/code-review/SKILL.md +9 -4
- package/templates/default/locales/en/.mustflow/skills/date-number-audit/SKILL.md +19 -4
- package/templates/default/locales/en/.mustflow/skills/diff-risk-review/SKILL.md +4 -2
- package/templates/default/locales/en/.mustflow/skills/external-skill-intake/SKILL.md +141 -0
- package/templates/default/locales/en/.mustflow/skills/release-notes-authoring/SKILL.md +143 -0
- package/templates/default/locales/en/.mustflow/skills/repro-first-debug/SKILL.md +22 -8
- package/templates/default/locales/en/.mustflow/skills/skill-authoring/SKILL.md +3 -3
- package/templates/default/locales/en/.mustflow/skills/source-freshness-check/SKILL.md +22 -9
- package/templates/default/locales/en/.mustflow/skills/ui-quality-gate/SKILL.md +21 -13
- package/templates/default/locales/en/.mustflow/skills/vertical-slice-tdd/SKILL.md +167 -0
- package/templates/default/manifest.toml +16 -1
- package/templates/default/locales/es/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/es/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/es/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/es/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/es/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/es/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/es/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/es/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/es/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/es/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/es/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/es/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/es/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/es/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/es/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/es/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/es/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/es/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/es/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/es/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/es/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/es/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/es/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/es/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/es/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/es/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/es/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/es/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/es/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/es/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/es/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/es/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/es/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/es/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/es/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/es/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/es/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/es/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/fr/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/fr/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/fr/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/fr/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/fr/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/fr/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/fr/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/fr/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/fr/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/fr/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/fr/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/fr/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/fr/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/fr/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/fr/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/fr/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/fr/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/fr/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/fr/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/fr/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/fr/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/fr/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/fr/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/fr/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/fr/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/fr/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/fr/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/fr/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/fr/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/fr/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/fr/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/fr/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/fr/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/fr/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/fr/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/fr/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/fr/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/fr/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/hi/.mustflow/skills/INDEX.md +0 -75
- package/templates/default/locales/hi/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/hi/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/hi/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/hi/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/hi/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/hi/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/hi/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/hi/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/hi/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/hi/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/hi/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/hi/.mustflow/skills/failure-triage/SKILL.md +0 -97
- package/templates/default/locales/hi/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/hi/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/hi/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/hi/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/hi/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/hi/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/hi/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/hi/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/hi/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/hi/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/hi/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/hi/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/hi/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/hi/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/hi/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/hi/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/hi/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/hi/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/hi/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/hi/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/hi/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/hi/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/hi/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/hi/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/hi/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/ko/.mustflow/skills/INDEX.md +0 -80
- package/templates/default/locales/ko/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/ko/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/ko/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/ko/.mustflow/skills/code-review/SKILL.md +0 -118
- package/templates/default/locales/ko/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/ko/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/ko/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/ko/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/ko/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/ko/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/ko/.mustflow/skills/docs-update/SKILL.md +0 -107
- package/templates/default/locales/ko/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/ko/.mustflow/skills/failure-triage/SKILL.md +0 -119
- package/templates/default/locales/ko/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/ko/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/ko/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/ko/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -259
- package/templates/default/locales/ko/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/ko/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/ko/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/ko/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/ko/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/ko/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/ko/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/ko/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/ko/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/ko/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/ko/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/ko/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/ko/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/ko/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/ko/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/ko/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/ko/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/ko/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/ko/.mustflow/skills/test-maintenance/SKILL.md +0 -130
- package/templates/default/locales/ko/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/ko/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
- package/templates/default/locales/zh/.mustflow/skills/INDEX.md +0 -74
- package/templates/default/locales/zh/.mustflow/skills/adapter-boundary/SKILL.md +0 -193
- package/templates/default/locales/zh/.mustflow/skills/artifact-integrity-check/SKILL.md +0 -114
- package/templates/default/locales/zh/.mustflow/skills/behavior-preserving-refactor/SKILL.md +0 -182
- package/templates/default/locales/zh/.mustflow/skills/code-review/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/codebase-orientation/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/command-pattern/SKILL.md +0 -247
- package/templates/default/locales/zh/.mustflow/skills/composition-over-inheritance/SKILL.md +0 -176
- package/templates/default/locales/zh/.mustflow/skills/contract-sync-check/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/database-change-safety/SKILL.md +0 -155
- package/templates/default/locales/zh/.mustflow/skills/date-number-audit/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/dependency-injection/SKILL.md +0 -161
- package/templates/default/locales/zh/.mustflow/skills/dependency-reality-check/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/diff-risk-review/SKILL.md +0 -136
- package/templates/default/locales/zh/.mustflow/skills/docs-prose-review/SKILL.md +0 -119
- package/templates/default/locales/zh/.mustflow/skills/docs-update/SKILL.md +0 -97
- package/templates/default/locales/zh/.mustflow/skills/external-prompt-injection-defense/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/facade-pattern/SKILL.md +0 -210
- package/templates/default/locales/zh/.mustflow/skills/failure-triage/SKILL.md +0 -96
- package/templates/default/locales/zh/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +0 -118
- package/templates/default/locales/zh/.mustflow/skills/line-ending-hygiene/SKILL.md +0 -111
- package/templates/default/locales/zh/.mustflow/skills/migration-safety-check/SKILL.md +0 -117
- package/templates/default/locales/zh/.mustflow/skills/multi-agent-work-coordination/SKILL.md +0 -260
- package/templates/default/locales/zh/.mustflow/skills/null-object-pattern/SKILL.md +0 -196
- package/templates/default/locales/zh/.mustflow/skills/pattern-scout/SKILL.md +0 -110
- package/templates/default/locales/zh/.mustflow/skills/performance-budget-check/SKILL.md +0 -121
- package/templates/default/locales/zh/.mustflow/skills/project-context-authoring/SKILL.md +0 -107
- package/templates/default/locales/zh/.mustflow/skills/pure-core-imperative-shell/SKILL.md +0 -212
- package/templates/default/locales/zh/.mustflow/skills/readme-authoring/SKILL.md +0 -115
- package/templates/default/locales/zh/.mustflow/skills/repo-improvement-loop/SKILL.md +0 -150
- package/templates/default/locales/zh/.mustflow/skills/repro-first-debug/SKILL.md +0 -112
- package/templates/default/locales/zh/.mustflow/skills/requirement-regression-guard/SKILL.md +0 -152
- package/templates/default/locales/zh/.mustflow/skills/result-option/SKILL.md +0 -186
- package/templates/default/locales/zh/.mustflow/skills/security-privacy-review/SKILL.md +0 -116
- package/templates/default/locales/zh/.mustflow/skills/security-regression-tests/SKILL.md +0 -131
- package/templates/default/locales/zh/.mustflow/skills/skill-authoring/SKILL.md +0 -110
- package/templates/default/locales/zh/.mustflow/skills/source-freshness-check/SKILL.md +0 -111
- package/templates/default/locales/zh/.mustflow/skills/state-machine-pattern/SKILL.md +0 -214
- package/templates/default/locales/zh/.mustflow/skills/strategy-pattern/SKILL.md +0 -215
- package/templates/default/locales/zh/.mustflow/skills/structure-discovery-gate/SKILL.md +0 -159
- package/templates/default/locales/zh/.mustflow/skills/test-design-guard/SKILL.md +0 -162
- package/templates/default/locales/zh/.mustflow/skills/test-maintenance/SKILL.md +0 -122
- package/templates/default/locales/zh/.mustflow/skills/ui-quality-gate/SKILL.md +0 -117
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/SKILL.md +0 -127
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/assets/review-template.html +0 -286
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/resources.toml +0 -7
- package/templates/default/locales/zh/.mustflow/skills/web-asset-optimization/SKILL.md +0 -108
|
@@ -56,448 +56,292 @@ translations = {}
|
|
|
56
56
|
[documents."skills.index"]
|
|
57
57
|
source = "locales/en/.mustflow/skills/INDEX.md"
|
|
58
58
|
source_locale = "en"
|
|
59
|
-
revision =
|
|
60
|
-
translations
|
|
61
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/INDEX.md", source_revision = 45, status = "needs_review" }
|
|
62
|
-
translations.es = { path = "locales/es/.mustflow/skills/INDEX.md", source_revision = 45, status = "needs_review" }
|
|
63
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/INDEX.md", source_revision = 45, status = "needs_review" }
|
|
64
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/INDEX.md", source_revision = 45, status = "needs_review" }
|
|
59
|
+
revision = 50
|
|
60
|
+
translations = {}
|
|
65
61
|
|
|
66
62
|
[documents."skill.adapter-boundary"]
|
|
67
63
|
source = "locales/en/.mustflow/skills/adapter-boundary/SKILL.md"
|
|
68
64
|
source_locale = "en"
|
|
69
65
|
revision = 3
|
|
70
|
-
translations
|
|
71
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/adapter-boundary/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
72
|
-
translations.es = { path = "locales/es/.mustflow/skills/adapter-boundary/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
73
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/adapter-boundary/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
74
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/adapter-boundary/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
66
|
+
translations = {}
|
|
75
67
|
|
|
76
68
|
[documents."skill.artifact-integrity-check"]
|
|
77
69
|
source = "locales/en/.mustflow/skills/artifact-integrity-check/SKILL.md"
|
|
78
70
|
source_locale = "en"
|
|
79
71
|
revision = 5
|
|
80
|
-
translations
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
72
|
+
translations = {}
|
|
73
|
+
|
|
74
|
+
[documents."skill.architecture-deepening-review"]
|
|
75
|
+
source = "locales/en/.mustflow/skills/architecture-deepening-review/SKILL.md"
|
|
76
|
+
source_locale = "en"
|
|
77
|
+
revision = 1
|
|
78
|
+
translations = {}
|
|
85
79
|
|
|
86
80
|
[documents."skill.behavior-preserving-refactor"]
|
|
87
81
|
source = "locales/en/.mustflow/skills/behavior-preserving-refactor/SKILL.md"
|
|
88
82
|
source_locale = "en"
|
|
89
|
-
revision =
|
|
90
|
-
translations
|
|
91
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/behavior-preserving-refactor/SKILL.md", source_revision = 11, status = "needs_review" }
|
|
92
|
-
translations.es = { path = "locales/es/.mustflow/skills/behavior-preserving-refactor/SKILL.md", source_revision = 11, status = "needs_review" }
|
|
93
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/behavior-preserving-refactor/SKILL.md", source_revision = 11, status = "needs_review" }
|
|
94
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/behavior-preserving-refactor/SKILL.md", source_revision = 11, status = "needs_review" }
|
|
83
|
+
revision = 12
|
|
84
|
+
translations = {}
|
|
95
85
|
|
|
96
86
|
[documents."skill.code-review"]
|
|
97
87
|
source = "locales/en/.mustflow/skills/code-review/SKILL.md"
|
|
98
88
|
source_locale = "en"
|
|
99
|
-
revision =
|
|
100
|
-
translations
|
|
101
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/code-review/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
102
|
-
translations.es = { path = "locales/es/.mustflow/skills/code-review/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
103
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/code-review/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
104
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/code-review/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
89
|
+
revision = 5
|
|
90
|
+
translations = {}
|
|
105
91
|
|
|
106
92
|
[documents."skill.contract-sync-check"]
|
|
107
93
|
source = "locales/en/.mustflow/skills/contract-sync-check/SKILL.md"
|
|
108
94
|
source_locale = "en"
|
|
109
95
|
revision = 1
|
|
110
|
-
translations
|
|
111
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/contract-sync-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
112
|
-
translations.es = { path = "locales/es/.mustflow/skills/contract-sync-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
113
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/contract-sync-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
114
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/contract-sync-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
96
|
+
translations = {}
|
|
115
97
|
|
|
116
98
|
[documents."skill.date-number-audit"]
|
|
117
99
|
source = "locales/en/.mustflow/skills/date-number-audit/SKILL.md"
|
|
118
100
|
source_locale = "en"
|
|
119
|
-
revision =
|
|
120
|
-
translations
|
|
121
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/date-number-audit/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
122
|
-
translations.es = { path = "locales/es/.mustflow/skills/date-number-audit/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
123
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/date-number-audit/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
124
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/date-number-audit/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
101
|
+
revision = 2
|
|
102
|
+
translations = {}
|
|
125
103
|
|
|
126
104
|
[documents."skill.database-change-safety"]
|
|
127
105
|
source = "locales/en/.mustflow/skills/database-change-safety/SKILL.md"
|
|
128
106
|
source_locale = "en"
|
|
129
107
|
revision = 1
|
|
130
|
-
translations
|
|
131
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/database-change-safety/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
132
|
-
translations.es = { path = "locales/es/.mustflow/skills/database-change-safety/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
133
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/database-change-safety/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
134
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/database-change-safety/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
108
|
+
translations = {}
|
|
135
109
|
|
|
136
110
|
[documents."skill.dependency-injection"]
|
|
137
111
|
source = "locales/en/.mustflow/skills/dependency-injection/SKILL.md"
|
|
138
112
|
source_locale = "en"
|
|
139
113
|
revision = 3
|
|
140
|
-
translations
|
|
141
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/dependency-injection/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
142
|
-
translations.es = { path = "locales/es/.mustflow/skills/dependency-injection/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
143
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/dependency-injection/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
144
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/dependency-injection/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
114
|
+
translations = {}
|
|
145
115
|
|
|
146
116
|
[documents."skill.dependency-reality-check"]
|
|
147
117
|
source = "locales/en/.mustflow/skills/dependency-reality-check/SKILL.md"
|
|
148
118
|
source_locale = "en"
|
|
149
119
|
revision = 1
|
|
150
|
-
translations
|
|
151
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/dependency-reality-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
152
|
-
translations.es = { path = "locales/es/.mustflow/skills/dependency-reality-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
153
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/dependency-reality-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
154
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/dependency-reality-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
120
|
+
translations = {}
|
|
155
121
|
|
|
156
122
|
[documents."skill.line-ending-hygiene"]
|
|
157
123
|
source = "locales/en/.mustflow/skills/line-ending-hygiene/SKILL.md"
|
|
158
124
|
source_locale = "en"
|
|
159
125
|
revision = 1
|
|
160
|
-
translations
|
|
161
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/line-ending-hygiene/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
162
|
-
translations.es = { path = "locales/es/.mustflow/skills/line-ending-hygiene/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
163
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/line-ending-hygiene/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
164
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/line-ending-hygiene/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
126
|
+
translations = {}
|
|
165
127
|
|
|
166
128
|
[documents."skill.diff-risk-review"]
|
|
167
129
|
source = "locales/en/.mustflow/skills/diff-risk-review/SKILL.md"
|
|
168
130
|
source_locale = "en"
|
|
169
|
-
revision =
|
|
170
|
-
translations
|
|
171
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/diff-risk-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
172
|
-
translations.es = { path = "locales/es/.mustflow/skills/diff-risk-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
173
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/diff-risk-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
174
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/diff-risk-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
131
|
+
revision = 3
|
|
132
|
+
translations = {}
|
|
175
133
|
|
|
176
134
|
[documents."skill.codebase-orientation"]
|
|
177
135
|
source = "locales/en/.mustflow/skills/codebase-orientation/SKILL.md"
|
|
178
136
|
source_locale = "en"
|
|
179
137
|
revision = 1
|
|
180
|
-
translations
|
|
181
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/codebase-orientation/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
182
|
-
translations.es = { path = "locales/es/.mustflow/skills/codebase-orientation/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
183
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/codebase-orientation/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
184
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/codebase-orientation/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
138
|
+
translations = {}
|
|
185
139
|
|
|
186
140
|
[documents."skill.composition-over-inheritance"]
|
|
187
141
|
source = "locales/en/.mustflow/skills/composition-over-inheritance/SKILL.md"
|
|
188
142
|
source_locale = "en"
|
|
189
143
|
revision = 4
|
|
190
|
-
translations
|
|
191
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/composition-over-inheritance/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
192
|
-
translations.es = { path = "locales/es/.mustflow/skills/composition-over-inheritance/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
193
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/composition-over-inheritance/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
194
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/composition-over-inheritance/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
144
|
+
translations = {}
|
|
195
145
|
|
|
196
146
|
[documents."skill.command-pattern"]
|
|
197
147
|
source = "locales/en/.mustflow/skills/command-pattern/SKILL.md"
|
|
198
148
|
source_locale = "en"
|
|
199
149
|
revision = 4
|
|
200
|
-
translations
|
|
201
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/command-pattern/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
202
|
-
translations.es = { path = "locales/es/.mustflow/skills/command-pattern/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
203
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/command-pattern/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
204
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/command-pattern/SKILL.md", source_revision = 4, status = "needs_review" }
|
|
150
|
+
translations = {}
|
|
205
151
|
|
|
206
152
|
[documents."skill.pure-core-imperative-shell"]
|
|
207
153
|
source = "locales/en/.mustflow/skills/pure-core-imperative-shell/SKILL.md"
|
|
208
154
|
source_locale = "en"
|
|
209
155
|
revision = 6
|
|
210
|
-
translations
|
|
211
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/pure-core-imperative-shell/SKILL.md", source_revision = 6, status = "needs_review" }
|
|
212
|
-
translations.es = { path = "locales/es/.mustflow/skills/pure-core-imperative-shell/SKILL.md", source_revision = 6, status = "needs_review" }
|
|
213
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/pure-core-imperative-shell/SKILL.md", source_revision = 6, status = "needs_review" }
|
|
214
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/pure-core-imperative-shell/SKILL.md", source_revision = 6, status = "needs_review" }
|
|
156
|
+
translations = {}
|
|
215
157
|
|
|
216
158
|
[documents."skill.result-option"]
|
|
217
159
|
source = "locales/en/.mustflow/skills/result-option/SKILL.md"
|
|
218
160
|
source_locale = "en"
|
|
219
161
|
revision = 2
|
|
220
|
-
translations
|
|
221
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/result-option/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
222
|
-
translations.es = { path = "locales/es/.mustflow/skills/result-option/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
223
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/result-option/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
224
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/result-option/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
162
|
+
translations = {}
|
|
225
163
|
|
|
226
164
|
[documents."skill.docs-update"]
|
|
227
165
|
source = "locales/en/.mustflow/skills/docs-update/SKILL.md"
|
|
228
166
|
source_locale = "en"
|
|
229
167
|
revision = 4
|
|
230
|
-
translations
|
|
231
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/docs-update/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
232
|
-
translations.es = { path = "locales/es/.mustflow/skills/docs-update/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
233
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/docs-update/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
234
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/docs-update/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
168
|
+
translations = {}
|
|
235
169
|
|
|
236
170
|
[documents."skill.docs-prose-review"]
|
|
237
171
|
source = "locales/en/.mustflow/skills/docs-prose-review/SKILL.md"
|
|
238
172
|
source_locale = "en"
|
|
239
173
|
revision = 2
|
|
240
|
-
translations
|
|
241
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/docs-prose-review/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
242
|
-
translations.es = { path = "locales/es/.mustflow/skills/docs-prose-review/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
243
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/docs-prose-review/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
244
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/docs-prose-review/SKILL.md", source_revision = 2, status = "needs_review" }
|
|
174
|
+
translations = {}
|
|
245
175
|
|
|
246
176
|
[documents."skill.failure-triage"]
|
|
247
177
|
source = "locales/en/.mustflow/skills/failure-triage/SKILL.md"
|
|
248
178
|
source_locale = "en"
|
|
249
179
|
revision = 3
|
|
250
|
-
translations
|
|
251
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/failure-triage/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
252
|
-
translations.es = { path = "locales/es/.mustflow/skills/failure-triage/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
253
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/failure-triage/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
254
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/failure-triage/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
180
|
+
translations = {}
|
|
255
181
|
|
|
256
182
|
[documents."skill.external-prompt-injection-defense"]
|
|
257
183
|
source = "locales/en/.mustflow/skills/external-prompt-injection-defense/SKILL.md"
|
|
258
184
|
source_locale = "en"
|
|
259
185
|
revision = 3
|
|
260
|
-
translations
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
186
|
+
translations = {}
|
|
187
|
+
|
|
188
|
+
[documents."skill.external-skill-intake"]
|
|
189
|
+
source = "locales/en/.mustflow/skills/external-skill-intake/SKILL.md"
|
|
190
|
+
source_locale = "en"
|
|
191
|
+
revision = 2
|
|
192
|
+
translations = {}
|
|
265
193
|
|
|
266
194
|
[documents."skill.facade-pattern"]
|
|
267
195
|
source = "locales/en/.mustflow/skills/facade-pattern/SKILL.md"
|
|
268
196
|
source_locale = "en"
|
|
269
197
|
revision = 1
|
|
270
|
-
translations
|
|
271
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/facade-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
272
|
-
translations.es = { path = "locales/es/.mustflow/skills/facade-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
273
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/facade-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
274
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/facade-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
198
|
+
translations = {}
|
|
275
199
|
[documents."skill.instruction-conflict-scope-check"]
|
|
276
200
|
source = "locales/en/.mustflow/skills/instruction-conflict-scope-check/SKILL.md"
|
|
277
201
|
source_locale = "en"
|
|
278
202
|
revision = 1
|
|
279
|
-
translations
|
|
280
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/instruction-conflict-scope-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
281
|
-
translations.es = { path = "locales/es/.mustflow/skills/instruction-conflict-scope-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
282
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/instruction-conflict-scope-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
283
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/instruction-conflict-scope-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
203
|
+
translations = {}
|
|
284
204
|
|
|
285
205
|
[documents."skill.migration-safety-check"]
|
|
286
206
|
source = "locales/en/.mustflow/skills/migration-safety-check/SKILL.md"
|
|
287
207
|
source_locale = "en"
|
|
288
208
|
revision = 1
|
|
289
|
-
translations
|
|
290
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/migration-safety-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
291
|
-
translations.es = { path = "locales/es/.mustflow/skills/migration-safety-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
292
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/migration-safety-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
293
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/migration-safety-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
209
|
+
translations = {}
|
|
294
210
|
|
|
295
211
|
[documents."skill.multi-agent-work-coordination"]
|
|
296
212
|
source = "locales/en/.mustflow/skills/multi-agent-work-coordination/SKILL.md"
|
|
297
213
|
source_locale = "en"
|
|
298
214
|
revision = 1
|
|
299
|
-
translations
|
|
300
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/multi-agent-work-coordination/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
301
|
-
translations.es = { path = "locales/es/.mustflow/skills/multi-agent-work-coordination/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
302
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/multi-agent-work-coordination/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
303
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/multi-agent-work-coordination/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
215
|
+
translations = {}
|
|
304
216
|
|
|
305
217
|
[documents."skill.null-object-pattern"]
|
|
306
218
|
source = "locales/en/.mustflow/skills/null-object-pattern/SKILL.md"
|
|
307
219
|
source_locale = "en"
|
|
308
220
|
revision = 1
|
|
309
|
-
translations
|
|
310
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/null-object-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
311
|
-
translations.es = { path = "locales/es/.mustflow/skills/null-object-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
312
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/null-object-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
313
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/null-object-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
221
|
+
translations = {}
|
|
314
222
|
|
|
315
223
|
[documents."skill.performance-budget-check"]
|
|
316
224
|
source = "locales/en/.mustflow/skills/performance-budget-check/SKILL.md"
|
|
317
225
|
source_locale = "en"
|
|
318
226
|
revision = 1
|
|
319
|
-
translations
|
|
320
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/performance-budget-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
321
|
-
translations.es = { path = "locales/es/.mustflow/skills/performance-budget-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
322
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/performance-budget-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
323
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/performance-budget-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
227
|
+
translations = {}
|
|
324
228
|
|
|
325
229
|
[documents."skill.pattern-scout"]
|
|
326
230
|
source = "locales/en/.mustflow/skills/pattern-scout/SKILL.md"
|
|
327
231
|
source_locale = "en"
|
|
328
232
|
revision = 1
|
|
329
|
-
translations
|
|
330
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/pattern-scout/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
331
|
-
translations.es = { path = "locales/es/.mustflow/skills/pattern-scout/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
332
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/pattern-scout/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
333
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/pattern-scout/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
233
|
+
translations = {}
|
|
334
234
|
|
|
335
235
|
[documents."skill.repo-improvement-loop"]
|
|
336
236
|
source = "locales/en/.mustflow/skills/repo-improvement-loop/SKILL.md"
|
|
337
237
|
source_locale = "en"
|
|
338
238
|
revision = 1
|
|
339
|
-
translations
|
|
340
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/repo-improvement-loop/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
341
|
-
translations.es = { path = "locales/es/.mustflow/skills/repo-improvement-loop/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
342
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/repo-improvement-loop/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
343
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/repo-improvement-loop/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
239
|
+
translations = {}
|
|
344
240
|
|
|
345
241
|
[documents."skill.requirement-regression-guard"]
|
|
346
242
|
source = "locales/en/.mustflow/skills/requirement-regression-guard/SKILL.md"
|
|
347
243
|
source_locale = "en"
|
|
348
244
|
revision = 1
|
|
349
|
-
translations
|
|
350
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/requirement-regression-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
351
|
-
translations.es = { path = "locales/es/.mustflow/skills/requirement-regression-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
352
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/requirement-regression-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
353
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/requirement-regression-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
245
|
+
translations = {}
|
|
354
246
|
|
|
355
247
|
[documents."skill.structure-discovery-gate"]
|
|
356
248
|
source = "locales/en/.mustflow/skills/structure-discovery-gate/SKILL.md"
|
|
357
249
|
source_locale = "en"
|
|
358
250
|
revision = 12
|
|
359
|
-
translations
|
|
360
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/structure-discovery-gate/SKILL.md", source_revision = 12, status = "needs_review" }
|
|
361
|
-
translations.es = { path = "locales/es/.mustflow/skills/structure-discovery-gate/SKILL.md", source_revision = 12, status = "needs_review" }
|
|
362
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/structure-discovery-gate/SKILL.md", source_revision = 12, status = "needs_review" }
|
|
363
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/structure-discovery-gate/SKILL.md", source_revision = 12, status = "needs_review" }
|
|
251
|
+
translations = {}
|
|
364
252
|
|
|
365
253
|
[documents."skill.state-machine-pattern"]
|
|
366
254
|
source = "locales/en/.mustflow/skills/state-machine-pattern/SKILL.md"
|
|
367
255
|
source_locale = "en"
|
|
368
256
|
revision = 1
|
|
369
|
-
translations
|
|
370
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/state-machine-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
371
|
-
translations.es = { path = "locales/es/.mustflow/skills/state-machine-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
372
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/state-machine-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
373
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/state-machine-pattern/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
257
|
+
translations = {}
|
|
374
258
|
|
|
375
259
|
[documents."skill.strategy-pattern"]
|
|
376
260
|
source = "locales/en/.mustflow/skills/strategy-pattern/SKILL.md"
|
|
377
261
|
source_locale = "en"
|
|
378
262
|
revision = 3
|
|
379
|
-
translations
|
|
380
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/strategy-pattern/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
381
|
-
translations.es = { path = "locales/es/.mustflow/skills/strategy-pattern/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
382
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/strategy-pattern/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
383
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/strategy-pattern/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
263
|
+
translations = {}
|
|
384
264
|
|
|
385
265
|
[documents."skill.repro-first-debug"]
|
|
386
266
|
source = "locales/en/.mustflow/skills/repro-first-debug/SKILL.md"
|
|
387
267
|
source_locale = "en"
|
|
388
|
-
revision =
|
|
389
|
-
translations
|
|
390
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/repro-first-debug/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
391
|
-
translations.es = { path = "locales/es/.mustflow/skills/repro-first-debug/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
392
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/repro-first-debug/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
393
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/repro-first-debug/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
268
|
+
revision = 2
|
|
269
|
+
translations = {}
|
|
394
270
|
|
|
395
271
|
[documents."skill.source-freshness-check"]
|
|
396
272
|
source = "locales/en/.mustflow/skills/source-freshness-check/SKILL.md"
|
|
397
273
|
source_locale = "en"
|
|
398
|
-
revision =
|
|
399
|
-
translations
|
|
400
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/source-freshness-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
401
|
-
translations.es = { path = "locales/es/.mustflow/skills/source-freshness-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
402
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/source-freshness-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
403
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/source-freshness-check/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
274
|
+
revision = 2
|
|
275
|
+
translations = {}
|
|
404
276
|
|
|
405
277
|
[documents."skill.project-context-authoring"]
|
|
406
278
|
source = "locales/en/.mustflow/skills/project-context-authoring/SKILL.md"
|
|
407
279
|
source_locale = "en"
|
|
408
280
|
revision = 3
|
|
409
|
-
translations
|
|
410
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/project-context-authoring/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
411
|
-
translations.es = { path = "locales/es/.mustflow/skills/project-context-authoring/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
412
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/project-context-authoring/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
413
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/project-context-authoring/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
281
|
+
translations = {}
|
|
414
282
|
|
|
415
283
|
[documents."skill.readme-authoring"]
|
|
416
284
|
source = "locales/en/.mustflow/skills/readme-authoring/SKILL.md"
|
|
417
285
|
source_locale = "en"
|
|
418
286
|
revision = 1
|
|
419
|
-
translations
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
287
|
+
translations = {}
|
|
288
|
+
|
|
289
|
+
[documents."skill.release-notes-authoring"]
|
|
290
|
+
source = "locales/en/.mustflow/skills/release-notes-authoring/SKILL.md"
|
|
291
|
+
source_locale = "en"
|
|
292
|
+
revision = 1
|
|
293
|
+
translations = {}
|
|
424
294
|
|
|
425
295
|
[documents."skill.security-privacy-review"]
|
|
426
296
|
source = "locales/en/.mustflow/skills/security-privacy-review/SKILL.md"
|
|
427
297
|
source_locale = "en"
|
|
428
298
|
revision = 4
|
|
429
|
-
translations
|
|
430
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/security-privacy-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
431
|
-
translations.es = { path = "locales/es/.mustflow/skills/security-privacy-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
432
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/security-privacy-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
433
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/security-privacy-review/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
299
|
+
translations = {}
|
|
434
300
|
|
|
435
301
|
[documents."skill.security-regression-tests"]
|
|
436
302
|
source = "locales/en/.mustflow/skills/security-regression-tests/SKILL.md"
|
|
437
303
|
source_locale = "en"
|
|
438
304
|
revision = 6
|
|
439
|
-
translations
|
|
440
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/security-regression-tests/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
441
|
-
translations.es = { path = "locales/es/.mustflow/skills/security-regression-tests/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
442
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/security-regression-tests/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
443
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/security-regression-tests/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
305
|
+
translations = {}
|
|
444
306
|
|
|
445
307
|
[documents."skill.skill-authoring"]
|
|
446
308
|
source = "locales/en/.mustflow/skills/skill-authoring/SKILL.md"
|
|
447
309
|
source_locale = "en"
|
|
448
|
-
revision =
|
|
449
|
-
translations
|
|
450
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/skill-authoring/SKILL.md", source_revision = 5, status = "needs_review" }
|
|
451
|
-
translations.es = { path = "locales/es/.mustflow/skills/skill-authoring/SKILL.md", source_revision = 5, status = "needs_review" }
|
|
452
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/skill-authoring/SKILL.md", source_revision = 5, status = "needs_review" }
|
|
453
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/skill-authoring/SKILL.md", source_revision = 5, status = "needs_review" }
|
|
310
|
+
revision = 7
|
|
311
|
+
translations = {}
|
|
454
312
|
|
|
455
313
|
[documents."skill.test-design-guard"]
|
|
456
314
|
source = "locales/en/.mustflow/skills/test-design-guard/SKILL.md"
|
|
457
315
|
source_locale = "en"
|
|
458
316
|
revision = 1
|
|
459
|
-
translations
|
|
460
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/test-design-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
461
|
-
translations.es = { path = "locales/es/.mustflow/skills/test-design-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
462
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/test-design-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
463
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/test-design-guard/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
317
|
+
translations = {}
|
|
464
318
|
|
|
465
319
|
[documents."skill.test-maintenance"]
|
|
466
320
|
source = "locales/en/.mustflow/skills/test-maintenance/SKILL.md"
|
|
467
321
|
source_locale = "en"
|
|
468
322
|
revision = 3
|
|
469
|
-
translations
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
323
|
+
translations = {}
|
|
324
|
+
|
|
325
|
+
[documents."skill.vertical-slice-tdd"]
|
|
326
|
+
source = "locales/en/.mustflow/skills/vertical-slice-tdd/SKILL.md"
|
|
327
|
+
source_locale = "en"
|
|
328
|
+
revision = 1
|
|
329
|
+
translations = {}
|
|
474
330
|
|
|
475
331
|
[documents."skill.ui-quality-gate"]
|
|
476
332
|
source = "locales/en/.mustflow/skills/ui-quality-gate/SKILL.md"
|
|
477
333
|
source_locale = "en"
|
|
478
|
-
revision =
|
|
479
|
-
translations
|
|
480
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/ui-quality-gate/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
481
|
-
translations.es = { path = "locales/es/.mustflow/skills/ui-quality-gate/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
482
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/ui-quality-gate/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
483
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/ui-quality-gate/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
334
|
+
revision = 3
|
|
335
|
+
translations = {}
|
|
484
336
|
|
|
485
337
|
[documents."skill.visual-review-artifact"]
|
|
486
338
|
source = "locales/en/.mustflow/skills/visual-review-artifact/SKILL.md"
|
|
487
339
|
source_locale = "en"
|
|
488
340
|
revision = 1
|
|
489
|
-
translations
|
|
490
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/visual-review-artifact/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
491
|
-
translations.es = { path = "locales/es/.mustflow/skills/visual-review-artifact/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
492
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/visual-review-artifact/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
493
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/visual-review-artifact/SKILL.md", source_revision = 1, status = "needs_review" }
|
|
341
|
+
translations = {}
|
|
494
342
|
|
|
495
343
|
[documents."skill.web-asset-optimization"]
|
|
496
344
|
source = "locales/en/.mustflow/skills/web-asset-optimization/SKILL.md"
|
|
497
345
|
source_locale = "en"
|
|
498
346
|
revision = 3
|
|
499
|
-
translations
|
|
500
|
-
translations.zh = { path = "locales/zh/.mustflow/skills/web-asset-optimization/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
501
|
-
translations.es = { path = "locales/es/.mustflow/skills/web-asset-optimization/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
502
|
-
translations.fr = { path = "locales/fr/.mustflow/skills/web-asset-optimization/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
503
|
-
translations.hi = { path = "locales/hi/.mustflow/skills/web-asset-optimization/SKILL.md", source_revision = 3, status = "needs_review" }
|
|
347
|
+
translations = {}
|