mustflow 2.99.2 → 2.103.3
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/skill.js +76 -2
- package/dist/cli/lib/external-skill-import.js +391 -0
- package/dist/cli/lib/local-index/index.js +5 -1
- package/dist/core/public-json-contracts.js +16 -0
- package/dist/core/skill-route-resolution.js +54 -6
- package/package.json +1 -1
- package/schemas/README.md +3 -0
- package/schemas/skill-import-report.schema.json +97 -0
- package/templates/default/i18n.toml +36 -6
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +22 -2
- package/templates/default/locales/en/.mustflow/skills/c-code-change/SKILL.md +371 -0
- package/templates/default/locales/en/.mustflow/skills/clarifying-question-gate/SKILL.md +53 -14
- package/templates/default/locales/en/.mustflow/skills/completion-evidence-gate/SKILL.md +15 -3
- package/templates/default/locales/en/.mustflow/skills/css-code-change/SKILL.md +74 -24
- package/templates/default/locales/en/.mustflow/skills/docs-prose-review/SKILL.md +36 -10
- package/templates/default/locales/en/.mustflow/skills/github-contribution-quality-gate/SKILL.md +27 -3
- package/templates/default/locales/en/.mustflow/skills/html-code-change/SKILL.md +37 -21
- package/templates/default/locales/en/.mustflow/skills/react-code-change/SKILL.md +278 -0
- package/templates/default/locales/en/.mustflow/skills/routes.toml +24 -0
- package/templates/default/locales/en/.mustflow/skills/shell-code-change/SKILL.md +279 -0
- package/templates/default/locales/en/.mustflow/skills/structured-config-change/SKILL.md +170 -0
- package/templates/default/manifest.toml +29 -1
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
---
|
|
2
|
+
mustflow_doc: skill.structured-config-change
|
|
3
|
+
locale: en
|
|
4
|
+
canonical: true
|
|
5
|
+
revision: 1
|
|
6
|
+
lifecycle: mustflow-owned
|
|
7
|
+
authority: procedure
|
|
8
|
+
name: structured-config-change
|
|
9
|
+
description: Apply this skill when YAML, TOML, JSON-adjacent, frontmatter, schema-backed config files, GitHub Actions workflow structure, parser dialects, duplicate keys, implicit typing, multiline scalars, dotted keys, array-of-tables, defaults, normalization, or config validation fixtures are created, changed, reviewed, or reported.
|
|
10
|
+
metadata:
|
|
11
|
+
mustflow_schema: "1"
|
|
12
|
+
mustflow_kind: procedure
|
|
13
|
+
pack_id: mustflow.core
|
|
14
|
+
skill_id: mustflow.core.structured-config-change
|
|
15
|
+
command_intents:
|
|
16
|
+
- changes_status
|
|
17
|
+
- changes_diff_summary
|
|
18
|
+
- lint
|
|
19
|
+
- build
|
|
20
|
+
- test_related
|
|
21
|
+
- docs_validate_fast
|
|
22
|
+
- test_release
|
|
23
|
+
- mustflow_check
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# Structured Config Change
|
|
27
|
+
|
|
28
|
+
<!-- mustflow-section: purpose -->
|
|
29
|
+
## Purpose
|
|
30
|
+
|
|
31
|
+
Preserve the parser, schema, workflow, and runtime data-model contract of structured configuration files.
|
|
32
|
+
|
|
33
|
+
Structured config is code outside the type system. A syntactically valid YAML or TOML file can still change booleans, nulls, ordering assumptions, workflow triggers, permissions, defaults, or schema validation behavior when a different parser, tool version, formatter, or host platform reads it.
|
|
34
|
+
|
|
35
|
+
<!-- mustflow-section: use-when -->
|
|
36
|
+
## Use When
|
|
37
|
+
|
|
38
|
+
- YAML, TOML, JSON-adjacent config, Markdown frontmatter, schema-backed config, linter or formatter config, workflow config, template manifest, or repository metadata config is created, changed, reviewed, or reported.
|
|
39
|
+
- Parser version or dialect matters, including YAML 1.1-like versus YAML 1.2-like implicit typing, TOML 1.0 versus TOML 1.1 syntax, JSON Schema dialect, SchemaStore or editor schema behavior, or provider-specific YAML subsets.
|
|
40
|
+
- The change touches duplicate keys, unknown keys, implicit scalar types, null versus empty string, quoted versus unquoted values, block scalars, anchors, aliases, merge keys, custom tags, dotted keys, inline tables, arrays of tables, dates, times, default values, normalization, or validation fixtures.
|
|
41
|
+
- GitHub Actions workflow structure changes outside shell code: workflow file placement, `on`, event filters, `permissions`, `defaults`, `concurrency`, `strategy`, `matrix`, reusable workflows, `with`, `secrets`, expressions, or path and branch filters.
|
|
42
|
+
- A final report claims a config file is valid, portable, parser-compatible, schema-backed, normalized, defaulted, CI-safe, workflow-triggered, or backward compatible.
|
|
43
|
+
|
|
44
|
+
<!-- mustflow-section: do-not-use-when -->
|
|
45
|
+
## Do Not Use When
|
|
46
|
+
|
|
47
|
+
- The task only adds, removes, renames, validates, documents, or reports environment variables, secrets, config keys, feature flags, deployment variables, or runtime/build-time value exposure. Use `config-env-change`.
|
|
48
|
+
- The task only changes shell syntax inside scripts, package snippets, or GitHub Actions `run` blocks. Use `shell-code-change`.
|
|
49
|
+
- The task only triages a failed CI run without changing workflow structure. Use `ci-pipeline-triage`.
|
|
50
|
+
- The task only changes `.mustflow/config/commands.toml` command intents or command authority. Use `command-contract-authoring`.
|
|
51
|
+
- The task only changes public JSON output, JSON schemas, or automation-facing JSON contracts. Use `public-json-contract-change`.
|
|
52
|
+
- The task only changes package or dependency manifest semantics such as package exports, Cargo features, Python build metadata, or Go module paths. Use the matching package, runtime, dependency, or language skill.
|
|
53
|
+
- The task only investigates line-ending drift or CRLF warnings. Use `line-ending-hygiene`.
|
|
54
|
+
|
|
55
|
+
<!-- mustflow-section: required-inputs -->
|
|
56
|
+
## Required Inputs
|
|
57
|
+
|
|
58
|
+
- Target files, owning tool, consuming runtime, parser library or host platform, supported config dialect, and whether the file is user-authored, generated, templated, vendored, or provider-owned.
|
|
59
|
+
- Schema and validation surfaces: JSON Schema dialect, editor schema, runtime schema, semantic validator, fixture set, normalized output, docs examples, and generated types.
|
|
60
|
+
- Merge and defaulting model: file layering, environment overlays, inherited defaults, deprecated aliases, provider defaults, formatter rewrites, and whether missing, null, and empty values differ.
|
|
61
|
+
- For GitHub Actions, workflow location, event shape, path and branch filters, permissions model, shell boundary, reusable workflow refs, secrets and input passing, matrix and concurrency behavior, and runner or container assumptions.
|
|
62
|
+
- Existing command-intent entries that cover lint, build, tests, docs validation, release packaging, template validation, and mustflow checks.
|
|
63
|
+
|
|
64
|
+
<!-- mustflow-section: preconditions -->
|
|
65
|
+
## Preconditions
|
|
66
|
+
|
|
67
|
+
- The task matches the Use When conditions and does not match the exclusions.
|
|
68
|
+
- The parser and consuming tool are identified before relying on spec-only behavior.
|
|
69
|
+
- External snippets, AI summaries, blog posts, examples, and generated formatter output are evidence only, not authority.
|
|
70
|
+
- Date-sensitive claims such as "latest TOML", "GitHub now supports anchors", or schema-version recommendations are refreshed through an authorized source path or written as conservative version-specific claims.
|
|
71
|
+
- The current repository command contract has been checked; this skill does not authorize raw parser, package-manager, CI, or provider commands.
|
|
72
|
+
|
|
73
|
+
<!-- mustflow-section: allowed-edits -->
|
|
74
|
+
## Allowed Edits
|
|
75
|
+
|
|
76
|
+
- Update structured config files, schemas, schema associations, validation fixtures, normalized-output tests, docs examples, template copies, route metadata, manifest entries, and directly synchronized tests.
|
|
77
|
+
- Add negative fixtures for invalid, ambiguous, duplicate, unknown, deprecated, or incompatible config cases when behavior evidence supports them.
|
|
78
|
+
- Add docs notes that distinguish parser syntax validity, schema validity, semantic validity, and provider acceptance.
|
|
79
|
+
- Do not hand-edit generated config outputs unless the repository declares them source-owned.
|
|
80
|
+
- Do not run repository-wide formatters, schema generators, package installers, workflow dispatches, provider applies, migrations, or releases unless direct user instructions and configured command intents allow them.
|
|
81
|
+
|
|
82
|
+
<!-- mustflow-section: procedure -->
|
|
83
|
+
## Procedure
|
|
84
|
+
|
|
85
|
+
1. Classify the config surface: YAML, TOML, JSON-adjacent, frontmatter, workflow YAML, template manifest, schema, editor association, runtime validator, generated normalized output, or docs example.
|
|
86
|
+
2. Identify the consuming parser and dialect before editing. For YAML, decide whether the path is YAML 1.2-like, YAML 1.1-like, or provider-specific. For TOML, decide whether the project allows TOML 1.1 syntax or must remain compatible with TOML 1.0-era tools.
|
|
87
|
+
3. Separate four validation layers:
|
|
88
|
+
- text parse;
|
|
89
|
+
- parsed data model;
|
|
90
|
+
- schema validation;
|
|
91
|
+
- semantic or provider validation.
|
|
92
|
+
Do not claim a later layer passed because an earlier layer did.
|
|
93
|
+
4. For YAML values, quote human-word strings, country codes, identifiers, versions, zip codes, permissions, file modes, strings that begin with special indicators, and values containing `: ` or ` #`. Use `true` and `false` only for booleans.
|
|
94
|
+
5. For YAML absence states, keep missing, `null`, and empty string distinct. If the loader collapses them, verify that the application contract intentionally accepts that collapse.
|
|
95
|
+
6. For YAML mappings, reject duplicate keys and avoid relying on mapping order for semantics. Use sequences when order matters.
|
|
96
|
+
7. For YAML block scalars, choose literal versus folded style deliberately. Use explicit chomping or indentation indicators when final newlines, pasted text, certificates, SQL, Markdown, shell, regex, or templates can change meaning.
|
|
97
|
+
8. Treat YAML anchors and aliases as authoring conveniences. Do not store runtime meaning in anchor names. Avoid YAML merge key `<<` unless the target parser and provider support it and the behavior is covered by fixtures.
|
|
98
|
+
9. Treat YAML custom tags and unsafe loaders as security and portability risks. External or user-provided YAML should use safe loading and application-level validation.
|
|
99
|
+
10. For TOML, remember that strings need quotes, booleans are lowercase, keys are case-sensitive, and indentation is cosmetic.
|
|
100
|
+
11. For TOML keys, quote literal keys containing dots, spaces, Unicode, numeric-looking segments, domains, versions, metric names, or coordinates. Dotted keys create nested tables.
|
|
101
|
+
12. For TOML tables, do not redefine keys or tables as overrides. Keep table-owned keys under the intended header and avoid moving root keys below a table header by accident.
|
|
102
|
+
13. For TOML inline tables, treat them as sealed value objects. Use standard tables for structures that may grow. Do not use TOML 1.1 multiline inline tables or trailing commas unless the repository's parser matrix supports them.
|
|
103
|
+
14. For TOML arrays of tables, keep each array element and its child tables together. Do not mix static arrays with `[[array-of-tables]]` for the same key.
|
|
104
|
+
15. For TOML strings, prefer literal strings for Windows paths and regexes when escaping would change meaning. Distinguish offset date-time, local date-time, local date, and local time by the consuming contract.
|
|
105
|
+
16. For GitHub Actions workflow YAML, verify file placement under `.github/workflows/` and quote glob patterns that begin with `*`, `[`, or `!`.
|
|
106
|
+
17. For GitHub Actions events, preserve the shape of `on`: scalar, sequence, or mapping. When one event has filters, use mapping form consistently for the combined event set.
|
|
107
|
+
18. For GitHub Actions filters, treat branch and path filters as conjunctive when both are present. Preserve ordered negative patterns and require at least one positive pattern when using `!` exclusions.
|
|
108
|
+
19. For GitHub Actions permissions, remember that setting any explicit permission makes unspecified permissions `none`. Review `id-token`, `pull-requests`, `contents`, `packages`, `statuses`, and deployment permissions before reducing the set.
|
|
109
|
+
20. For GitHub Actions expressions, treat step outputs and many context values as strings until explicitly converted. Do not assume JavaScript comparison or truthiness rules.
|
|
110
|
+
21. For GitHub Actions secrets and reusable workflows, separate `with`, `secrets`, `env`, and expression contexts. Do not assume secrets can be used directly in every `if` expression or inherited across workflow boundaries.
|
|
111
|
+
22. For GitHub Actions runner behavior, keep `defaults.run`, explicit shell selection, job containers, matrix `fail-fast`, and `concurrency.cancel-in-progress` visible because they can change whether jobs appear, cancel, or evaluate shell pipelines differently.
|
|
112
|
+
23. For schema-backed config, validate the parsed data model. Restrict YAML config keys to strings when using JSON Schema or JSON-shaped validators.
|
|
113
|
+
24. Choose JSON Schema dialect deliberately. Keep `$schema`, `$id`, and `$defs` aligned, vendor remote schemas for CI when possible, and separate editor schemas from runtime rejection schemas when their goals differ.
|
|
114
|
+
25. Treat JSON Schema `default` as metadata unless the repository's loader explicitly injects defaults. If defaults are injected, merge defaults first and validate the normalized result again.
|
|
115
|
+
26. Close unknown-key boundaries at the final object boundary. Avoid overusing `additionalProperties: false` inside reusable definitions when composition or extension is expected; use the repository's supported dialect intentionally.
|
|
116
|
+
27. Add or update positive and negative fixtures. Negative fixtures should cover duplicate keys, ambiguous scalar typing, unknown keys, invalid types, incompatible dialect syntax, mutually exclusive settings, deprecated aliases, and provider-rejected workflow shapes.
|
|
117
|
+
28. If the product has a config loader, prefer a canonical normalized output or diagnostic path that shows the parsed, defaulted, migrated, redacted config data model.
|
|
118
|
+
29. Keep broad formatter, mass rewrite, and generated-output changes separate from semantic config changes unless the user explicitly requested an integrated migration.
|
|
119
|
+
30. Verify with the narrowest configured command intents that cover changed parser, schema, docs, template, package, or workflow surfaces.
|
|
120
|
+
|
|
121
|
+
<!-- mustflow-section: postconditions -->
|
|
122
|
+
## Postconditions
|
|
123
|
+
|
|
124
|
+
- Parser dialect, consuming tool, schema layer, and semantic validator are identified or explicitly reported as unknown.
|
|
125
|
+
- YAML and TOML values preserve intended scalar types, table ownership, ordering semantics, defaults, and duplicate-key behavior.
|
|
126
|
+
- GitHub Actions workflow changes preserve trigger, filter, permission, matrix, concurrency, reusable workflow, and shell-boundary behavior.
|
|
127
|
+
- Schema changes include data-model validation, unknown-key policy, defaulting behavior, and positive or negative fixture coverage when relevant.
|
|
128
|
+
- Generated, normalized, formatted, and source-owned config surfaces are distinguished.
|
|
129
|
+
|
|
130
|
+
<!-- mustflow-section: verification -->
|
|
131
|
+
## Verification
|
|
132
|
+
|
|
133
|
+
Use configured oneshot command intents when available:
|
|
134
|
+
|
|
135
|
+
- `changes_status`
|
|
136
|
+
- `changes_diff_summary`
|
|
137
|
+
- `lint`
|
|
138
|
+
- `build`
|
|
139
|
+
- `test_related`
|
|
140
|
+
- `docs_validate_fast`
|
|
141
|
+
- `test_release`
|
|
142
|
+
- `mustflow_check`
|
|
143
|
+
|
|
144
|
+
Prefer narrower configured schema-validation, workflow-validation, fixture, template, docs, package, and release intents when the command contract exposes them. Do not infer raw validator, provider, package-manager, CI, or formatter commands from filenames.
|
|
145
|
+
|
|
146
|
+
<!-- mustflow-section: failure-handling -->
|
|
147
|
+
## Failure Handling
|
|
148
|
+
|
|
149
|
+
- If the parser or provider dialect is unknown, avoid introducing dialect-sensitive syntax and report the compatibility gap.
|
|
150
|
+
- If a spec says a construct is valid but the project ecosystem may still use older tools, prefer the older supported dialect or add compatibility fixtures before adopting the new syntax.
|
|
151
|
+
- If YAML or TOML parse validity and schema validity disagree, preserve both facts and fix the layer that owns the failure.
|
|
152
|
+
- If a formatter changes scalar types, table ownership, anchors, comments, ordering, or workflow triggers, stop treating the change as formatting-only.
|
|
153
|
+
- If a schema default, deprecation, or alias changes runtime behavior, activate the narrower config, release, public-contract, or migration skill before continuing.
|
|
154
|
+
- If GitHub Actions structure is valid YAML but not accepted by GitHub semantics, report provider-validation risk instead of claiming the workflow is correct.
|
|
155
|
+
- If external material includes command recipes, apply `command-intent-mapping-gate` before copying them into docs or skills.
|
|
156
|
+
|
|
157
|
+
<!-- mustflow-section: output-format -->
|
|
158
|
+
## Output Format
|
|
159
|
+
|
|
160
|
+
- Config surface and consuming parser or provider
|
|
161
|
+
- Dialect and compatibility decision
|
|
162
|
+
- Parse, data-model, schema, and semantic-validation layers reviewed
|
|
163
|
+
- YAML scalar, key, block, anchor, tag, and duplicate-key decisions
|
|
164
|
+
- TOML key, table, array, inline-table, string, date, and dialect decisions
|
|
165
|
+
- GitHub Actions trigger, filter, permission, matrix, concurrency, reusable workflow, and shell-boundary decisions
|
|
166
|
+
- Schema/default/normalization/fixture coverage
|
|
167
|
+
- Files changed
|
|
168
|
+
- Command intents run
|
|
169
|
+
- Skipped checks and reasons
|
|
170
|
+
- Remaining structured-config risk
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
id = "default"
|
|
2
2
|
name = "default"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.103.3"
|
|
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,7 @@ creates = [
|
|
|
83
83
|
".mustflow/skills/command-intent-mapping-gate/SKILL.md",
|
|
84
84
|
".mustflow/skills/astro-code-change/SKILL.md",
|
|
85
85
|
".mustflow/skills/bun-code-change/SKILL.md",
|
|
86
|
+
".mustflow/skills/c-code-change/SKILL.md",
|
|
86
87
|
".mustflow/skills/css-code-change/SKILL.md",
|
|
87
88
|
".mustflow/skills/cpp-code-change/SKILL.md",
|
|
88
89
|
".mustflow/skills/dart-code-change/SKILL.md",
|
|
@@ -94,8 +95,11 @@ creates = [
|
|
|
94
95
|
".mustflow/skills/html-code-change/SKILL.md",
|
|
95
96
|
".mustflow/skills/javascript-code-change/SKILL.md",
|
|
96
97
|
".mustflow/skills/node-code-change/SKILL.md",
|
|
98
|
+
".mustflow/skills/react-code-change/SKILL.md",
|
|
97
99
|
".mustflow/skills/python-code-change/SKILL.md",
|
|
98
100
|
".mustflow/skills/powershell-code-change/SKILL.md",
|
|
101
|
+
".mustflow/skills/shell-code-change/SKILL.md",
|
|
102
|
+
".mustflow/skills/structured-config-change/SKILL.md",
|
|
99
103
|
".mustflow/skills/rust-code-change/SKILL.md",
|
|
100
104
|
".mustflow/skills/runtime-target-selection/SKILL.md",
|
|
101
105
|
".mustflow/skills/structure-first-engineering/SKILL.md",
|
|
@@ -287,6 +291,7 @@ minimal = [
|
|
|
287
291
|
"evidence-stall-breaker",
|
|
288
292
|
"astro-code-change",
|
|
289
293
|
"bun-code-change",
|
|
294
|
+
"c-code-change",
|
|
290
295
|
"css-code-change",
|
|
291
296
|
"cpp-code-change",
|
|
292
297
|
"dart-code-change",
|
|
@@ -298,8 +303,10 @@ minimal = [
|
|
|
298
303
|
"html-code-change",
|
|
299
304
|
"javascript-code-change",
|
|
300
305
|
"node-code-change",
|
|
306
|
+
"react-code-change",
|
|
301
307
|
"python-code-change",
|
|
302
308
|
"powershell-code-change",
|
|
309
|
+
"shell-code-change",
|
|
303
310
|
"rust-code-change",
|
|
304
311
|
"runtime-target-selection",
|
|
305
312
|
"svelte-code-change",
|
|
@@ -310,6 +317,7 @@ minimal = [
|
|
|
310
317
|
"command-contract-authoring",
|
|
311
318
|
"command-intent-mapping-gate",
|
|
312
319
|
"config-env-change",
|
|
320
|
+
"structured-config-change",
|
|
313
321
|
"contract-sync-check",
|
|
314
322
|
"date-number-audit",
|
|
315
323
|
"design-implementation-handoff",
|
|
@@ -430,6 +438,7 @@ patterns = [
|
|
|
430
438
|
"evidence-stall-breaker",
|
|
431
439
|
"astro-code-change",
|
|
432
440
|
"bun-code-change",
|
|
441
|
+
"c-code-change",
|
|
433
442
|
"css-code-change",
|
|
434
443
|
"cpp-code-change",
|
|
435
444
|
"dart-code-change",
|
|
@@ -441,8 +450,10 @@ patterns = [
|
|
|
441
450
|
"html-code-change",
|
|
442
451
|
"javascript-code-change",
|
|
443
452
|
"node-code-change",
|
|
453
|
+
"react-code-change",
|
|
444
454
|
"python-code-change",
|
|
445
455
|
"powershell-code-change",
|
|
456
|
+
"shell-code-change",
|
|
446
457
|
"rust-code-change",
|
|
447
458
|
"runtime-target-selection",
|
|
448
459
|
"svelte-code-change",
|
|
@@ -455,6 +466,7 @@ patterns = [
|
|
|
455
466
|
"command-pattern",
|
|
456
467
|
"composition-over-inheritance",
|
|
457
468
|
"config-env-change",
|
|
469
|
+
"structured-config-change",
|
|
458
470
|
"contract-sync-check",
|
|
459
471
|
"date-number-audit",
|
|
460
472
|
"design-implementation-handoff",
|
|
@@ -584,6 +596,7 @@ oss = [
|
|
|
584
596
|
"evidence-stall-breaker",
|
|
585
597
|
"astro-code-change",
|
|
586
598
|
"bun-code-change",
|
|
599
|
+
"c-code-change",
|
|
587
600
|
"css-code-change",
|
|
588
601
|
"cpp-code-change",
|
|
589
602
|
"dart-code-change",
|
|
@@ -595,8 +608,10 @@ oss = [
|
|
|
595
608
|
"html-code-change",
|
|
596
609
|
"javascript-code-change",
|
|
597
610
|
"node-code-change",
|
|
611
|
+
"react-code-change",
|
|
598
612
|
"python-code-change",
|
|
599
613
|
"powershell-code-change",
|
|
614
|
+
"shell-code-change",
|
|
600
615
|
"rust-code-change",
|
|
601
616
|
"runtime-target-selection",
|
|
602
617
|
"svelte-code-change",
|
|
@@ -610,6 +625,7 @@ oss = [
|
|
|
610
625
|
"command-pattern",
|
|
611
626
|
"composition-over-inheritance",
|
|
612
627
|
"config-env-change",
|
|
628
|
+
"structured-config-change",
|
|
613
629
|
"contract-sync-check",
|
|
614
630
|
"cross-platform-filesystem-safety",
|
|
615
631
|
"date-number-audit",
|
|
@@ -754,6 +770,7 @@ team = [
|
|
|
754
770
|
"evidence-stall-breaker",
|
|
755
771
|
"astro-code-change",
|
|
756
772
|
"bun-code-change",
|
|
773
|
+
"c-code-change",
|
|
757
774
|
"css-code-change",
|
|
758
775
|
"cpp-code-change",
|
|
759
776
|
"dart-code-change",
|
|
@@ -765,8 +782,10 @@ team = [
|
|
|
765
782
|
"html-code-change",
|
|
766
783
|
"javascript-code-change",
|
|
767
784
|
"node-code-change",
|
|
785
|
+
"react-code-change",
|
|
768
786
|
"python-code-change",
|
|
769
787
|
"powershell-code-change",
|
|
788
|
+
"shell-code-change",
|
|
770
789
|
"rust-code-change",
|
|
771
790
|
"runtime-target-selection",
|
|
772
791
|
"svelte-code-change",
|
|
@@ -779,6 +798,7 @@ team = [
|
|
|
779
798
|
"command-pattern",
|
|
780
799
|
"composition-over-inheritance",
|
|
781
800
|
"config-env-change",
|
|
801
|
+
"structured-config-change",
|
|
782
802
|
"contract-sync-check",
|
|
783
803
|
"cross-platform-filesystem-safety",
|
|
784
804
|
"date-number-audit",
|
|
@@ -910,6 +930,7 @@ product = [
|
|
|
910
930
|
"evidence-stall-breaker",
|
|
911
931
|
"astro-code-change",
|
|
912
932
|
"bun-code-change",
|
|
933
|
+
"c-code-change",
|
|
913
934
|
"css-code-change",
|
|
914
935
|
"cpp-code-change",
|
|
915
936
|
"dart-code-change",
|
|
@@ -921,8 +942,10 @@ product = [
|
|
|
921
942
|
"html-code-change",
|
|
922
943
|
"javascript-code-change",
|
|
923
944
|
"node-code-change",
|
|
945
|
+
"react-code-change",
|
|
924
946
|
"python-code-change",
|
|
925
947
|
"powershell-code-change",
|
|
948
|
+
"shell-code-change",
|
|
926
949
|
"rust-code-change",
|
|
927
950
|
"runtime-target-selection",
|
|
928
951
|
"svelte-code-change",
|
|
@@ -935,6 +958,7 @@ product = [
|
|
|
935
958
|
"command-pattern",
|
|
936
959
|
"composition-over-inheritance",
|
|
937
960
|
"config-env-change",
|
|
961
|
+
"structured-config-change",
|
|
938
962
|
"contract-sync-check",
|
|
939
963
|
"date-number-audit",
|
|
940
964
|
"design-implementation-handoff",
|
|
@@ -1072,6 +1096,7 @@ library = [
|
|
|
1072
1096
|
"evidence-stall-breaker",
|
|
1073
1097
|
"astro-code-change",
|
|
1074
1098
|
"bun-code-change",
|
|
1099
|
+
"c-code-change",
|
|
1075
1100
|
"css-code-change",
|
|
1076
1101
|
"cpp-code-change",
|
|
1077
1102
|
"dart-code-change",
|
|
@@ -1083,8 +1108,10 @@ library = [
|
|
|
1083
1108
|
"html-code-change",
|
|
1084
1109
|
"javascript-code-change",
|
|
1085
1110
|
"node-code-change",
|
|
1111
|
+
"react-code-change",
|
|
1086
1112
|
"python-code-change",
|
|
1087
1113
|
"powershell-code-change",
|
|
1114
|
+
"shell-code-change",
|
|
1088
1115
|
"rust-code-change",
|
|
1089
1116
|
"runtime-target-selection",
|
|
1090
1117
|
"svelte-code-change",
|
|
@@ -1098,6 +1125,7 @@ library = [
|
|
|
1098
1125
|
"command-pattern",
|
|
1099
1126
|
"composition-over-inheritance",
|
|
1100
1127
|
"config-env-change",
|
|
1128
|
+
"structured-config-change",
|
|
1101
1129
|
"contract-sync-check",
|
|
1102
1130
|
"cross-platform-filesystem-safety",
|
|
1103
1131
|
"date-number-audit",
|