mustflow 2.37.1 → 2.38.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/package.json +1 -1
- package/templates/default/i18n.toml +7 -1
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +2 -1
- package/templates/default/locales/en/.mustflow/skills/powershell-code-change/SKILL.md +158 -0
- package/templates/default/locales/en/.mustflow/skills/routes.toml +6 -0
- package/templates/default/manifest.toml +8 -1
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@ translations = {}
|
|
|
62
62
|
[documents."skills.index"]
|
|
63
63
|
source = "locales/en/.mustflow/skills/INDEX.md"
|
|
64
64
|
source_locale = "en"
|
|
65
|
-
revision =
|
|
65
|
+
revision = 109
|
|
66
66
|
translations = {}
|
|
67
67
|
|
|
68
68
|
[documents."skill.adapter-boundary"]
|
|
@@ -311,6 +311,12 @@ source_locale = "en"
|
|
|
311
311
|
revision = 3
|
|
312
312
|
translations = {}
|
|
313
313
|
|
|
314
|
+
[documents."skill.powershell-code-change"]
|
|
315
|
+
source = "locales/en/.mustflow/skills/powershell-code-change/SKILL.md"
|
|
316
|
+
source_locale = "en"
|
|
317
|
+
revision = 1
|
|
318
|
+
translations = {}
|
|
319
|
+
|
|
314
320
|
[documents."skill.rust-code-change"]
|
|
315
321
|
source = "locales/en/.mustflow/skills/rust-code-change/SKILL.md"
|
|
316
322
|
source_locale = "en"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
mustflow_doc: skills.index
|
|
3
3
|
locale: en
|
|
4
4
|
canonical: true
|
|
5
|
-
revision:
|
|
5
|
+
revision: 109
|
|
6
6
|
authority: router
|
|
7
7
|
lifecycle: mustflow-owned
|
|
8
8
|
---
|
|
@@ -142,6 +142,7 @@ routes. Event routes stay inactive until their event occurs.
|
|
|
142
142
|
| TypeScript source, declarations, tsconfig, package exports, module resolution, public API, compiler-version behavior, TypeScript 6-to-7 migration surfaces, native preview tooling, or TypeScript tests are created or changed | `.mustflow/skills/typescript-code-change/SKILL.md` | TypeScript config, compiler track, package entry metadata, target runtime, changed files, declaration and native-preview surfaces, and command contract entries | TypeScript source, declarations, compiler config, exports, tests, native-preview comparison notes, and directly synchronized docs | weakened type safety, module drift, public API drift, unverified declaration output, TypeScript 6 deprecation suppression, or native-preview over-adoption | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Runtime, module, type, public API, compiler-version, and native-preview boundary checked, changes made, verification, and remaining TypeScript risk |
|
|
143
143
|
| JavaScript source, module format, package entry, browser or Node runtime, dependency usage, Promise handling, bundler config, or JavaScript tests are created or changed | `.mustflow/skills/javascript-code-change/SKILL.md` | Package metadata, module system, runtime target, entrypoints, changed files, and command contract entries | JavaScript source, package exports, bundler config, dependencies, tests, and docs examples | runtime API leakage, ESM/CJS drift, discarded Promise, dependency bloat, or broken package entry | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Runtime and module boundary checked, async and dependency notes, verification, and remaining JavaScript risk |
|
|
144
144
|
| Python source, package metadata, runtime version, import layout, type checking, linting, CLI entry points, or tests are created or changed | `.mustflow/skills/python-code-change/SKILL.md` | Python version source, packaging files, import layout, lint/type/test config, changed files, and command contract entries | Python source, packaging metadata, imports, type hints, tests, and docs examples | unsupported syntax, import hacks, packaging drift, swallowed errors, or weakened lint/type checks | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Runtime, packaging, import, and type boundary checked, verification, and remaining Python risk |
|
|
145
|
+
| PowerShell scripts, modules, command examples, `pwsh` invocations, native-command wrappers, quoting, here-strings, splatting, regex, wildcard, replacement strings, or PowerShell argument passing are created or changed | `.mustflow/skills/powershell-code-change/SKILL.md` | PowerShell version and invocation path, parser layers, native-command boundary, dynamic input boundaries, changed files, and command contract entries | PowerShell scripts, modules, package scripts, CI snippets, docs examples, native-command wrappers, tests, and directly synchronized docs | parser-layer confusion, quote loss, variable over-expansion, metacharacter interpretation, native argv drift, command injection, `--%` overuse, or cross-shell `-Command` breakage | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `test_release`, `mustflow_check` | PowerShell version and invocation boundary, parser ledger, string/here-string/regex/wildcard/replacement/native argv decisions, verification, and remaining PowerShell risk |
|
|
145
146
|
| Go source, modules, package APIs, interfaces, errors, goroutines, channels, context propagation, HTTP clients or servers, reverse proxies, JSON encoding, filesystem roots, network addresses, runtime limits, benchmarks, tools, tests, or generated-code boundaries are created or changed | `.mustflow/skills/go-code-change/SKILL.md` | Module files, Go version support, full package files, tests, public API surface, concurrency owner, runtime/deployment context, changed files, and command contract entries | Go packages, module metadata, interfaces, errors, concurrency code, HTTP/proxy code, JSON encoding, filesystem and network helpers, runtime settings, tests, tools, and docs examples | unnecessary abstraction, unsupported Go feature, context loss, goroutine leak, missing timeout, JSON contract drift, filesystem traversal, IPv6 host-port bug, runtime tuning drift, error contract drift, or module drift | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Package, API, Go version, context, concurrency, runtime, HTTP, JSON, filesystem, tool, and error boundary checked, verification, and remaining Go risk |
|
|
146
147
|
| Rust source, Cargo metadata, features, traits, errors, ownership, async runtime, unsafe code, tests, examples, benchmarks, release profiles, MSRV, toolchain declarations, standard-library APIs, or public crate APIs are created or changed | `.mustflow/skills/rust-code-change/SKILL.md` | Cargo metadata, feature flags, public exports, async runtime, unsafe invariants, `rust-version`, edition, toolchain, workspace policy, changed files, and command contract entries | Rust source, Cargo metadata, features, errors, traits, tests, examples, benchmarks, profiles, and docs | clone or lock bloat, unsupported Rust feature, feature drift, Cargo resolver drift, async runtime mixing, unsafe invariant loss, release-profile overclaim, or public API breakage | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Ownership, MSRV, standard-library API, Cargo feature, async, unsafe, release-profile, and public API boundary checked, verification, and remaining Rust risk |
|
|
147
148
|
| Dart source, pub package metadata, null safety, Futures, Streams, isolates, analyzer lints, tests, CLI entry points, or public package APIs are created or changed | `.mustflow/skills/dart-code-change/SKILL.md` | Pub metadata, analyzer config, public exports, async ownership, package layout, changed files, and command contract entries | Dart source, pub metadata, exports, async code, tests, examples, and docs | null-safety bypass, discarded Future, uncanceled Stream, isolate ownership drift, or public API breakage | `changes_status`, `changes_diff_summary`, `lint`, `build`, `test_related`, `test`, `docs_validate_fast`, `mustflow_check` | Nullability, async, stream, isolate, and API boundary checked, verification, and remaining Dart risk |
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
---
|
|
2
|
+
mustflow_doc: skill.powershell-code-change
|
|
3
|
+
locale: en
|
|
4
|
+
canonical: true
|
|
5
|
+
revision: 1
|
|
6
|
+
lifecycle: mustflow-owned
|
|
7
|
+
authority: procedure
|
|
8
|
+
name: powershell-code-change
|
|
9
|
+
description: Apply this skill when PowerShell scripts, modules, command examples, pwsh invocations, native-command wrappers, or PowerShell quoting, parsing, splatting, here-string, regex, wildcard, or argument-passing behavior are created or changed.
|
|
10
|
+
metadata:
|
|
11
|
+
mustflow_schema: "1"
|
|
12
|
+
mustflow_kind: procedure
|
|
13
|
+
pack_id: mustflow.core
|
|
14
|
+
skill_id: mustflow.core.powershell-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
|
+
# PowerShell Code Change
|
|
28
|
+
|
|
29
|
+
<!-- mustflow-section: purpose -->
|
|
30
|
+
## Purpose
|
|
31
|
+
|
|
32
|
+
Preserve PowerShell parsing, quoting, native argument passing, script portability, and command-injection boundaries.
|
|
33
|
+
|
|
34
|
+
PowerShell quoting bugs usually come from parser layering, not from one wrong quote character. A command may be parsed by the host shell, PowerShell expression or argument mode, PowerShell string expansion, and then a native program parser such as `git.exe`, `cmd.exe`, `ssh`, `curl`, `python`, or `node`.
|
|
35
|
+
|
|
36
|
+
<!-- mustflow-section: use-when -->
|
|
37
|
+
## Use When
|
|
38
|
+
|
|
39
|
+
- `.ps1`, `.psm1`, `.psd1`, PowerShell profiles, Pester tests, package scripts, CI workflow steps, installer wrappers, or docs examples that run `powershell` or `pwsh` are created or changed.
|
|
40
|
+
- PowerShell strings, here-strings, interpolation, splatting, parameter binding, call operator usage, `Start-Process`, `Invoke-Expression`, `--`, `--%`, `-Command`, `-File`, `-EncodedCommand`, or stdin execution changes.
|
|
41
|
+
- PowerShell code calls native commands such as `git.exe`, `cmd.exe`, `.bat`, `.cmd`, `ssh`, `curl`, `python`, `node`, `npm`, `bun`, `docker`, `winget`, `msiexec`, or vendor CLIs.
|
|
42
|
+
- Regex, wildcard, replacement strings, JSON, YAML, XML, SQL, paths with spaces, literal `$`, literal quotes, or shell metacharacters are passed through PowerShell.
|
|
43
|
+
|
|
44
|
+
<!-- mustflow-section: do-not-use-when -->
|
|
45
|
+
## Do Not Use When
|
|
46
|
+
|
|
47
|
+
- The task only maps external command recipes to mustflow command intents; use `command-intent-mapping-gate`.
|
|
48
|
+
- The task only changes process lifecycle, subprocess cleanup, timeout, stdout, stderr, or command-length behavior outside PowerShell; use `process-execution-safety`.
|
|
49
|
+
- The task only changes cross-platform path validation or filesystem containment; use `file-path-cross-platform-change` or `cross-platform-filesystem-safety`.
|
|
50
|
+
- The PowerShell file is generated and should be regenerated by a configured intent.
|
|
51
|
+
|
|
52
|
+
<!-- mustflow-section: required-inputs -->
|
|
53
|
+
## Required Inputs
|
|
54
|
+
|
|
55
|
+
- PowerShell version and edition signals: local `pwsh` or Windows PowerShell target, CI runner image, container image, workflow shell, script shebang, package script, installer host, and deployment host.
|
|
56
|
+
- Invocation path: direct script, module import, profile load, package script, CI step, scheduled task, `pwsh -Command`, `pwsh -File`, stdin, encoded command, or another shell invoking PowerShell.
|
|
57
|
+
- Parser layers involved: host shell, PowerShell expression mode, PowerShell argument mode, expandable or verbatim strings, native command parser, regex parser, wildcard parser, replacement parser, JSON/YAML/XML/SQL parser, or remote shell.
|
|
58
|
+
- Native command boundary: executable path, argument list, wrapper extension, expected argv shape, whether literal quote characters are required, and whether `$PSNativeCommandArgumentPassing` affects behavior.
|
|
59
|
+
- Dynamic input boundaries: user input, paths, URLs, commit messages, regex patterns, replacement strings, JSON bodies, headers, credentials, environment variables, and values that may contain spaces or metacharacters.
|
|
60
|
+
- Existing test, lint, docs, package, workflow, and command-intent verification surfaces.
|
|
61
|
+
|
|
62
|
+
<!-- mustflow-section: preconditions -->
|
|
63
|
+
## Preconditions
|
|
64
|
+
|
|
65
|
+
- Identify the effective PowerShell version before relying on native argument passing behavior introduced or changed in PowerShell 7.
|
|
66
|
+
- Identify whether the target is a PowerShell cmdlet/function or a native executable before choosing quoting, `--`, `--%`, splatting, or argv construction.
|
|
67
|
+
- Treat untrusted values as data arguments, not as command text.
|
|
68
|
+
- Do not treat a raw shell command, docs snippet, or external advice as mustflow command authority.
|
|
69
|
+
|
|
70
|
+
<!-- mustflow-section: allowed-edits -->
|
|
71
|
+
## Allowed Edits
|
|
72
|
+
|
|
73
|
+
- Replace string-built command lines with arrays, hashtables, splatting, direct invocation, or repository-local helpers.
|
|
74
|
+
- Convert fragile multiline commands to splatting or here-strings when behavior stays equivalent.
|
|
75
|
+
- Add focused tests or fixtures that prove argv shape, parser behavior, escaping, failure paths, or documented examples.
|
|
76
|
+
- Update docs, command examples, CI snippets, or package scripts directly tied to the PowerShell behavior being changed.
|
|
77
|
+
- Do not add `Invoke-Expression`, broad `cmd /c`, broad `--%`, global profile mutation, policy bypasses, or command-string reconstruction to make quoting appear to work.
|
|
78
|
+
|
|
79
|
+
<!-- mustflow-section: procedure -->
|
|
80
|
+
## Procedure
|
|
81
|
+
|
|
82
|
+
1. Classify the change as script logic, module API, docs example, CI/package wrapper, native-command wrapper, regex/wildcard/replacement handling, or cross-shell PowerShell invocation.
|
|
83
|
+
2. Build the parser ledger before editing:
|
|
84
|
+
- host shell, if another shell launches PowerShell;
|
|
85
|
+
- PowerShell expression mode before a command invocation;
|
|
86
|
+
- PowerShell argument mode after a command invocation;
|
|
87
|
+
- string expansion for double-quoted strings and double-quoted here-strings;
|
|
88
|
+
- native executable, regex, wildcard, replacement, or data-format parser after PowerShell.
|
|
89
|
+
3. Prefer single-quoted strings for literal values. Use double-quoted strings only when variable or subexpression expansion is required.
|
|
90
|
+
4. In expandable strings, use subexpressions for member access, indexing, method calls, and calculations. Use `${name}` when a variable is followed by suffix text, punctuation, or a colon.
|
|
91
|
+
5. Preserve literal `$` in an expandable string with the PowerShell escape character, or switch to single quotes when no interpolation is needed.
|
|
92
|
+
6. Use quote doubling for quote characters inside the same quote style. Do not use Bash-style backslash escaping as the PowerShell rule.
|
|
93
|
+
7. Treat backtick escape sequences as PowerShell-specific and visually fragile. Avoid line-ending backticks for command continuation; prefer splatting or natural pipeline breaks.
|
|
94
|
+
8. For JSON, YAML, XML, SQL, API bodies, and long literal blobs, prefer single-quoted here-strings. Use double-quoted here-strings only when interpolation is intentional and reviewed.
|
|
95
|
+
9. Keep here-string delimiters on their own lines. Do not hide the opening or closing delimiter inside other text.
|
|
96
|
+
10. In argument mode, quote or escape metacharacters that should be passed as data, especially spaces, quotes, backticks, semicolons, pipes, ampersands, parentheses, braces, redirection characters, `@`, `#`, and commas when cmdlet array behavior matters.
|
|
97
|
+
11. Use `--` only to stop PowerShell parameter binding for PowerShell commands. Do not assume it has the same meaning for native commands.
|
|
98
|
+
12. Use `--%` only as a narrow Windows-native stop-parsing fallback for commands that cannot otherwise receive literal metacharacters. Do not use it for cross-platform scripts, dynamic expressions, or reusable libraries.
|
|
99
|
+
13. For native commands, remember that outer quotation marks are normally consumed by PowerShell to mark argument boundaries. If the native program requires literal quote characters, make the quote characters part of the argument value deliberately.
|
|
100
|
+
14. Build native command arguments as arrays and invoke with the call operator plus splatting. Keep the executable path separate from its arguments, especially when the executable path contains spaces.
|
|
101
|
+
15. Do not expect the call operator to reparse a command string into arguments. A single string after `&` is a command path, not a shell script.
|
|
102
|
+
16. Check `$PSNativeCommandArgumentPassing` when embedded quotes, empty-string arguments, `.cmd` or `.bat` wrappers, or PowerShell 5.1 versus 7.x compatibility matters. Report the mode and compatibility risk when behavior depends on it.
|
|
103
|
+
17. Prefer direct native invocation over `Start-Process` when argv fidelity matters. Use `Start-Process` only for lifecycle, window, credential, elevation, or detached-process requirements, and verify argument behavior separately.
|
|
104
|
+
18. Do not use `Invoke-Expression` for command construction. If command text appears necessary, classify the missing abstraction: data argument, script file, stdin, encoded command, or configured command intent.
|
|
105
|
+
19. For regex, wildcard, and replacement operations, account for the second parser:
|
|
106
|
+
- use single-quoted regex patterns unless PowerShell interpolation is intentional;
|
|
107
|
+
- escape replacement `$` according to replacement-string rules, not only PowerShell string rules;
|
|
108
|
+
- escape wildcard metacharacters for wildcard matching even inside single-quoted PowerShell strings.
|
|
109
|
+
20. For cross-shell PowerShell calls, avoid complex inline `-Command` strings. Prefer `-File`, stdin, or an encoded command when the repository already uses that pattern and the encoding boundary is tested. If `-Command` is used, document the host shell and PowerShell parser layers.
|
|
110
|
+
21. Keep paths as path values, not shell fragments. Prefer `-LiteralPath` when wildcard expansion is not intended, and do not compose destructive filesystem actions through a different shell.
|
|
111
|
+
22. Add or reuse verification that observes behavior, not only spelling. Useful evidence includes argv echo fixtures, Pester cases, dry-run output, parser-specific tests, or configured CI/package/docs checks.
|
|
112
|
+
23. Choose configured verification intents that cover the changed script, docs example, package metadata, CI wrapper, public command behavior, and mustflow contract surface.
|
|
113
|
+
|
|
114
|
+
<!-- mustflow-section: postconditions -->
|
|
115
|
+
## Postconditions
|
|
116
|
+
|
|
117
|
+
- The parser layers and target command type are explicit.
|
|
118
|
+
- Literal strings, expandable strings, here-strings, regex patterns, wildcard patterns, replacement strings, paths, and native argv are not conflated.
|
|
119
|
+
- Native command calls keep executable path and arguments separated unless a documented target requires otherwise.
|
|
120
|
+
- Dynamic values remain data-bound and are not reinterpreted as shell code.
|
|
121
|
+
- PowerShell version, native argument passing mode, and cross-shell boundaries are verified or reported as remaining risks.
|
|
122
|
+
|
|
123
|
+
<!-- mustflow-section: verification -->
|
|
124
|
+
## Verification
|
|
125
|
+
|
|
126
|
+
Use configured oneshot command intents when available:
|
|
127
|
+
|
|
128
|
+
- `lint`
|
|
129
|
+
- `build`
|
|
130
|
+
- `test_related`
|
|
131
|
+
- `test`
|
|
132
|
+
- `docs_validate_fast`
|
|
133
|
+
- `test_release`
|
|
134
|
+
- `mustflow_check`
|
|
135
|
+
|
|
136
|
+
Report missing PowerShell-version, argv-shape, Pester, CI-shell, Windows-native-wrapper, cross-platform, docs-example, or command-intent verification when those surfaces change.
|
|
137
|
+
|
|
138
|
+
<!-- mustflow-section: failure-handling -->
|
|
139
|
+
## Failure Handling
|
|
140
|
+
|
|
141
|
+
- If PowerShell version or invocation shell is unknown, do not introduce version-sensitive quoting or native argument passing behavior without reporting the gap.
|
|
142
|
+
- If a native command receives different argv than expected, switch to array arguments, executable-path separation, or a target-specific wrapper before adding more quote layers.
|
|
143
|
+
- If `--%` appears to be the only fix, classify it as Windows-native-only and isolate it to the smallest command boundary.
|
|
144
|
+
- If a docs example suggests raw commands, map it through `command-intent-mapping-gate` before treating it as agent-runnable.
|
|
145
|
+
- If regex, wildcard, or replacement escaping breaks, test the second parser explicitly instead of only changing PowerShell string quotes.
|
|
146
|
+
- If cross-shell `pwsh -Command` quoting becomes complex, move the script body to `-File`, stdin, or a tested encoded boundary rather than adding another quoting layer.
|
|
147
|
+
- If untrusted input is interpolated into command text, treat it as a command-injection risk and restructure around argument binding.
|
|
148
|
+
|
|
149
|
+
<!-- mustflow-section: output-format -->
|
|
150
|
+
## Output Format
|
|
151
|
+
|
|
152
|
+
- PowerShell version and invocation boundary
|
|
153
|
+
- Parser ledger
|
|
154
|
+
- String, here-string, regex, wildcard, replacement, and native argv decisions
|
|
155
|
+
- Files changed
|
|
156
|
+
- Command intents run
|
|
157
|
+
- Skipped checks and reasons
|
|
158
|
+
- Remaining PowerShell risk
|
|
@@ -234,6 +234,12 @@ route_type = "primary"
|
|
|
234
234
|
priority = 85
|
|
235
235
|
applies_to_reasons = ["code_change", "public_api_change", "test_change"]
|
|
236
236
|
|
|
237
|
+
[routes."powershell-code-change"]
|
|
238
|
+
category = "general_code"
|
|
239
|
+
route_type = "primary"
|
|
240
|
+
priority = 85
|
|
241
|
+
applies_to_reasons = ["code_change", "test_change", "docs_change", "package_metadata_change", "workflow_change"]
|
|
242
|
+
|
|
237
243
|
[routes."go-code-change"]
|
|
238
244
|
category = "general_code"
|
|
239
245
|
route_type = "primary"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
id = "default"
|
|
2
2
|
name = "default"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.38.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"
|
|
@@ -42,6 +42,7 @@ creates = [
|
|
|
42
42
|
".mustflow/skills/javascript-code-change/SKILL.md",
|
|
43
43
|
".mustflow/skills/node-code-change/SKILL.md",
|
|
44
44
|
".mustflow/skills/python-code-change/SKILL.md",
|
|
45
|
+
".mustflow/skills/powershell-code-change/SKILL.md",
|
|
45
46
|
".mustflow/skills/rust-code-change/SKILL.md",
|
|
46
47
|
".mustflow/skills/runtime-target-selection/SKILL.md",
|
|
47
48
|
".mustflow/skills/structure-first-engineering/SKILL.md",
|
|
@@ -172,6 +173,7 @@ minimal = [
|
|
|
172
173
|
"javascript-code-change",
|
|
173
174
|
"node-code-change",
|
|
174
175
|
"python-code-change",
|
|
176
|
+
"powershell-code-change",
|
|
175
177
|
"rust-code-change",
|
|
176
178
|
"runtime-target-selection",
|
|
177
179
|
"svelte-code-change",
|
|
@@ -244,6 +246,7 @@ patterns = [
|
|
|
244
246
|
"javascript-code-change",
|
|
245
247
|
"node-code-change",
|
|
246
248
|
"python-code-change",
|
|
249
|
+
"powershell-code-change",
|
|
247
250
|
"rust-code-change",
|
|
248
251
|
"runtime-target-selection",
|
|
249
252
|
"svelte-code-change",
|
|
@@ -327,6 +330,7 @@ oss = [
|
|
|
327
330
|
"javascript-code-change",
|
|
328
331
|
"node-code-change",
|
|
329
332
|
"python-code-change",
|
|
333
|
+
"powershell-code-change",
|
|
330
334
|
"rust-code-change",
|
|
331
335
|
"runtime-target-selection",
|
|
332
336
|
"svelte-code-change",
|
|
@@ -425,6 +429,7 @@ team = [
|
|
|
425
429
|
"javascript-code-change",
|
|
426
430
|
"node-code-change",
|
|
427
431
|
"python-code-change",
|
|
432
|
+
"powershell-code-change",
|
|
428
433
|
"rust-code-change",
|
|
429
434
|
"runtime-target-selection",
|
|
430
435
|
"svelte-code-change",
|
|
@@ -509,6 +514,7 @@ product = [
|
|
|
509
514
|
"javascript-code-change",
|
|
510
515
|
"node-code-change",
|
|
511
516
|
"python-code-change",
|
|
517
|
+
"powershell-code-change",
|
|
512
518
|
"rust-code-change",
|
|
513
519
|
"runtime-target-selection",
|
|
514
520
|
"svelte-code-change",
|
|
@@ -599,6 +605,7 @@ library = [
|
|
|
599
605
|
"javascript-code-change",
|
|
600
606
|
"node-code-change",
|
|
601
607
|
"python-code-change",
|
|
608
|
+
"powershell-code-change",
|
|
602
609
|
"rust-code-change",
|
|
603
610
|
"runtime-target-selection",
|
|
604
611
|
"svelte-code-change",
|