mustflow 2.28.0 → 2.29.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/dist/cli/commands/context.js +1 -0
- package/dist/cli/commands/help.js +55 -1
- package/dist/cli/commands/tech.js +346 -0
- package/dist/cli/i18n/en.js +1 -0
- package/dist/cli/i18n/es.js +1 -0
- package/dist/cli/i18n/fr.js +1 -0
- package/dist/cli/i18n/hi.js +1 -0
- package/dist/cli/i18n/ko.js +1 -0
- package/dist/cli/i18n/zh.js +1 -0
- package/dist/cli/index.js +1 -0
- package/dist/cli/lib/agent-context.js +16 -0
- package/dist/cli/lib/command-registry.js +6 -0
- package/dist/cli/lib/validation/index.js +11 -0
- package/dist/cli/lib/validation/primitives.js +5 -0
- package/dist/core/technology-preferences.js +189 -0
- package/package.json +1 -1
- package/schemas/context-report.schema.json +61 -0
- package/templates/default/common/.mustflow/config/mustflow.toml +8 -0
- package/templates/default/common/.mustflow/config/technology.toml +20 -0
- package/templates/default/i18n.toml +78 -12
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +33 -1
- package/templates/default/locales/en/.mustflow/skills/code-review/SKILL.md +15 -5
- package/templates/default/locales/en/.mustflow/skills/codebase-orientation/SKILL.md +15 -8
- package/templates/default/locales/en/.mustflow/skills/command-intent-mapping-gate/SKILL.md +124 -0
- package/templates/default/locales/en/.mustflow/skills/completion-evidence-gate/SKILL.md +178 -0
- package/templates/default/locales/en/.mustflow/skills/contract-sync-check/SKILL.md +9 -3
- package/templates/default/locales/en/.mustflow/skills/dependency-reality-check/SKILL.md +6 -3
- package/templates/default/locales/en/.mustflow/skills/evidence-stall-breaker/SKILL.md +166 -0
- package/templates/default/locales/en/.mustflow/skills/external-prompt-injection-defense/SKILL.md +8 -6
- package/templates/default/locales/en/.mustflow/skills/provenance-license-gate/SKILL.md +131 -0
- package/templates/default/locales/en/.mustflow/skills/public-json-contract-change/SKILL.md +133 -0
- package/templates/default/locales/en/.mustflow/skills/restricted-handoff-resume/SKILL.md +122 -0
- package/templates/default/locales/en/.mustflow/skills/routes.toml +60 -0
- package/templates/default/locales/en/.mustflow/skills/runtime-target-selection/SKILL.md +203 -0
- package/templates/default/locales/en/.mustflow/skills/rust-code-change/SKILL.md +55 -18
- package/templates/default/locales/en/.mustflow/skills/secret-exposure-response/SKILL.md +125 -0
- package/templates/default/locales/en/.mustflow/skills/security-privacy-review/SKILL.md +10 -1
- package/templates/default/locales/en/.mustflow/skills/skill-authoring/SKILL.md +9 -5
- package/templates/default/locales/en/.mustflow/skills/source-freshness-check/SKILL.md +3 -2
- package/templates/default/locales/en/.mustflow/skills/structure-first-engineering/SKILL.md +205 -0
- package/templates/default/locales/en/.mustflow/skills/template-install-surface-sync/SKILL.md +131 -0
- package/templates/default/locales/en/AGENTS.md +8 -7
- package/templates/default/locales/ko/AGENTS.md +8 -7
- package/templates/default/manifest.toml +66 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
id = "default"
|
|
2
2
|
name = "default"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.29.0"
|
|
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"
|
|
@@ -20,6 +20,9 @@ creates = [
|
|
|
20
20
|
".mustflow/skills/code-review/SKILL.md",
|
|
21
21
|
".mustflow/skills/codebase-orientation/SKILL.md",
|
|
22
22
|
".mustflow/skills/clarifying-question-gate/SKILL.md",
|
|
23
|
+
".mustflow/skills/completion-evidence-gate/SKILL.md",
|
|
24
|
+
".mustflow/skills/evidence-stall-breaker/SKILL.md",
|
|
25
|
+
".mustflow/skills/command-intent-mapping-gate/SKILL.md",
|
|
23
26
|
".mustflow/skills/astro-code-change/SKILL.md",
|
|
24
27
|
".mustflow/skills/bun-code-change/SKILL.md",
|
|
25
28
|
".mustflow/skills/css-code-change/SKILL.md",
|
|
@@ -35,6 +38,8 @@ creates = [
|
|
|
35
38
|
".mustflow/skills/node-code-change/SKILL.md",
|
|
36
39
|
".mustflow/skills/python-code-change/SKILL.md",
|
|
37
40
|
".mustflow/skills/rust-code-change/SKILL.md",
|
|
41
|
+
".mustflow/skills/runtime-target-selection/SKILL.md",
|
|
42
|
+
".mustflow/skills/structure-first-engineering/SKILL.md",
|
|
38
43
|
".mustflow/skills/svelte-code-change/SKILL.md",
|
|
39
44
|
".mustflow/skills/tailwind-code-change/SKILL.md",
|
|
40
45
|
".mustflow/skills/tauri-code-change/SKILL.md",
|
|
@@ -79,7 +84,10 @@ creates = [
|
|
|
79
84
|
".mustflow/skills/performance-budget-check/SKILL.md",
|
|
80
85
|
".mustflow/skills/pattern-scout/SKILL.md",
|
|
81
86
|
".mustflow/skills/process-execution-safety/SKILL.md",
|
|
87
|
+
".mustflow/skills/public-json-contract-change/SKILL.md",
|
|
88
|
+
".mustflow/skills/provenance-license-gate/SKILL.md",
|
|
82
89
|
".mustflow/skills/repo-improvement-loop/SKILL.md",
|
|
90
|
+
".mustflow/skills/restricted-handoff-resume/SKILL.md",
|
|
83
91
|
".mustflow/skills/structure-discovery-gate/SKILL.md",
|
|
84
92
|
".mustflow/skills/readme-authoring/SKILL.md",
|
|
85
93
|
".mustflow/skills/requirement-regression-guard/SKILL.md",
|
|
@@ -93,8 +101,10 @@ creates = [
|
|
|
93
101
|
".mustflow/skills/project-context-authoring/SKILL.md",
|
|
94
102
|
".mustflow/skills/security-privacy-review/SKILL.md",
|
|
95
103
|
".mustflow/skills/security-regression-tests/SKILL.md",
|
|
104
|
+
".mustflow/skills/secret-exposure-response/SKILL.md",
|
|
96
105
|
".mustflow/skills/search-ad-content-authoring/SKILL.md",
|
|
97
106
|
".mustflow/skills/skill-authoring/SKILL.md",
|
|
107
|
+
".mustflow/skills/template-install-surface-sync/SKILL.md",
|
|
98
108
|
".mustflow/skills/visual-review-artifact/SKILL.md",
|
|
99
109
|
".mustflow/skills/visual-review-artifact/resources.toml",
|
|
100
110
|
".mustflow/skills/visual-review-artifact/assets/review-template.html",
|
|
@@ -103,6 +113,7 @@ creates = [
|
|
|
103
113
|
".mustflow/config/mustflow.toml",
|
|
104
114
|
".mustflow/config/commands.toml",
|
|
105
115
|
".mustflow/config/preferences.toml",
|
|
116
|
+
".mustflow/config/technology.toml",
|
|
106
117
|
]
|
|
107
118
|
|
|
108
119
|
runtime_requirements = []
|
|
@@ -113,6 +124,7 @@ after_install = [
|
|
|
113
124
|
"Generate REPO_MAP.md with mf map when a repository map is needed.",
|
|
114
125
|
"Add your test, lint, and build commands to .mustflow/config/commands.toml.",
|
|
115
126
|
"Review repository-specific language and style defaults in .mustflow/config/preferences.toml.",
|
|
127
|
+
"Record preferred frameworks, libraries, runtimes, and tools in .mustflow/config/technology.toml when useful.",
|
|
116
128
|
"Confirm that .mustflow/context/PROJECT.md describes the project goals and non-goals.",
|
|
117
129
|
"Keep only the skills needed for this repository in .mustflow/skills/INDEX.md.",
|
|
118
130
|
"Record any repository-specific workflow differences in .mustflow/docs/agent-workflow.md.",
|
|
@@ -131,6 +143,8 @@ minimal = [
|
|
|
131
143
|
"code-review",
|
|
132
144
|
"codebase-orientation",
|
|
133
145
|
"clarifying-question-gate",
|
|
146
|
+
"completion-evidence-gate",
|
|
147
|
+
"evidence-stall-breaker",
|
|
134
148
|
"astro-code-change",
|
|
135
149
|
"bun-code-change",
|
|
136
150
|
"css-code-change",
|
|
@@ -146,12 +160,14 @@ minimal = [
|
|
|
146
160
|
"node-code-change",
|
|
147
161
|
"python-code-change",
|
|
148
162
|
"rust-code-change",
|
|
163
|
+
"runtime-target-selection",
|
|
149
164
|
"svelte-code-change",
|
|
150
165
|
"tailwind-code-change",
|
|
151
166
|
"tauri-code-change",
|
|
152
167
|
"typescript-code-change",
|
|
153
168
|
"unocss-code-change",
|
|
154
169
|
"command-contract-authoring",
|
|
170
|
+
"command-intent-mapping-gate",
|
|
155
171
|
"config-env-change",
|
|
156
172
|
"contract-sync-check",
|
|
157
173
|
"date-number-audit",
|
|
@@ -168,12 +184,16 @@ minimal = [
|
|
|
168
184
|
"idea-triage",
|
|
169
185
|
"instruction-conflict-scope-check",
|
|
170
186
|
"pattern-scout",
|
|
187
|
+
"provenance-license-gate",
|
|
171
188
|
"requirement-regression-guard",
|
|
189
|
+
"restricted-handoff-resume",
|
|
172
190
|
"repro-first-debug",
|
|
173
191
|
"security-privacy-review",
|
|
192
|
+
"secret-exposure-response",
|
|
174
193
|
"source-anchor-authoring",
|
|
175
194
|
"source-freshness-check",
|
|
176
195
|
"structure-discovery-gate",
|
|
196
|
+
"structure-first-engineering",
|
|
177
197
|
"test-design-guard",
|
|
178
198
|
"test-maintenance",
|
|
179
199
|
"vertical-slice-tdd",
|
|
@@ -187,6 +207,8 @@ patterns = [
|
|
|
187
207
|
"code-review",
|
|
188
208
|
"codebase-orientation",
|
|
189
209
|
"clarifying-question-gate",
|
|
210
|
+
"completion-evidence-gate",
|
|
211
|
+
"evidence-stall-breaker",
|
|
190
212
|
"astro-code-change",
|
|
191
213
|
"bun-code-change",
|
|
192
214
|
"css-code-change",
|
|
@@ -202,12 +224,14 @@ patterns = [
|
|
|
202
224
|
"node-code-change",
|
|
203
225
|
"python-code-change",
|
|
204
226
|
"rust-code-change",
|
|
227
|
+
"runtime-target-selection",
|
|
205
228
|
"svelte-code-change",
|
|
206
229
|
"tailwind-code-change",
|
|
207
230
|
"tauri-code-change",
|
|
208
231
|
"typescript-code-change",
|
|
209
232
|
"unocss-code-change",
|
|
210
233
|
"command-contract-authoring",
|
|
234
|
+
"command-intent-mapping-gate",
|
|
211
235
|
"command-pattern",
|
|
212
236
|
"composition-over-inheritance",
|
|
213
237
|
"config-env-change",
|
|
@@ -230,16 +254,20 @@ patterns = [
|
|
|
230
254
|
"null-object-pattern",
|
|
231
255
|
"pattern-scout",
|
|
232
256
|
"pure-core-imperative-shell",
|
|
257
|
+
"provenance-license-gate",
|
|
233
258
|
"repo-improvement-loop",
|
|
259
|
+
"restricted-handoff-resume",
|
|
234
260
|
"result-option",
|
|
235
261
|
"requirement-regression-guard",
|
|
236
262
|
"repro-first-debug",
|
|
237
263
|
"security-privacy-review",
|
|
264
|
+
"secret-exposure-response",
|
|
238
265
|
"source-anchor-authoring",
|
|
239
266
|
"source-freshness-check",
|
|
240
267
|
"state-machine-pattern",
|
|
241
268
|
"strategy-pattern",
|
|
242
269
|
"structure-discovery-gate",
|
|
270
|
+
"structure-first-engineering",
|
|
243
271
|
"test-design-guard",
|
|
244
272
|
"test-maintenance",
|
|
245
273
|
"vertical-slice-tdd",
|
|
@@ -254,6 +282,8 @@ oss = [
|
|
|
254
282
|
"code-review",
|
|
255
283
|
"codebase-orientation",
|
|
256
284
|
"clarifying-question-gate",
|
|
285
|
+
"completion-evidence-gate",
|
|
286
|
+
"evidence-stall-breaker",
|
|
257
287
|
"astro-code-change",
|
|
258
288
|
"bun-code-change",
|
|
259
289
|
"css-code-change",
|
|
@@ -269,6 +299,7 @@ oss = [
|
|
|
269
299
|
"node-code-change",
|
|
270
300
|
"python-code-change",
|
|
271
301
|
"rust-code-change",
|
|
302
|
+
"runtime-target-selection",
|
|
272
303
|
"svelte-code-change",
|
|
273
304
|
"tailwind-code-change",
|
|
274
305
|
"tauri-code-change",
|
|
@@ -276,6 +307,7 @@ oss = [
|
|
|
276
307
|
"unocss-code-change",
|
|
277
308
|
"cli-output-contract-review",
|
|
278
309
|
"command-contract-authoring",
|
|
310
|
+
"command-intent-mapping-gate",
|
|
279
311
|
"command-pattern",
|
|
280
312
|
"composition-over-inheritance",
|
|
281
313
|
"config-env-change",
|
|
@@ -305,6 +337,8 @@ oss = [
|
|
|
305
337
|
"pattern-scout",
|
|
306
338
|
"process-execution-safety",
|
|
307
339
|
"project-context-authoring",
|
|
340
|
+
"provenance-license-gate",
|
|
341
|
+
"public-json-contract-change",
|
|
308
342
|
"pure-core-imperative-shell",
|
|
309
343
|
"readme-authoring",
|
|
310
344
|
"release-notes-authoring",
|
|
@@ -312,15 +346,19 @@ oss = [
|
|
|
312
346
|
"repo-improvement-loop",
|
|
313
347
|
"result-option",
|
|
314
348
|
"requirement-regression-guard",
|
|
349
|
+
"restricted-handoff-resume",
|
|
315
350
|
"repro-first-debug",
|
|
316
351
|
"security-privacy-review",
|
|
317
352
|
"security-regression-tests",
|
|
353
|
+
"secret-exposure-response",
|
|
318
354
|
"skill-authoring",
|
|
355
|
+
"template-install-surface-sync",
|
|
319
356
|
"source-anchor-authoring",
|
|
320
357
|
"source-freshness-check",
|
|
321
358
|
"state-machine-pattern",
|
|
322
359
|
"strategy-pattern",
|
|
323
360
|
"structure-discovery-gate",
|
|
361
|
+
"structure-first-engineering",
|
|
324
362
|
"test-design-guard",
|
|
325
363
|
"test-maintenance",
|
|
326
364
|
"vertical-slice-tdd",
|
|
@@ -334,6 +372,8 @@ team = [
|
|
|
334
372
|
"code-review",
|
|
335
373
|
"codebase-orientation",
|
|
336
374
|
"clarifying-question-gate",
|
|
375
|
+
"completion-evidence-gate",
|
|
376
|
+
"evidence-stall-breaker",
|
|
337
377
|
"astro-code-change",
|
|
338
378
|
"bun-code-change",
|
|
339
379
|
"css-code-change",
|
|
@@ -349,12 +389,14 @@ team = [
|
|
|
349
389
|
"node-code-change",
|
|
350
390
|
"python-code-change",
|
|
351
391
|
"rust-code-change",
|
|
392
|
+
"runtime-target-selection",
|
|
352
393
|
"svelte-code-change",
|
|
353
394
|
"tailwind-code-change",
|
|
354
395
|
"tauri-code-change",
|
|
355
396
|
"typescript-code-change",
|
|
356
397
|
"unocss-code-change",
|
|
357
398
|
"command-contract-authoring",
|
|
399
|
+
"command-intent-mapping-gate",
|
|
358
400
|
"command-pattern",
|
|
359
401
|
"composition-over-inheritance",
|
|
360
402
|
"config-env-change",
|
|
@@ -381,15 +423,19 @@ team = [
|
|
|
381
423
|
"pattern-scout",
|
|
382
424
|
"process-execution-safety",
|
|
383
425
|
"pure-core-imperative-shell",
|
|
426
|
+
"provenance-license-gate",
|
|
384
427
|
"result-option",
|
|
385
428
|
"requirement-regression-guard",
|
|
429
|
+
"restricted-handoff-resume",
|
|
386
430
|
"repro-first-debug",
|
|
387
431
|
"security-privacy-review",
|
|
432
|
+
"secret-exposure-response",
|
|
388
433
|
"source-anchor-authoring",
|
|
389
434
|
"source-freshness-check",
|
|
390
435
|
"state-machine-pattern",
|
|
391
436
|
"strategy-pattern",
|
|
392
437
|
"structure-discovery-gate",
|
|
438
|
+
"structure-first-engineering",
|
|
393
439
|
"test-design-guard",
|
|
394
440
|
"test-maintenance",
|
|
395
441
|
"vertical-slice-tdd",
|
|
@@ -402,6 +448,8 @@ product = [
|
|
|
402
448
|
"code-review",
|
|
403
449
|
"codebase-orientation",
|
|
404
450
|
"clarifying-question-gate",
|
|
451
|
+
"completion-evidence-gate",
|
|
452
|
+
"evidence-stall-breaker",
|
|
405
453
|
"astro-code-change",
|
|
406
454
|
"bun-code-change",
|
|
407
455
|
"css-code-change",
|
|
@@ -417,12 +465,14 @@ product = [
|
|
|
417
465
|
"node-code-change",
|
|
418
466
|
"python-code-change",
|
|
419
467
|
"rust-code-change",
|
|
468
|
+
"runtime-target-selection",
|
|
420
469
|
"svelte-code-change",
|
|
421
470
|
"tailwind-code-change",
|
|
422
471
|
"tauri-code-change",
|
|
423
472
|
"typescript-code-change",
|
|
424
473
|
"unocss-code-change",
|
|
425
474
|
"command-contract-authoring",
|
|
475
|
+
"command-intent-mapping-gate",
|
|
426
476
|
"command-pattern",
|
|
427
477
|
"composition-over-inheritance",
|
|
428
478
|
"config-env-change",
|
|
@@ -448,16 +498,20 @@ product = [
|
|
|
448
498
|
"pattern-scout",
|
|
449
499
|
"performance-budget-check",
|
|
450
500
|
"pure-core-imperative-shell",
|
|
501
|
+
"provenance-license-gate",
|
|
451
502
|
"result-option",
|
|
452
503
|
"requirement-regression-guard",
|
|
504
|
+
"restricted-handoff-resume",
|
|
453
505
|
"repro-first-debug",
|
|
454
506
|
"security-privacy-review",
|
|
507
|
+
"secret-exposure-response",
|
|
455
508
|
"search-ad-content-authoring",
|
|
456
509
|
"source-anchor-authoring",
|
|
457
510
|
"source-freshness-check",
|
|
458
511
|
"state-machine-pattern",
|
|
459
512
|
"strategy-pattern",
|
|
460
513
|
"structure-discovery-gate",
|
|
514
|
+
"structure-first-engineering",
|
|
461
515
|
"test-design-guard",
|
|
462
516
|
"test-maintenance",
|
|
463
517
|
"vertical-slice-tdd",
|
|
@@ -475,6 +529,8 @@ library = [
|
|
|
475
529
|
"code-review",
|
|
476
530
|
"codebase-orientation",
|
|
477
531
|
"clarifying-question-gate",
|
|
532
|
+
"completion-evidence-gate",
|
|
533
|
+
"evidence-stall-breaker",
|
|
478
534
|
"astro-code-change",
|
|
479
535
|
"bun-code-change",
|
|
480
536
|
"css-code-change",
|
|
@@ -490,6 +546,7 @@ library = [
|
|
|
490
546
|
"node-code-change",
|
|
491
547
|
"python-code-change",
|
|
492
548
|
"rust-code-change",
|
|
549
|
+
"runtime-target-selection",
|
|
493
550
|
"svelte-code-change",
|
|
494
551
|
"tailwind-code-change",
|
|
495
552
|
"tauri-code-change",
|
|
@@ -497,6 +554,7 @@ library = [
|
|
|
497
554
|
"unocss-code-change",
|
|
498
555
|
"cli-output-contract-review",
|
|
499
556
|
"command-contract-authoring",
|
|
557
|
+
"command-intent-mapping-gate",
|
|
500
558
|
"command-pattern",
|
|
501
559
|
"composition-over-inheritance",
|
|
502
560
|
"config-env-change",
|
|
@@ -525,20 +583,26 @@ library = [
|
|
|
525
583
|
"pattern-scout",
|
|
526
584
|
"process-execution-safety",
|
|
527
585
|
"project-context-authoring",
|
|
586
|
+
"provenance-license-gate",
|
|
587
|
+
"public-json-contract-change",
|
|
528
588
|
"pure-core-imperative-shell",
|
|
529
589
|
"readme-authoring",
|
|
530
590
|
"release-notes-authoring",
|
|
531
591
|
"release-publish-change",
|
|
532
592
|
"result-option",
|
|
533
593
|
"requirement-regression-guard",
|
|
594
|
+
"restricted-handoff-resume",
|
|
534
595
|
"repro-first-debug",
|
|
535
596
|
"security-privacy-review",
|
|
536
597
|
"security-regression-tests",
|
|
598
|
+
"secret-exposure-response",
|
|
599
|
+
"template-install-surface-sync",
|
|
537
600
|
"source-anchor-authoring",
|
|
538
601
|
"source-freshness-check",
|
|
539
602
|
"state-machine-pattern",
|
|
540
603
|
"strategy-pattern",
|
|
541
604
|
"structure-discovery-gate",
|
|
605
|
+
"structure-first-engineering",
|
|
542
606
|
"test-design-guard",
|
|
543
607
|
"test-maintenance",
|
|
544
608
|
"vertical-slice-tdd",
|
|
@@ -621,6 +685,7 @@ default = "abort"
|
|
|
621
685
|
".mustflow/config/commands.toml" = "abort"
|
|
622
686
|
".mustflow/config/mustflow.toml" = "abort"
|
|
623
687
|
".mustflow/config/preferences.toml" = "abort"
|
|
688
|
+
".mustflow/config/technology.toml" = "abort"
|
|
624
689
|
".mustflow/context/INDEX.md" = "abort"
|
|
625
690
|
".mustflow/context/PROJECT.md" = "abort"
|
|
626
691
|
|