mustflow 2.103.22 → 2.103.32

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.
Files changed (37) hide show
  1. package/README.md +5 -2
  2. package/dist/cli/commands/check.js +3 -3
  3. package/dist/cli/commands/flow.js +93 -0
  4. package/dist/cli/commands/run/executor.js +28 -3
  5. package/dist/cli/commands/run/windows-command-script.js +23 -0
  6. package/dist/cli/i18n/en.js +11 -0
  7. package/dist/cli/i18n/es.js +11 -0
  8. package/dist/cli/i18n/fr.js +11 -0
  9. package/dist/cli/i18n/hi.js +11 -0
  10. package/dist/cli/i18n/ko.js +11 -0
  11. package/dist/cli/i18n/zh.js +11 -0
  12. package/dist/cli/index.js +1 -0
  13. package/dist/cli/lib/active-command-lock.js +4 -0
  14. package/dist/cli/lib/command-registry.js +7 -0
  15. package/dist/cli/lib/local-index/index.js +70 -0
  16. package/dist/cli/lib/repo-flow-frontmatter.js +35 -0
  17. package/dist/cli/lib/repo-flow.js +209 -0
  18. package/dist/cli/lib/repo-map.js +3 -0
  19. package/dist/cli/lib/run-plan.js +8 -4
  20. package/dist/cli/lib/validation/constants.js +10 -0
  21. package/dist/cli/lib/validation/index.js +73 -1
  22. package/dist/core/check-issues.js +2 -0
  23. package/dist/core/generated-boundary.js +1 -0
  24. package/package.json +2 -1
  25. package/templates/default/i18n.toml +30 -6
  26. package/templates/default/locales/en/.mustflow/skills/INDEX.md +29 -6
  27. package/templates/default/locales/en/.mustflow/skills/astro-code-change/SKILL.md +95 -23
  28. package/templates/default/locales/en/.mustflow/skills/axum-code-change/SKILL.md +219 -0
  29. package/templates/default/locales/en/.mustflow/skills/babylon-code-change/SKILL.md +318 -0
  30. package/templates/default/locales/en/.mustflow/skills/bun-code-change/SKILL.md +27 -12
  31. package/templates/default/locales/en/.mustflow/skills/elysia-code-change/SKILL.md +74 -20
  32. package/templates/default/locales/en/.mustflow/skills/godot-code-change/SKILL.md +272 -0
  33. package/templates/default/locales/en/.mustflow/skills/hono-code-change/SKILL.md +37 -23
  34. package/templates/default/locales/en/.mustflow/skills/routes.toml +28 -4
  35. package/templates/default/locales/en/.mustflow/skills/svelte-code-change/SKILL.md +65 -40
  36. package/templates/default/locales/en/.mustflow/skills/vue-code-change/SKILL.md +305 -0
  37. package/templates/default/manifest.toml +29 -1
@@ -0,0 +1,305 @@
1
+ ---
2
+ mustflow_doc: skill.vue-code-change
3
+ locale: en
4
+ canonical: true
5
+ revision: 1
6
+ lifecycle: mustflow-owned
7
+ authority: procedure
8
+ name: vue-code-change
9
+ description: Apply this skill when Vue, Nuxt, Pinia, Vue Router, Vue SFCs, Composition API, reactivity, props, emits, slots, v-model, SSR, hydration, lazy hydration, Vite/Vue toolchain, or Vue-related tests are created, changed, reviewed, or upgraded.
10
+ metadata:
11
+ mustflow_schema: "1"
12
+ mustflow_kind: procedure
13
+ pack_id: mustflow.core
14
+ skill_id: mustflow.core.vue-code-change
15
+ command_intents:
16
+ - changes_status
17
+ - changes_diff_summary
18
+ - lint
19
+ - build
20
+ - test_related
21
+ - test
22
+ - docs_validate_fast
23
+ - test_release
24
+ - mustflow_check
25
+ ---
26
+
27
+ # Vue Code Change
28
+
29
+ <!-- mustflow-section: purpose -->
30
+ ## Purpose
31
+
32
+ Preserve Vue and Nuxt component, reactivity, state, routing, SSR, hydration, lazy-hydration,
33
+ toolchain, and package-version contracts when changing Vue projects. Review Vue code by asking
34
+ which value is being tracked, which component owns it, which runtime renders it first, and whether
35
+ the server and client will agree.
36
+
37
+ <!-- mustflow-section: use-when -->
38
+ ## Use When
39
+
40
+ - `.vue` files, Vue SFC macros, Composition API, Options API, composables, custom directives,
41
+ Pinia stores, Vue Router routes or guards, Nuxt pages/layouts/components/plugins/middleware,
42
+ Vite Vue config, `vue-tsc`, or Vue-related tests change.
43
+ - The task touches reactive state, `ref`, `reactive`, `shallowRef`, `computed`, `watch`,
44
+ `watchEffect`, `defineProps`, reactive props destructure, `defineModel`, `defineEmits`,
45
+ fallthrough attributes, slots, template refs, provide/inject, Teleport, Suspense, SSR,
46
+ hydration, lazy hydration, ClientOnly behavior, or route lazy loading.
47
+ - A contribution proposes Vue performance, hydration, state ownership, component API, Pinia,
48
+ router, Nuxt, Vite, TypeScript, or Vue version support changes.
49
+
50
+ <!-- mustflow-section: do-not-use-when -->
51
+ ## Do Not Use When
52
+
53
+ - The change is framework-free JavaScript or TypeScript with no Vue, Nuxt, Pinia, or router
54
+ boundary; use the language-specific skill.
55
+ - The task is only plain HTML/CSS layout, accessibility, localization, or image delivery with no
56
+ Vue behavior; use the narrower frontend or UI skill.
57
+ - React, Svelte, Astro, Tauri, Flutter, or another framework owns the changed component boundary.
58
+ - The task is only a dependency upgrade across many packages; use dependency and freshness skills
59
+ first, then this skill for Vue-specific code and compatibility surfaces.
60
+
61
+ <!-- mustflow-section: required-inputs -->
62
+ ## Required Inputs
63
+
64
+ - Package and toolchain evidence: nearest `package.json`, lockfile, package manager, `engines`,
65
+ Vite config, Nuxt config, Vue plugin config, TypeScript config, `vue-tsc` setup, test config,
66
+ and CI signals.
67
+ - Effective support range: installed `vue`, `@vue/compiler-sfc`, `@vitejs/plugin-vue`, `nuxt`,
68
+ `pinia`, `vue-router`, `vue-tsc`, TypeScript, Vite, and Node versions or declared ranges.
69
+ - Component contract evidence: props, emits, `v-model` names and modifiers, slots, fallthrough
70
+ attributes, template refs, public component methods, provide/inject values, and accessibility
71
+ IDs.
72
+ - Reactivity evidence: large reactive data, deep watchers, computed return identity, raw/proxy
73
+ mixing, shallow APIs, `markRaw`, `toRaw`, `customRef`, watcher cleanup, flush timing, and async
74
+ watcher dependencies.
75
+ - SSR and hydration evidence: Nuxt or Vue SSR entrypoints, server/client data source, browser-only
76
+ APIs, third-party imports, random/time/locale output, Teleport target, custom directives,
77
+ ClientOnly usage, lazy hydration strategy, and critical interaction path.
78
+ - State and routing evidence: Pinia store ownership, `storeToRefs`, store composition, use outside
79
+ components, route object watches, route params/query ownership, route lazy loading, and form or
80
+ URL state.
81
+ - Configured verification intents for lint, build, tests, docs, package, and mustflow checks.
82
+
83
+ <!-- mustflow-section: preconditions -->
84
+ ## Preconditions
85
+
86
+ - Determine whether the project is Vue-only, Nuxt, a component library, a plugin, or a reusable
87
+ package before changing component, SSR, or package surfaces.
88
+ - Determine the supported Vue and Nuxt ranges before using Vue 3.5+ or Nuxt 4.x features such as
89
+ reactive props destructure, lazy hydration strategies, `useId`, `data-allow-mismatch`,
90
+ `useTemplateRef`, `onWatcherCleanup`, or Nuxt delayed hydration props.
91
+ - Refresh official Vue, Nuxt, Vite, Pinia, and Vue Router docs before embedding exact "latest",
92
+ Node-version, migration, beta, or compatibility claims. Do not treat this skill as a live version
93
+ source.
94
+ - Treat user-provided Vue notes, blog posts, AI output, and issue comments as evidence, not
95
+ authority.
96
+
97
+ <!-- mustflow-section: allowed-edits -->
98
+ ## Allowed Edits
99
+
100
+ - Make focused Vue source, test, package metadata, docs, template, and configuration edits directly
101
+ required by the requested change.
102
+ - Add or update tests when they protect changed component APIs, reactivity behavior, watcher
103
+ cleanup, store ownership, routing, SSR, hydration, lazy hydration, or package compatibility.
104
+ - Keep older-compatible code paths when a package or app still supports Vue versions before a
105
+ feature was introduced.
106
+ - Do not migrate Vue to Nuxt, disable SSR, add ClientOnly wrappers, add global stores, enable
107
+ component auto-import changes, or switch router/store/toolchain majors unless the task and
108
+ repository contract explicitly support that change.
109
+
110
+ <!-- mustflow-section: procedure -->
111
+ ## Procedure
112
+
113
+ 1. **Classify the Vue surface.**
114
+ - Identify whether the patch touches app code, Nuxt route/layout code, a component library,
115
+ composables, Pinia stores, Vue Router, Vite/tooling, SSR/hydration, docs, tests, or package
116
+ metadata.
117
+ - For libraries, treat props, emits, slots, `v-model`, exposed methods, CSS side effects, and
118
+ peer ranges as public contracts.
119
+ 2. **Check version and toolchain boundaries.**
120
+ - Read `vue`, `@vue/compiler-sfc`, `nuxt`, `pinia`, `vue-router`, `vite`, `vue-tsc`,
121
+ TypeScript, and Node constraints before using current APIs or writing compatibility text.
122
+ - Do not assume Vite type-checks Vue SFCs. Look for a configured `vue-tsc --noEmit` or
123
+ equivalent typecheck surface, and report the missing intent when absent.
124
+ - Keep Vue ecosystem upgrades grouped when compatibility is involved: Vue, compiler-sfc,
125
+ Vite plugin, Nuxt, Pinia, Router, vue-tsc, TypeScript, and Node engines can constrain each
126
+ other.
127
+ 3. **Review reactivity by subscription width.**
128
+ - Avoid wrapping large API responses, large tables, log arrays, permission trees, or deeply
129
+ nested JSON in deep `reactive()` unless the UI needs deep mutation tracking.
130
+ - Use `shallowRef` or `shallowReactive` only as a root-state boundary, and update by root
131
+ replacement. Do not bury shallow state inside deep reactive trees.
132
+ - Do not stringify, spread, or debug-print huge reactive objects in render or computed paths;
133
+ that makes the effect subscribe to too much.
134
+ - Keep raw and proxy identities from mixing in `Set`, `Map`, selected rows, memo caches, and
135
+ equality checks. Prefer stable ids over object references.
136
+ 4. **Review computed, watch, and watchEffect contracts.**
137
+ - Keep computed getters pure. Do not perform API calls, DOM writes, analytics, or state
138
+ mutations inside computed getters.
139
+ - Treat computed output as derived read-only state. Mutate the source state, not the computed
140
+ result.
141
+ - Avoid returning fresh objects or arrays from computed values when downstream stability matters;
142
+ compare with the previous value when Vue version support allows old-value reuse.
143
+ - Do not watch large reactive objects directly unless deep behavior is intentional and bounded.
144
+ Prefer getter sources for the exact primitive, id, length, param, or selector that matters.
145
+ - Avoid `deep: true` as a default. Vue 3.5+ supports numeric deep traversal, but the better
146
+ fix is often a narrower getter or `watchEffect` that reads only used fields.
147
+ - In async `watchEffect`, read dependencies before the first `await`. Later reads are not
148
+ dependency-tracked.
149
+ - Add cleanup for watcher fetches, timers, subscriptions, and observers. Use `onWatcherCleanup`
150
+ only in the synchronous part of Vue 3.5+ watchers, or use the callback `onCleanup` argument.
151
+ - Use `flush: 'post'` only when the watcher must read owner DOM after Vue updates it; avoid
152
+ `flush: 'sync'` for high-churn sources such as arrays.
153
+ 5. **Review component API contracts.**
154
+ - Keep props as one-way inputs. Do not mutate nested object or array props from children unless
155
+ the component is explicitly a tightly coupled compound component.
156
+ - Separate controlled and uncontrolled behavior. Use `modelValue` or named `v-model` for
157
+ live parent ownership, `defaultValue` or `initialValue` for one-time initialization, and a
158
+ `resetKey` or explicit action for reset semantics.
159
+ - For Vue 3.5+ reactive props destructure, same-block reads are reactive, but passing a
160
+ destructured prop to `watch` or a composable needs a getter such as `() => foo` or input
161
+ normalization with `toValue`.
162
+ - Avoid mixing boolean props with string modes. Keep booleans for true/false state and string
163
+ unions for variants or modes.
164
+ - Treat `defineModel({ default })` as a possible parent-child desynchronization risk. Prefer
165
+ required models or parent-owned initialization for form components.
166
+ - Declare public emits. Undeclared listeners can fall through to DOM roots and cause duplicate
167
+ or misplaced native event handling.
168
+ - Prefer object event payloads for public component events so future fields can be added without
169
+ positional argument churn.
170
+ - Treat `$attrs` as public API routing, not a dumping ground. With wrappers, bind attrs and
171
+ listeners to the actual interactive element.
172
+ - Treat slot names and slot props as public APIs. Keep `#default`, named slots, and scoped slot
173
+ data explicit.
174
+ 6. **Review render and list performance.**
175
+ - Keep child props stable. Do not pass a changing global value such as `activeId` to every row
176
+ when each child only needs a boolean such as `active`.
177
+ - Use stable primitive keys, not indexes or objects, for reorderable lists.
178
+ - Do not combine `v-if` and `v-for` on the same element. Move filtering to computed output or
179
+ gate the parent container.
180
+ - Copy before sorting or reversing arrays in computed values. Do not mutate source arrays while
181
+ deriving render output.
182
+ - Large lists need pagination, virtualization, route-level splitting, or a documented hard cap.
183
+ - Avoid renderless or provider component stacks inside thousands of list rows when a composable
184
+ or plain helper can own the reusable logic.
185
+ 7. **Review composables and provide/inject.**
186
+ - Design composable inputs to accept plain values, refs, and getters when the use case calls
187
+ for all three. Normalize with `toValue` inside a tracked effect when dependency tracking is
188
+ required.
189
+ - Return refs or `toRefs`-compatible shapes when callers are expected to destructure the result.
190
+ - For provide/inject, prefer readonly state plus explicit mutation functions when descendants
191
+ should not mutate shared state directly.
192
+ - Use template refs and component refs as escape hatches. Prefer props/emits first, and expose
193
+ only intentional public methods with `defineExpose`.
194
+ 8. **Review Pinia and router ownership.**
195
+ - Use `storeToRefs()` for reactive state/getter destructuring; actions may be destructured.
196
+ - Keep page-local UI state out of Pinia unless it must survive navigation or be shared across
197
+ independent surfaces.
198
+ - Do not create mutually recursive setup stores that read each other's state during setup.
199
+ Move cross-store reads into computed values or actions.
200
+ - When using stores outside components, verify Pinia is installed before `useStore()` runs.
201
+ In SSR, pass or use the request's active Pinia instance instead of a shared singleton.
202
+ - Watch specific route params, query fields, or names rather than the entire route object.
203
+ - Use route lazy loading for route components when initial bundle size matters, and verify the
204
+ router major and typed-route integration before changing route tooling.
205
+ 9. **Review SSR and hydration determinism.**
206
+ - Treat SSR as the same app running on server and client. First-render output must be
207
+ deterministic across both sides.
208
+ - Do not store request-specific state in module-scope singletons, exported reactive objects, or
209
+ global stores during SSR. Create app, router, store, and request context per request.
210
+ - Move browser-only APIs, DOM libraries, timers, observers, sockets, analytics, maps, editors,
211
+ and chart initialization behind client-safe lifecycle or dynamic import boundaries.
212
+ - Do not let `Math.random()`, `Date.now()`, timezone, locale, viewport, localStorage, auth
213
+ fallback, or A/B bucket values alter SSR-visible first markup unless the value is serialized
214
+ or intentionally client-only.
215
+ - Check invalid HTML nesting before blaming hydration. Browser parsers can rewrite SSR HTML
216
+ before Vue hydrates it.
217
+ - Use `useId` for SSR-stable form and accessibility IDs when the supported Vue version allows it.
218
+ - Use `data-allow-mismatch` only for narrowly intentional mismatches such as unavoidable dates,
219
+ not as a blanket hydration-warning silencer.
220
+ - For SSR Teleport, use a dedicated target and ensure teleported markup is injected or delayed
221
+ intentionally. Avoid targeting `body` casually.
222
+ - For custom directives that affect SSR-visible attributes, provide an SSR path instead of
223
+ relying only on client DOM hooks.
224
+ 10. **Review Nuxt client-only and lazy hydration boundaries.**
225
+ - Do not use `<ClientOnly>` as a default mismatch fix. It removes default slot content from
226
+ server rendering and can affect first HTML, CSS, SEO, LCP, and layout.
227
+ - Distinguish lazy code loading from lazy hydration. Nuxt `Lazy` component prefixes delay code
228
+ loading; hydration strategies decide when existing SSR HTML becomes interactive.
229
+ - Avoid delayed hydration for above-the-fold controls, forms, navigation, search, login,
230
+ checkout, add-to-cart, or any component users may interact with immediately.
231
+ - For delayed hydration, pick one strategy per component and check Nuxt constraints: SFC usage,
232
+ explicit template props, no broad prop spread, and no direct `#components` import path when
233
+ the strategy depends on auto-imported lazy components.
234
+ - Treat prop changes and shared `v-model` as hydration triggers. Do not put shared model state
235
+ on many lazy-hydrated components without measuring the cascade.
236
+ - Do not use `hydrate-never` on interactive components.
237
+ 11. **Keep public and package surfaces synchronized.**
238
+ - If component APIs, router behavior, store contracts, SSR behavior, hydration behavior,
239
+ package metadata, or toolchain ranges change, synchronize docs, tests, examples, and template
240
+ metadata.
241
+ - Avoid exact latest-version wording unless official sources were refreshed in the current
242
+ task. Prefer support-range wording such as "Vue 3.5+" or "Nuxt 4.x" only when the project
243
+ actually supports that range.
244
+ 12. **Verify through the repository contract.**
245
+ - Run the smallest configured checks that cover Vue code, TypeScript/SFC type checks, build
246
+ output, tests, docs, and release-sensitive template output.
247
+ - Report missing browser, hydration, SSR, Nuxt, Pinia, Router, vue-tsc, performance profiling,
248
+ or package-consumer verification when those surfaces changed.
249
+
250
+ <!-- mustflow-section: postconditions -->
251
+ ## Postconditions
252
+
253
+ - Effective Vue, Nuxt, Pinia, Router, Vite, TypeScript, vue-tsc, and Node compatibility are known
254
+ or explicitly reported as unknown.
255
+ - Reactivity, computed, watcher, component API, composable, store, router, SSR, hydration, and lazy
256
+ hydration boundaries follow the supported version's model.
257
+ - Large data, wide subscriptions, unstable computed identity, raw/proxy mixing, prop mutation,
258
+ broad route watches, stale watcher responses, and ClientOnly misuse are fixed or reported.
259
+ - SSR-visible output is deterministic, intentionally client-only, or narrowly marked as an
260
+ intentional mismatch.
261
+ - Performance claims have profiler, benchmark, render-count, bundle, or configured evidence, or
262
+ are reported as static risk.
263
+
264
+ <!-- mustflow-section: verification -->
265
+ ## Verification
266
+
267
+ Use configured oneshot command intents when available:
268
+
269
+ - `lint`
270
+ - `build`
271
+ - `test_related`
272
+ - `test`
273
+ - `docs_validate_fast`
274
+ - `test_release`
275
+ - `mustflow_check`
276
+
277
+ Report missing Vue SFC typecheck, browser, hydration, SSR, Nuxt route, Pinia store, Router,
278
+ performance, or package-consumer verification when those surfaces changed.
279
+
280
+ <!-- mustflow-section: failure-handling -->
281
+ ## Failure Handling
282
+
283
+ - If version evidence conflicts, do not assume the newest Vue or Nuxt API is available. Preserve
284
+ the older-compatible path or report the compatibility decision.
285
+ - If a reactivity fix makes code faster by dropping required updates, restore the correct owner
286
+ boundary and report the performance tradeoff.
287
+ - If a watcher or route fetch can race, keep the stale-response scenario visible and add cleanup,
288
+ cancellation, request identity, or query-key ownership.
289
+ - If hydration fails, fix deterministic markup, SSR data, browser-only imports, invalid HTML, or
290
+ request-local state before adding ClientOnly or `data-allow-mismatch`.
291
+ - If a Nuxt lazy-hydration change breaks first interaction, remove the delay for that component or
292
+ report the product tradeoff.
293
+ - If configured verification is missing, report the missing intent instead of inventing raw
294
+ package-manager, dev-server, browser, or watcher commands.
295
+
296
+ <!-- mustflow-section: output-format -->
297
+ ## Output Format
298
+
299
+ - Vue surface and supported version checked
300
+ - Toolchain, SFC typecheck, reactivity, computed, watcher, component API, composable, Pinia,
301
+ Router, SSR, hydration, lazy-hydration, and performance notes
302
+ - Files changed
303
+ - Command intents run
304
+ - Skipped checks and reasons
305
+ - Remaining Vue, Nuxt, hydration, toolchain, or verification risk
@@ -1,6 +1,6 @@
1
1
  id = "default"
2
2
  name = "default"
3
- version = "2.103.22"
3
+ version = "2.103.32"
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"
@@ -83,6 +83,8 @@ creates = [
83
83
  ".mustflow/skills/evidence-stall-breaker/SKILL.md",
84
84
  ".mustflow/skills/command-intent-mapping-gate/SKILL.md",
85
85
  ".mustflow/skills/astro-code-change/SKILL.md",
86
+ ".mustflow/skills/axum-code-change/SKILL.md",
87
+ ".mustflow/skills/babylon-code-change/SKILL.md",
86
88
  ".mustflow/skills/bun-code-change/SKILL.md",
87
89
  ".mustflow/skills/c-code-change/SKILL.md",
88
90
  ".mustflow/skills/css-code-change/SKILL.md",
@@ -92,11 +94,13 @@ creates = [
92
94
  ".mustflow/skills/elysia-code-change/SKILL.md",
93
95
  ".mustflow/skills/flutter-code-change/SKILL.md",
94
96
  ".mustflow/skills/go-code-change/SKILL.md",
97
+ ".mustflow/skills/godot-code-change/SKILL.md",
95
98
  ".mustflow/skills/hono-code-change/SKILL.md",
96
99
  ".mustflow/skills/html-code-change/SKILL.md",
97
100
  ".mustflow/skills/javascript-code-change/SKILL.md",
98
101
  ".mustflow/skills/node-code-change/SKILL.md",
99
102
  ".mustflow/skills/react-code-change/SKILL.md",
103
+ ".mustflow/skills/vue-code-change/SKILL.md",
100
104
  ".mustflow/skills/python-code-change/SKILL.md",
101
105
  ".mustflow/skills/powershell-code-change/SKILL.md",
102
106
  ".mustflow/skills/shell-code-change/SKILL.md",
@@ -292,6 +296,8 @@ minimal = [
292
296
  "next-action-menu",
293
297
  "evidence-stall-breaker",
294
298
  "astro-code-change",
299
+ "axum-code-change",
300
+ "babylon-code-change",
295
301
  "bun-code-change",
296
302
  "c-code-change",
297
303
  "css-code-change",
@@ -301,11 +307,13 @@ minimal = [
301
307
  "elysia-code-change",
302
308
  "flutter-code-change",
303
309
  "go-code-change",
310
+ "godot-code-change",
304
311
  "hono-code-change",
305
312
  "html-code-change",
306
313
  "javascript-code-change",
307
314
  "node-code-change",
308
315
  "react-code-change",
316
+ "vue-code-change",
309
317
  "python-code-change",
310
318
  "powershell-code-change",
311
319
  "shell-code-change",
@@ -440,6 +448,8 @@ patterns = [
440
448
  "next-action-menu",
441
449
  "evidence-stall-breaker",
442
450
  "astro-code-change",
451
+ "axum-code-change",
452
+ "babylon-code-change",
443
453
  "bun-code-change",
444
454
  "c-code-change",
445
455
  "css-code-change",
@@ -449,11 +459,13 @@ patterns = [
449
459
  "elysia-code-change",
450
460
  "flutter-code-change",
451
461
  "go-code-change",
462
+ "godot-code-change",
452
463
  "hono-code-change",
453
464
  "html-code-change",
454
465
  "javascript-code-change",
455
466
  "node-code-change",
456
467
  "react-code-change",
468
+ "vue-code-change",
457
469
  "python-code-change",
458
470
  "powershell-code-change",
459
471
  "shell-code-change",
@@ -599,6 +611,8 @@ oss = [
599
611
  "next-action-menu",
600
612
  "evidence-stall-breaker",
601
613
  "astro-code-change",
614
+ "axum-code-change",
615
+ "babylon-code-change",
602
616
  "bun-code-change",
603
617
  "c-code-change",
604
618
  "css-code-change",
@@ -608,11 +622,13 @@ oss = [
608
622
  "elysia-code-change",
609
623
  "flutter-code-change",
610
624
  "go-code-change",
625
+ "godot-code-change",
611
626
  "hono-code-change",
612
627
  "html-code-change",
613
628
  "javascript-code-change",
614
629
  "node-code-change",
615
630
  "react-code-change",
631
+ "vue-code-change",
616
632
  "python-code-change",
617
633
  "powershell-code-change",
618
634
  "shell-code-change",
@@ -774,6 +790,8 @@ team = [
774
790
  "next-action-menu",
775
791
  "evidence-stall-breaker",
776
792
  "astro-code-change",
793
+ "axum-code-change",
794
+ "babylon-code-change",
777
795
  "bun-code-change",
778
796
  "c-code-change",
779
797
  "css-code-change",
@@ -783,11 +801,13 @@ team = [
783
801
  "elysia-code-change",
784
802
  "flutter-code-change",
785
803
  "go-code-change",
804
+ "godot-code-change",
786
805
  "hono-code-change",
787
806
  "html-code-change",
788
807
  "javascript-code-change",
789
808
  "node-code-change",
790
809
  "react-code-change",
810
+ "vue-code-change",
791
811
  "python-code-change",
792
812
  "powershell-code-change",
793
813
  "shell-code-change",
@@ -935,6 +955,8 @@ product = [
935
955
  "next-action-menu",
936
956
  "evidence-stall-breaker",
937
957
  "astro-code-change",
958
+ "axum-code-change",
959
+ "babylon-code-change",
938
960
  "bun-code-change",
939
961
  "c-code-change",
940
962
  "css-code-change",
@@ -944,11 +966,13 @@ product = [
944
966
  "elysia-code-change",
945
967
  "flutter-code-change",
946
968
  "go-code-change",
969
+ "godot-code-change",
947
970
  "hono-code-change",
948
971
  "html-code-change",
949
972
  "javascript-code-change",
950
973
  "node-code-change",
951
974
  "react-code-change",
975
+ "vue-code-change",
952
976
  "python-code-change",
953
977
  "powershell-code-change",
954
978
  "shell-code-change",
@@ -1102,6 +1126,8 @@ library = [
1102
1126
  "next-action-menu",
1103
1127
  "evidence-stall-breaker",
1104
1128
  "astro-code-change",
1129
+ "axum-code-change",
1130
+ "babylon-code-change",
1105
1131
  "bun-code-change",
1106
1132
  "c-code-change",
1107
1133
  "css-code-change",
@@ -1111,11 +1137,13 @@ library = [
1111
1137
  "elysia-code-change",
1112
1138
  "flutter-code-change",
1113
1139
  "go-code-change",
1140
+ "godot-code-change",
1114
1141
  "hono-code-change",
1115
1142
  "html-code-change",
1116
1143
  "javascript-code-change",
1117
1144
  "node-code-change",
1118
1145
  "react-code-change",
1146
+ "vue-code-change",
1119
1147
  "python-code-change",
1120
1148
  "powershell-code-change",
1121
1149
  "shell-code-change",