claudecode-linter 2.1.185 → 2.1.187

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
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.892Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.828Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code agent .md frontmatter",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.893Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.829Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code command .md frontmatter",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.899Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.832Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code hooks.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.871Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.811Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code .lsp.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.895Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.831Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code .mcp.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.872Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.811Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code monitors.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.869Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.810Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code plugin.json",
@@ -2037,6 +2037,7 @@
2037
2037
  "description": "Path(s) to evaluation query files for `claude plugin eval`. Defaults to `evals/`."
2038
2038
  }
2039
2039
  },
2040
+ "additionalProperties": true,
2040
2041
  "description": "Components whose manifest shape may change without a deprecation cycle. Move a key out of here once it is promoted to stable."
2041
2042
  }
2042
2043
  },
@@ -1,5 +1,5 @@
1
1
  {
2
- "fetchedAt": "2026-06-21T01:18:59.062Z",
2
+ "fetchedAt": "2026-06-24T01:03:05.723Z",
3
3
  "sources": {
4
4
  "plugin-manifest.schema.json": {
5
5
  "url": "https://www.schemastore.org/claude-code-plugin-manifest.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.889Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.825Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code settings.json",
@@ -623,6 +623,10 @@
623
623
  ],
624
624
  "description": "Default shell for input-box ! commands. Defaults to 'bash' on all platforms (no Windows auto-flip)."
625
625
  },
626
+ "respondToBashCommands": {
627
+ "type": "boolean",
628
+ "description": "Whether Claude responds after an input-box ! bash command runs. Set to false to add the command output to context without a response. Default: true."
629
+ },
626
630
  "allowManagedHooksOnly": {
627
631
  "type": "boolean",
628
632
  "description": "When true (and set in managed settings), only hooks from managed settings run. User, project, and local hooks are ignored."
@@ -2179,6 +2183,55 @@
2179
2183
  }
2180
2184
  }
2181
2185
  },
2186
+ "credentials": {
2187
+ "type": "object",
2188
+ "properties": {
2189
+ "files": {
2190
+ "type": "array",
2191
+ "items": {
2192
+ "type": "object",
2193
+ "properties": {
2194
+ "path": {
2195
+ "type": "string",
2196
+ "minLength": 1,
2197
+ "description": "Path to a credential file or directory. Same resolution as sandbox.filesystem.* paths: absolute, ~ expanded, or relative to the settings file root (project root for project settings, ~/.claude for user settings)."
2198
+ },
2199
+ "mode": {
2200
+ "const": "deny",
2201
+ "description": "Access mode for this path. Only `deny` is supported."
2202
+ }
2203
+ },
2204
+ "required": [
2205
+ "path",
2206
+ "mode"
2207
+ ]
2208
+ },
2209
+ "description": "Credential files or directories to protect. `deny` blocks reads inside the sandbox."
2210
+ },
2211
+ "envVars": {
2212
+ "type": "array",
2213
+ "items": {
2214
+ "type": "object",
2215
+ "properties": {
2216
+ "name": {
2217
+ "type": "string",
2218
+ "pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
2219
+ "description": "Environment variable name."
2220
+ },
2221
+ "mode": {
2222
+ "const": "deny",
2223
+ "description": "Access mode for this environment variable. Only `deny` is supported."
2224
+ }
2225
+ },
2226
+ "required": [
2227
+ "name",
2228
+ "mode"
2229
+ ]
2230
+ },
2231
+ "description": "Environment variables to protect. `deny` unsets the variable for sandboxed commands."
2232
+ }
2233
+ }
2234
+ },
2182
2235
  "ignoreViolations": {
2183
2236
  "type": "object",
2184
2237
  "additionalProperties": {
@@ -2668,9 +2721,10 @@
2668
2721
  "enum": [
2669
2722
  "auto",
2670
2723
  "tmux",
2724
+ "iterm2",
2671
2725
  "in-process"
2672
2726
  ],
2673
- "description": "How spawned teammates execute (tmux, in-process, auto)"
2727
+ "description": "How spawned teammates execute (tmux, iterm2, in-process, auto)"
2674
2728
  },
2675
2729
  "remoteControlAtStartup": {
2676
2730
  "type": "boolean",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.185",
3
- "extractedAt": "2026-06-21T01:18:57.891Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.187",
3
+ "extractedAt": "2026-06-24T01:03:04.827Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code SKILL.md frontmatter",
@@ -417,6 +417,12 @@
417
417
  "settings": {
418
418
  "description": "@internal"
419
419
  },
420
+ "userConfig": {
421
+ "description": "@internal"
422
+ },
423
+ "defaultEnabled": {
424
+ "description": "@internal"
425
+ },
420
426
  "experimental": {
421
427
  "description": "@internal"
422
428
  },
@@ -425,6 +431,24 @@
425
431
  },
426
432
  "metadata": {
427
433
  "description": "@internal"
434
+ },
435
+ "displayName": {
436
+ "description": "@internal"
437
+ },
438
+ "author": {
439
+ "description": "@internal"
440
+ },
441
+ "homepage": {
442
+ "description": "@internal"
443
+ },
444
+ "repository": {
445
+ "description": "@internal"
446
+ },
447
+ "license": {
448
+ "description": "@internal"
449
+ },
450
+ "keywords": {
451
+ "description": "@internal"
428
452
  }
429
453
  },
430
454
  "description": "Claude Code SKILL.md YAML frontmatter. Validates the structure of known fields; the object is intentionally permissive — unknown frontmatter keys are not schema errors (Claude Code still loads the skill), they are reported by the advisory skill-md/no-unknown-frontmatter rule."
package/dist/contracts.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Auto-generated from contracts/claude-code-contracts.json
2
- // Claude Code v2.1.185 — extracted 2026-06-21T01:18:53.389Z
2
+ // Claude Code v2.1.187 — extracted 2026-06-24T01:03:01.227Z
3
3
  // Do not edit manually. Run: npm run generate-contracts
4
4
  export const TOOLS = new Set([
5
5
  "Agent",
@@ -28,6 +28,7 @@ export const TOOLS = new Set([
28
28
  "REPL",
29
29
  "Read",
30
30
  "ReadMcpResource",
31
+ "ReadMcpResourceDir",
31
32
  "RemoteTrigger",
32
33
  "ScheduleWakeup",
33
34
  "SendMessage",
@@ -315,6 +316,7 @@ export const SETTINGS_USER_FIELDS = new Set([
315
316
  "requiredMaximumVersion",
316
317
  "requiredMinimumVersion",
317
318
  "respectGitignore",
319
+ "respondToBashCommands",
318
320
  "sandbox",
319
321
  "showClearContextOnPlanAccept",
320
322
  "showMessageTimestamps",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudecode-linter",
3
- "version": "2.1.185",
3
+ "version": "2.1.187",
4
4
  "description": "Standalone linter for Claude Code plugins and configuration files",
5
5
  "type": "module",
6
6
  "bin": {