mustflow 2.84.0 → 2.85.4
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 +11 -2
- package/dist/cli/commands/script-pack.js +4 -0
- package/dist/cli/i18n/en.js +79 -0
- package/dist/cli/i18n/es.js +79 -0
- package/dist/cli/i18n/fr.js +79 -0
- package/dist/cli/i18n/hi.js +79 -0
- package/dist/cli/i18n/ko.js +79 -0
- package/dist/cli/i18n/zh.js +79 -0
- package/dist/cli/lib/repo-map.js +27 -6
- package/dist/cli/lib/run-root-trust.js +15 -1
- package/dist/cli/lib/script-pack-registry.js +114 -0
- package/dist/cli/lib/validation/index.js +2 -2
- package/dist/cli/lib/validation/primitives.js +4 -1
- package/dist/cli/script-packs/code-change-impact.js +172 -0
- package/dist/cli/script-packs/code-dependency-graph.js +181 -0
- package/dist/cli/script-packs/repo-env-contract.js +156 -0
- package/dist/cli/script-packs/repo-secret-risk-scan.js +147 -0
- package/dist/core/change-impact.js +383 -0
- package/dist/core/change-verification.js +32 -5
- package/dist/core/config-loading.js +121 -4
- package/dist/core/dependency-graph.js +490 -0
- package/dist/core/env-contract.js +450 -0
- package/dist/core/line-endings.js +26 -13
- package/dist/core/public-json-contracts.js +51 -0
- package/dist/core/route-outline.js +57 -5
- package/dist/core/script-pack-suggestions.js +21 -1
- package/dist/core/secret-risk-scan.js +440 -0
- package/package.json +1 -1
- package/schemas/README.md +16 -0
- package/schemas/change-impact-report.schema.json +150 -0
- package/schemas/commands.schema.json +12 -0
- package/schemas/dependency-graph-report.schema.json +149 -0
- package/schemas/env-contract-report.schema.json +203 -0
- package/schemas/secret-risk-scan-report.schema.json +152 -0
- package/templates/default/i18n.toml +16 -10
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +7 -2
- package/templates/default/locales/en/.mustflow/skills/architecture-deepening-review/SKILL.md +28 -11
- package/templates/default/locales/en/.mustflow/skills/astro-code-change/SKILL.md +71 -27
- package/templates/default/locales/en/.mustflow/skills/cross-agent-session-reference/SKILL.md +23 -8
- package/templates/default/locales/en/.mustflow/skills/dependency-upgrade-review/SKILL.md +3 -1
- package/templates/default/locales/en/.mustflow/skills/github-contribution-quality-gate/SKILL.md +48 -11
- package/templates/default/locales/en/.mustflow/skills/javascript-code-change/SKILL.md +15 -13
- package/templates/default/locales/en/.mustflow/skills/node-code-change/SKILL.md +16 -14
- package/templates/default/locales/en/.mustflow/skills/routes.toml +15 -9
- package/templates/default/locales/en/.mustflow/skills/security-privacy-review/SKILL.md +3 -1
- package/templates/default/locales/en/.mustflow/skills/test-suite-performance-review/SKILL.md +314 -0
- package/templates/default/locales/en/.mustflow/skills/typescript-code-change/SKILL.md +13 -10
- package/templates/default/manifest.toml +8 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
id = "default"
|
|
2
2
|
name = "default"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.85.4"
|
|
4
4
|
description = "Minimal workflow for LLM agents to read, edit, and verify their work in a repository."
|
|
5
5
|
common_root = "common"
|
|
6
6
|
locales_root = "locales"
|
|
@@ -127,6 +127,7 @@ creates = [
|
|
|
127
127
|
".mustflow/skills/release-publish-change/SKILL.md",
|
|
128
128
|
".mustflow/skills/test-design-guard/SKILL.md",
|
|
129
129
|
".mustflow/skills/test-maintenance/SKILL.md",
|
|
130
|
+
".mustflow/skills/test-suite-performance-review/SKILL.md",
|
|
130
131
|
".mustflow/skills/vertical-slice-tdd/SKILL.md",
|
|
131
132
|
".mustflow/skills/llm-service-ux-review/SKILL.md",
|
|
132
133
|
".mustflow/skills/prompt-contract-quality-review/SKILL.md",
|
|
@@ -337,6 +338,7 @@ minimal = [
|
|
|
337
338
|
"support-surface-advisor",
|
|
338
339
|
"test-design-guard",
|
|
339
340
|
"test-maintenance",
|
|
341
|
+
"test-suite-performance-review",
|
|
340
342
|
"vertical-slice-tdd",
|
|
341
343
|
]
|
|
342
344
|
patterns = [
|
|
@@ -480,6 +482,7 @@ patterns = [
|
|
|
480
482
|
"support-surface-advisor",
|
|
481
483
|
"test-design-guard",
|
|
482
484
|
"test-maintenance",
|
|
485
|
+
"test-suite-performance-review",
|
|
483
486
|
"vertical-slice-tdd",
|
|
484
487
|
]
|
|
485
488
|
oss = [
|
|
@@ -641,6 +644,7 @@ oss = [
|
|
|
641
644
|
"support-surface-advisor",
|
|
642
645
|
"test-design-guard",
|
|
643
646
|
"test-maintenance",
|
|
647
|
+
"test-suite-performance-review",
|
|
644
648
|
"vertical-slice-tdd",
|
|
645
649
|
]
|
|
646
650
|
team = [
|
|
@@ -787,6 +791,7 @@ team = [
|
|
|
787
791
|
"support-surface-advisor",
|
|
788
792
|
"test-design-guard",
|
|
789
793
|
"test-maintenance",
|
|
794
|
+
"test-suite-performance-review",
|
|
790
795
|
"vertical-slice-tdd",
|
|
791
796
|
]
|
|
792
797
|
product = [
|
|
@@ -933,6 +938,7 @@ product = [
|
|
|
933
938
|
"support-surface-advisor",
|
|
934
939
|
"test-design-guard",
|
|
935
940
|
"test-maintenance",
|
|
941
|
+
"test-suite-performance-review",
|
|
936
942
|
"vertical-slice-tdd",
|
|
937
943
|
"ui-quality-gate",
|
|
938
944
|
"visual-review-artifact",
|
|
@@ -1094,6 +1100,7 @@ library = [
|
|
|
1094
1100
|
"support-surface-advisor",
|
|
1095
1101
|
"test-design-guard",
|
|
1096
1102
|
"test-maintenance",
|
|
1103
|
+
"test-suite-performance-review",
|
|
1097
1104
|
"vertical-slice-tdd",
|
|
1098
1105
|
]
|
|
1099
1106
|
|