claudecode-linter 2.1.148 → 2.1.150

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extractedFromClaudeCodeVersion": "2.1.146",
3
- "extractedAt": "2026-05-21T20:50:34.861Z",
3
+ "extractedAt": "2026-05-22T08:16:43.683Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code settings.json",
@@ -225,6 +225,264 @@
225
225
  "description": "Enterprise denylist of MCP servers that are explicitly blocked. If a server is on the denylist, it will be blocked across all scopes including enterprise. Denylist takes precedence over allowlist - if a server is on both lists, it is denied."
226
226
  },
227
227
  "hooks": {
228
+ "type": "object",
229
+ "additionalProperties": {
230
+ "type": "array",
231
+ "items": {
232
+ "type": "object",
233
+ "properties": {
234
+ "matcher": {
235
+ "type": "string",
236
+ "description": "String pattern to match (e.g. tool names like \"Write\")"
237
+ },
238
+ "hooks": {
239
+ "type": "array",
240
+ "items": {
241
+ "oneOf": [
242
+ {
243
+ "type": "object",
244
+ "properties": {
245
+ "type": {
246
+ "const": "command",
247
+ "description": "Shell command hook type"
248
+ },
249
+ "command": {
250
+ "type": "string",
251
+ "description": "Shell command to execute"
252
+ },
253
+ "args": {
254
+ "type": "array",
255
+ "items": {
256
+ "type": "string"
257
+ },
258
+ "description": "Argument list for exec form. When present, `command` is resolved as \"+\"an executable and spawned directly with these arguments \\u2014 no shell. \"+\"Path placeholders like ${CLAUDE_PLUGIN_ROOT} are substituted per-element as plain strings, so paths with quotes, $, or backticks never reach a shell parser. When absent, `command` runs through a shell (bash on POSIX, PowerShell on Windows without Git Bash)."
259
+ },
260
+ "if": {
261
+ "type": "string",
262
+ "description": "Permission rule syntax to filter when this hook runs (e.g., \"Bash(git *)\"). Only runs if the tool call matches the pattern. Avoids spawning hooks for non-matching commands."
263
+ },
264
+ "shell": {
265
+ "enum": [
266
+ "bash",
267
+ "powershell"
268
+ ],
269
+ "description": "Shell interpreter. 'bash' uses your $SHELL (bash/zsh/sh); 'powershell' uses pwsh. Defaults to bash (powershell on Windows without Git Bash)."
270
+ },
271
+ "timeout": {
272
+ "type": "number",
273
+ "description": "Timeout in seconds for this specific command"
274
+ },
275
+ "statusMessage": {
276
+ "type": "string",
277
+ "description": "Custom status message to display in spinner while hook runs"
278
+ },
279
+ "once": {
280
+ "type": "boolean",
281
+ "description": "If true, hook runs once and is removed after execution"
282
+ },
283
+ "async": {
284
+ "type": "boolean",
285
+ "description": "If true, hook runs in background without blocking"
286
+ },
287
+ "asyncRewake": {
288
+ "type": "boolean",
289
+ "description": "If true, hook runs in background and wakes the model on exit code 2 (blocking error). Implies async."
290
+ },
291
+ "rewakeMessage": {
292
+ "type": "string",
293
+ "minLength": 1,
294
+ "description": "@internal Custom prefix for the system-reminder shown to the model when an asyncRewake hook exits with code 2. The hook output is appended after this prefix."
295
+ },
296
+ "rewakeSummary": {
297
+ "type": "string",
298
+ "minLength": 1,
299
+ "description": "@internal One-line summary shown to the user in the terminal when an asyncRewake hook exits with code 2. Defaults to \"Stop hook feedback\"."
300
+ }
301
+ },
302
+ "required": [
303
+ "type",
304
+ "command"
305
+ ]
306
+ },
307
+ {
308
+ "type": "object",
309
+ "properties": {
310
+ "type": {
311
+ "const": "prompt",
312
+ "description": "LLM prompt hook type"
313
+ },
314
+ "prompt": {
315
+ "type": "string",
316
+ "description": "Prompt to evaluate with LLM. Use $ARGUMENTS placeholder for hook input JSON."
317
+ },
318
+ "if": {
319
+ "type": "string",
320
+ "description": "Permission rule syntax to filter when this hook runs (e.g., \"Bash(git *)\"). Only runs if the tool call matches the pattern. Avoids spawning hooks for non-matching commands."
321
+ },
322
+ "timeout": {
323
+ "type": "number",
324
+ "description": "Timeout in seconds for this specific prompt evaluation"
325
+ },
326
+ "model": {
327
+ "type": "string",
328
+ "description": "Model to use for this prompt hook (e.g., \"claude-sonnet-4-6\"). If not specified, uses the default small fast model."
329
+ },
330
+ "continueOnBlock": {
331
+ "type": "boolean",
332
+ "description": "`Sets the continue value for the decision:\"block\" produced when ok is false. Default false (turn ends). Whether continue:true lets the turn proceed depends on the event's decision:\"block\" semantics. On PostToolUse, the reason is fed back to Claude and the turn continues.`"
333
+ },
334
+ "statusMessage": {
335
+ "type": "string",
336
+ "description": "Custom status message to display in spinner while hook runs"
337
+ },
338
+ "once": {
339
+ "type": "boolean",
340
+ "description": "If true, hook runs once and is removed after execution"
341
+ }
342
+ },
343
+ "required": [
344
+ "type",
345
+ "prompt"
346
+ ]
347
+ },
348
+ {
349
+ "type": "object",
350
+ "properties": {
351
+ "type": {
352
+ "const": "agent",
353
+ "description": "Agentic verifier hook type"
354
+ },
355
+ "prompt": {
356
+ "type": "string",
357
+ "description": "Prompt describing what to verify (e.g. \"Verify that unit tests ran and passed.\"). Use $ARGUMENTS placeholder for hook input JSON."
358
+ },
359
+ "if": {
360
+ "type": "string",
361
+ "description": "Permission rule syntax to filter when this hook runs (e.g., \"Bash(git *)\"). Only runs if the tool call matches the pattern. Avoids spawning hooks for non-matching commands."
362
+ },
363
+ "timeout": {
364
+ "type": "number",
365
+ "description": "Timeout in seconds for agent execution (default 60)"
366
+ },
367
+ "model": {
368
+ "type": "string",
369
+ "description": "Model to use for this agent hook (e.g., \"claude-sonnet-4-6\"). If not specified, uses Haiku."
370
+ },
371
+ "statusMessage": {
372
+ "type": "string",
373
+ "description": "Custom status message to display in spinner while hook runs"
374
+ },
375
+ "once": {
376
+ "type": "boolean",
377
+ "description": "If true, hook runs once and is removed after execution"
378
+ }
379
+ },
380
+ "required": [
381
+ "type",
382
+ "prompt"
383
+ ]
384
+ },
385
+ {
386
+ "type": "object",
387
+ "properties": {
388
+ "type": {
389
+ "const": "http",
390
+ "description": "HTTP hook type"
391
+ },
392
+ "url": {
393
+ "type": "string",
394
+ "format": "uri",
395
+ "description": "URL to POST the hook input JSON to"
396
+ },
397
+ "if": {
398
+ "type": "string",
399
+ "description": "Permission rule syntax to filter when this hook runs (e.g., \"Bash(git *)\"). Only runs if the tool call matches the pattern. Avoids spawning hooks for non-matching commands."
400
+ },
401
+ "timeout": {
402
+ "type": "number",
403
+ "description": "Timeout in seconds for this specific request"
404
+ },
405
+ "headers": {
406
+ "type": "object",
407
+ "additionalProperties": {
408
+ "type": "string"
409
+ },
410
+ "description": "Additional headers to include in the request. Values may reference environment variables using $VAR_NAME or ${VAR_NAME} syntax (e.g., \"Authorization\": \"Bearer $MY_TOKEN\"). Only variables listed in allowedEnvVars will be interpolated."
411
+ },
412
+ "allowedEnvVars": {
413
+ "type": "array",
414
+ "items": {
415
+ "type": "string"
416
+ },
417
+ "description": "Explicit list of environment variable names that may be interpolated in header values. Only variables listed here will be resolved; all other $VAR references are left as empty strings. Required for env var interpolation to work."
418
+ },
419
+ "statusMessage": {
420
+ "type": "string",
421
+ "description": "Custom status message to display in spinner while hook runs"
422
+ },
423
+ "once": {
424
+ "type": "boolean",
425
+ "description": "If true, hook runs once and is removed after execution"
426
+ }
427
+ },
428
+ "required": [
429
+ "type",
430
+ "url"
431
+ ]
432
+ },
433
+ {
434
+ "type": "object",
435
+ "properties": {
436
+ "type": {
437
+ "const": "mcp_tool",
438
+ "description": "MCP tool hook type"
439
+ },
440
+ "server": {
441
+ "type": "string",
442
+ "description": "Name of an already-configured MCP server to invoke"
443
+ },
444
+ "tool": {
445
+ "type": "string",
446
+ "description": "Name of the tool on that server to call"
447
+ },
448
+ "input": {
449
+ "type": "object",
450
+ "additionalProperties": {},
451
+ "description": "Arguments passed to the MCP tool. String values support ${path} interpolation from the hook input JSON (e.g. \"${tool_input.file_path}\")."
452
+ },
453
+ "if": {
454
+ "type": "string",
455
+ "description": "Permission rule syntax to filter when this hook runs (e.g., \"Bash(git *)\"). Only runs if the tool call matches the pattern. Avoids spawning hooks for non-matching commands."
456
+ },
457
+ "timeout": {
458
+ "type": "number",
459
+ "description": "Timeout in seconds for this specific tool call"
460
+ },
461
+ "statusMessage": {
462
+ "type": "string",
463
+ "description": "Custom status message to display in spinner while hook runs"
464
+ },
465
+ "once": {
466
+ "type": "boolean",
467
+ "description": "If true, hook runs once and is removed after execution"
468
+ }
469
+ },
470
+ "required": [
471
+ "type",
472
+ "server",
473
+ "tool"
474
+ ]
475
+ }
476
+ ]
477
+ },
478
+ "description": "List of hooks to execute when the matcher matches"
479
+ }
480
+ },
481
+ "required": [
482
+ "hooks"
483
+ ]
484
+ }
485
+ },
228
486
  "description": "Custom commands to run before/after tool executions"
229
487
  },
230
488
  "worktree": {
@@ -317,7 +575,14 @@
317
575
  },
318
576
  {
319
577
  "type": "array",
320
- "items": {}
578
+ "items": {
579
+ "enum": [
580
+ "skills",
581
+ "agents",
582
+ "hooks",
583
+ "mcp"
584
+ ]
585
+ }
321
586
  }
322
587
  ],
323
588
  "description": "'When set in managed settings, blocks non-plugin customization sources for the listed surfaces. Array form locks specific surfaces (e.g. [\"skills\", \"hooks\"]); `true` locks all four; `false` is an explicit no-op. Blocked: ~/.claude/{surface}/, .claude/{surface}/ (project), settings.json hooks, .mcp.json. NOT blocked: managed (policySettings) sources, plugin-provided customizations. '+\"Composes with strictKnownMarketplaces for end-to-end admin control \\u2014 plugins gated by \"+\"marketplace allowlist, everything else blocked here.\""
@@ -2138,6 +2403,10 @@
2138
2403
  "description": "Color theme for the UI"
2139
2404
  },
2140
2405
  "editorMode": {
2406
+ "enum": [
2407
+ "normal",
2408
+ "vim"
2409
+ ],
2141
2410
  "description": "Key binding mode for the prompt input"
2142
2411
  },
2143
2412
  "verbose": {
@@ -2145,6 +2414,15 @@
2145
2414
  "description": "Show full tool output instead of truncated summaries"
2146
2415
  },
2147
2416
  "preferredNotifChannel": {
2417
+ "enum": [
2418
+ "auto",
2419
+ "iterm2",
2420
+ "iterm2_with_bell",
2421
+ "terminal_bell",
2422
+ "kitty",
2423
+ "ghostty",
2424
+ "notifications_disabled"
2425
+ ],
2148
2426
  "description": "Preferred OS notification channel"
2149
2427
  },
2150
2428
  "autoCompactEnabled": {
@@ -2176,6 +2454,11 @@
2176
2454
  "description": "Enable the todo / task tracking panel"
2177
2455
  },
2178
2456
  "teammateMode": {
2457
+ "enum": [
2458
+ "auto",
2459
+ "tmux",
2460
+ "in-process"
2461
+ ],
2179
2462
  "description": "How spawned teammates execute (tmux, in-process, auto)"
2180
2463
  },
2181
2464
  "remoteControlAtStartup": {
@@ -1,18 +1,60 @@
1
1
  {
2
2
  "extractedFromClaudeCodeVersion": "2.1.146",
3
- "extractedAt": "2026-05-21T21:04:24.797Z",
3
+ "extractedAt": "2026-05-22T08:49:59.762Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code SKILL.md frontmatter",
7
7
  "type": "object",
8
8
  "properties": {
9
9
  "name": {
10
+ "anyOf": [
11
+ {
12
+ "type": "string"
13
+ },
14
+ {
15
+ "type": "number"
16
+ },
17
+ {
18
+ "type": "boolean"
19
+ },
20
+ {
21
+ "type": "null"
22
+ }
23
+ ],
10
24
  "description": "Display name. Defaults to the filename without extension."
11
25
  },
12
26
  "description": {
27
+ "anyOf": [
28
+ {
29
+ "type": "string"
30
+ },
31
+ {
32
+ "type": "number"
33
+ },
34
+ {
35
+ "type": "boolean"
36
+ },
37
+ {
38
+ "type": "null"
39
+ }
40
+ ],
13
41
  "description": "One-line summary shown in listings and the Skill tool."
14
42
  },
15
43
  "model": {
44
+ "anyOf": [
45
+ {
46
+ "type": "string"
47
+ },
48
+ {
49
+ "type": "number"
50
+ },
51
+ {
52
+ "type": "boolean"
53
+ },
54
+ {
55
+ "type": "null"
56
+ }
57
+ ],
16
58
  "description": "Model override (`haiku`, `sonnet`, `opus`, or a full ID). Use `inherit` to match the parent conversation."
17
59
  },
18
60
  "allowed-tools": {
@@ -43,6 +85,20 @@
43
85
  "description": "Tools available to the model while this file is active. Comma-separated string or YAML list."
44
86
  },
45
87
  "argument-hint": {
88
+ "anyOf": [
89
+ {
90
+ "type": "string"
91
+ },
92
+ {
93
+ "type": "number"
94
+ },
95
+ {
96
+ "type": "boolean"
97
+ },
98
+ {
99
+ "type": "null"
100
+ }
101
+ ],
46
102
  "description": "Placeholder text shown after the slash command name."
47
103
  },
48
104
  "arguments": {
@@ -73,21 +129,105 @@
73
129
  "description": "@internal — typed variant of argument-hint; argument-hint is the documented form"
74
130
  },
75
131
  "disable-model-invocation": {
132
+ "anyOf": [
133
+ {
134
+ "type": "string"
135
+ },
136
+ {
137
+ "type": "number"
138
+ },
139
+ {
140
+ "type": "boolean"
141
+ },
142
+ {
143
+ "type": "null"
144
+ }
145
+ ],
76
146
  "description": "If true, the model cannot invoke this via the Skill tool; only users can type the slash command."
77
147
  },
78
148
  "user-invocable": {
149
+ "anyOf": [
150
+ {
151
+ "type": "string"
152
+ },
153
+ {
154
+ "type": "number"
155
+ },
156
+ {
157
+ "type": "boolean"
158
+ },
159
+ {
160
+ "type": "null"
161
+ }
162
+ ],
79
163
  "description": "If false, hides the slash command from users; only the model can invoke it via the Skill tool."
80
164
  },
81
165
  "effort": {
166
+ "anyOf": [
167
+ {
168
+ "type": "string"
169
+ },
170
+ {
171
+ "type": "number"
172
+ },
173
+ {
174
+ "type": "boolean"
175
+ },
176
+ {
177
+ "type": "null"
178
+ }
179
+ ],
82
180
  "description": "Thinking effort for the model: `low`, `medium`, `high`, `max`, or an integer."
83
181
  },
84
182
  "shell": {
183
+ "anyOf": [
184
+ {
185
+ "type": "string"
186
+ },
187
+ {
188
+ "type": "number"
189
+ },
190
+ {
191
+ "type": "boolean"
192
+ },
193
+ {
194
+ "type": "null"
195
+ }
196
+ ],
85
197
  "description": "Shell for `!`-command blocks: `bash` or `powershell`. Defaults to bash regardless of platform."
86
198
  },
87
199
  "version": {
200
+ "anyOf": [
201
+ {
202
+ "type": "string"
203
+ },
204
+ {
205
+ "type": "number"
206
+ },
207
+ {
208
+ "type": "boolean"
209
+ },
210
+ {
211
+ "type": "null"
212
+ }
213
+ ],
88
214
  "description": "@internal — bookkeeping, not surfaced to users"
89
215
  },
90
216
  "when_to_use": {
217
+ "anyOf": [
218
+ {
219
+ "type": "string"
220
+ },
221
+ {
222
+ "type": "number"
223
+ },
224
+ {
225
+ "type": "boolean"
226
+ },
227
+ {
228
+ "type": "null"
229
+ }
230
+ ],
91
231
  "description": "Guidance for when the model should reach for this skill. Becomes part of the tool description."
92
232
  },
93
233
  "paths": {
@@ -129,15 +269,71 @@
129
269
  "description": "Where the skill runs: `inline` expands into the current conversation; `fork` spawns a subagent."
130
270
  },
131
271
  "agent": {
272
+ "anyOf": [
273
+ {
274
+ "type": "string"
275
+ },
276
+ {
277
+ "type": "number"
278
+ },
279
+ {
280
+ "type": "boolean"
281
+ },
282
+ {
283
+ "type": "null"
284
+ }
285
+ ],
132
286
  "description": "Agent type to spawn when `context: fork`."
133
287
  },
134
288
  "fallback": {
289
+ "anyOf": [
290
+ {
291
+ "type": "string"
292
+ },
293
+ {
294
+ "type": "number"
295
+ },
296
+ {
297
+ "type": "boolean"
298
+ },
299
+ {
300
+ "type": "null"
301
+ }
302
+ ],
135
303
  "description": "@internal — interim defense-in-depth for thin-pointer skill stubs. If true, this skill yields to a same-suffix plugin or MCP skill (`<plugin>:<name>` / `<server>:<name>`) when one is loaded. Stubs carrying this should be deleted once their canonical plugin/MCP skill ships, not maintained."
136
304
  },
137
305
  "created_by": {
306
+ "anyOf": [
307
+ {
308
+ "type": "string"
309
+ },
310
+ {
311
+ "type": "number"
312
+ },
313
+ {
314
+ "type": "boolean"
315
+ },
316
+ {
317
+ "type": "null"
318
+ }
319
+ ],
138
320
  "description": "@internal — provenance marker (e.g. dream-proposal)"
139
321
  },
140
322
  "improved_by": {
323
+ "anyOf": [
324
+ {
325
+ "type": "string"
326
+ },
327
+ {
328
+ "type": "number"
329
+ },
330
+ {
331
+ "type": "boolean"
332
+ },
333
+ {
334
+ "type": "null"
335
+ }
336
+ ],
141
337
  "description": "@internal — provenance marker (e.g. dream-proposal)"
142
338
  },
143
339
  "mcpServers": {
package/dist/config.js CHANGED
@@ -1,9 +1,8 @@
1
1
  import { readFileSync, existsSync } from "node:fs";
2
- import { dirname, join } from "node:path";
3
- import { fileURLToPath } from "node:url";
2
+ import { join } from "node:path";
4
3
  import { homedir } from "node:os";
5
4
  import { parse as parseYaml } from "yaml";
6
- const __dirname = dirname(fileURLToPath(import.meta.url));
5
+ import { assetCandidates } from "./utils/asset-path.js";
7
6
  const DEFAULT_CONFIG = {
8
7
  rules: {},
9
8
  };
@@ -13,7 +12,7 @@ export function loadConfig(configPath) {
13
12
  return DEFAULT_CONFIG;
14
13
  try {
15
14
  const content = readFileSync(path, "utf-8");
16
- const parsed = parseYaml(content);
15
+ const parsed = parseYaml(content, { maxAliasCount: 100 });
17
16
  if (!parsed || typeof parsed !== "object")
18
17
  return DEFAULT_CONFIG;
19
18
  const config = { rules: {} };
@@ -47,10 +46,16 @@ function findConfigFile() {
47
46
  if (existsSync(homePath))
48
47
  return homePath;
49
48
  }
50
- // 3. Fall back to bundled defaults
51
- const bundled = join(__dirname, "..", ".claudecode-lint.defaults.yaml");
52
- if (existsSync(bundled))
53
- return bundled;
49
+ // 3. Fall back to bundled defaults. Resolved relative to import.meta.url
50
+ // first (Node / npm package), then relative to process.execPath as a
51
+ // fallback for the `bun build --compile` single-executable variant.
52
+ for (const bundled of assetCandidates(import.meta.url, [
53
+ "..",
54
+ ".claudecode-lint.defaults.yaml",
55
+ ])) {
56
+ if (existsSync(bundled))
57
+ return bundled;
58
+ }
54
59
  return undefined;
55
60
  }
56
61
  export function mergeCliRules(config, enable, disable) {
package/dist/contracts.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Auto-generated from contracts/claude-code-contracts.json
2
- // Claude Code v2.1.148 — extracted 2026-05-22T07:13:45.210Z
2
+ // Claude Code v2.1.150 — extracted 2026-05-23T07:05:23.158Z
3
3
  // Do not edit manually. Run: npm run generate-contracts
4
4
  export const TOOLS = new Set([
5
5
  "Agent",
@@ -23,9 +23,11 @@ export const TOOLS = new Set([
23
23
  "NotebookEdit",
24
24
  "NotebookRead",
25
25
  "PushNotification",
26
+ "REPL",
26
27
  "Read",
27
28
  "ReadMcpResource",
28
29
  "RemoteTrigger",
30
+ "ScheduleWakeup",
29
31
  "SendMessage",
30
32
  "Skill",
31
33
  "SubscribeMcpResource",
@@ -44,6 +46,7 @@ export const TOOLS = new Set([
44
46
  "UnsubscribePolling",
45
47
  "WebFetch",
46
48
  "WebSearch",
49
+ "Workflow",
47
50
  "Write",
48
51
  ]);
49
52
  export const HOOK_EVENTS = new Set([
@@ -207,6 +210,7 @@ export const SETTINGS_USER_FIELDS = new Set([
207
210
  "advisorModel",
208
211
  "agent",
209
212
  "agentPushNotifEnabled",
213
+ "allowAllClaudeAiMcps",
210
214
  "allowManagedHooksOnly",
211
215
  "allowManagedMcpServersOnly",
212
216
  "allowManagedPermissionRulesOnly",
@@ -230,6 +234,7 @@ export const SETTINGS_USER_FIELDS = new Set([
230
234
  "awsAuthRefresh",
231
235
  "awsCredentialExport",
232
236
  "blockedMarketplaces",
237
+ "breakReminder",
233
238
  "channelsEnabled",
234
239
  "claudeMd",
235
240
  "claudeMdExcludes",
@@ -286,6 +291,7 @@ export const SETTINGS_USER_FIELDS = new Set([
286
291
  "proactive",
287
292
  "promptSuggestionEnabled",
288
293
  "proxyAuthHelper",
294
+ "quietHours",
289
295
  "remote",
290
296
  "remoteControlAtStartup",
291
297
  "respectGitignore",
@@ -389,4 +395,17 @@ export const PLUGIN_SUBAGENT_BLOCKED_TOOLS = new Set([
389
395
  "Glob",
390
396
  "Grep",
391
397
  ]);
398
+ // Hand-curated named values for the frontmatter `effort` field. The Zod
399
+ // schema types `effort` as a permissive scalar; the field's own describe()
400
+ // string in the Claude Code bundle reads: "Thinking effort for the model:
401
+ // `low`, `medium`, `high`, `max`, or an integer." — so a string `effort`
402
+ // must be one of these, and a numeric `effort` must be an integer. (The
403
+ // runtime effortLevel enum also has `xhigh`, but the frontmatter describe
404
+ // string deliberately omits it; we follow the frontmatter contract.)
405
+ export const EFFORT_LEVELS = new Set([
406
+ "low",
407
+ "medium",
408
+ "high",
409
+ "max",
410
+ ]);
392
411
  //# sourceMappingURL=contracts.js.map