claudecode-linter 2.1.191 → 2.1.209

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.191",
3
- "extractedAt": "2026-06-25T01:07:32.084Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.197",
3
+ "extractedAt": "2026-07-14T19:27:08.380Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code settings.json",
@@ -390,7 +390,7 @@
390
390
  },
391
391
  "model": {
392
392
  "type": "string",
393
- "description": "Model to use for this prompt hook (e.g., \"claude-sonnet-4-6\"). If not specified, uses the default small fast model."
393
+ "description": "Model to use for this prompt hook (e.g., \"claude-sonnet-5\"). If not specified, uses the default small fast model."
394
394
  },
395
395
  "continueOnBlock": {
396
396
  "type": "boolean",
@@ -431,7 +431,7 @@
431
431
  },
432
432
  "model": {
433
433
  "type": "string",
434
- "description": "Model to use for this agent hook (e.g., \"claude-sonnet-4-6\"). If not specified, uses Haiku."
434
+ "description": "Model to use for this agent hook (e.g., \"claude-sonnet-5\"). If not specified, uses Haiku."
435
435
  },
436
436
  "statusMessage": {
437
437
  "type": "string",
@@ -604,6 +604,10 @@
604
604
  "type": "boolean",
605
605
  "description": "Disable the Artifact tool (also via CLAUDE_CODE_DISABLE_ARTIFACT)."
606
606
  },
607
+ "enableArtifact": {
608
+ "type": "boolean",
609
+ "description": "Enable or disable the Artifact tool for this user. Unset = default by plan once the feature is available."
610
+ },
607
611
  "enableWorkflows": {
608
612
  "type": "boolean",
609
613
  "description": "Enable or disable the Workflows feature for this user. Unset = default by plan once the feature is available."
@@ -961,7 +965,7 @@
961
965
  },
962
966
  "hostPattern": {
963
967
  "type": "string",
964
- "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against \"github.com\". For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
968
+ "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against github.com. For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
965
969
  }
966
970
  },
967
971
  "required": [
@@ -1371,7 +1375,7 @@
1371
1375
  },
1372
1376
  "hostPattern": {
1373
1377
  "type": "string",
1374
- "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against \"github.com\". For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
1378
+ "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against github.com. For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
1375
1379
  }
1376
1380
  },
1377
1381
  "required": [
@@ -1767,7 +1771,7 @@
1767
1771
  },
1768
1772
  "hostPattern": {
1769
1773
  "type": "string",
1770
- "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against \"github.com\". For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
1774
+ "description": "Regex pattern to match the host/domain extracted from any marketplace source type. For github sources, matches against github.com. For git sources (SSH or HTTPS), extracts the hostname from the URL. Use in strictKnownMarketplaces to allow all marketplaces from a specific host (e.g., \"^github\\\\.mycompany\\\\.com$\")."
1771
1775
  }
1772
1776
  },
1773
1777
  "required": [
@@ -1997,6 +2001,10 @@
1997
2001
  },
1998
2002
  "description": "Enterprise blocklist of marketplace sources. When set in managed settings, these exact sources are blocked from being added as marketplaces. The check happens BEFORE downloading, so blocked sources never touch the filesystem."
1999
2003
  },
2004
+ "disableSideloadFlags": {
2005
+ "type": "boolean",
2006
+ "description": "When true (and set in managed settings), rejects the --plugin-dir, --plugin-url, --agents, and non-sdk --mcp-config CLI flags at startup. Closes the CLI-flag bypass of strictKnownMarketplaces. Pair with allowedMcpServers for per-server MCP control; this setting does not gate other MCP entry points (SDK setMcpServers, claude mcp add, .mcp.json). Also blocks surfaces that spawn the CLI with these flags internally (see settings documentation). Only honored from managed settings; ignored in user/project/local settings."
2007
+ },
2000
2008
  "pluginSuggestionMarketplaces": {
2001
2009
  "type": "array",
2002
2010
  "items": {
@@ -2558,9 +2566,14 @@
2558
2566
  "off",
2559
2567
  "infinite",
2560
2568
  "fixed",
2561
- "countdown"
2569
+ "countdown",
2570
+ "padded-countdown"
2562
2571
  ],
2563
- "description": "@internal Emit a <total_tokens>N tokens left</total_tokens> block in the system prompt and after each tool result. 'infinite' uses the literal value Infinite, 'fixed' uses 5000000, 'countdown' uses the live remaining context-window tokens. Defaults to off. Env var CLAUDE_CODE_TOTAL_TOKENS_REMINDER overrides."
2572
+ "description": "@internal Emit a <total_tokens>N tokens left</total_tokens> block in the system prompt and after each tool result. 'infinite' uses the literal value Infinite, 'fixed' uses 5000000, 'countdown' uses the live remaining context-window tokens, 'padded-countdown' counts down from totalTokensReminderBudget by per-agent cumulative context spend (monotonic across compaction and /clear). Defaults to off. Env var CLAUDE_CODE_TOTAL_TOKENS_REMINDER overrides."
2573
+ },
2574
+ "totalTokensReminderBudget": {
2575
+ "type": "number",
2576
+ "description": "@internal Starting budget (tokens) for totalTokensReminder 'padded-countdown' mode. Defaults to 15000000. Server-controlled via GrowthBook; env var CLAUDE_CODE_TOTAL_TOKENS_REMINDER_BUDGET overrides."
2564
2577
  },
2565
2578
  "autoMemoryEnabled": {
2566
2579
  "type": "boolean",
@@ -1,6 +1,6 @@
1
1
  {
2
- "extractedFromClaudeCodeVersion": "2.1.191",
3
- "extractedAt": "2026-06-25T01:07:32.086Z",
2
+ "extractedFromClaudeCodeVersion": "2.1.197",
3
+ "extractedAt": "2026-07-14T19:27:08.383Z",
4
4
  "schema": {
5
5
  "$schema": "https://json-schema.org/draft/2020-12/schema",
6
6
  "title": "Claude Code SKILL.md frontmatter",
package/dist/contracts.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Auto-generated from contracts/claude-code-contracts.json
2
- // Claude Code v2.1.191 — extracted 2026-06-25T01:07:27.538Z
2
+ // Claude Code v2.1.197 — extracted 2026-07-14T19:27:03.530Z
3
3
  // Do not edit manually. Run: npm run generate-contracts
4
4
  export const TOOLS = new Set([
5
5
  "Agent",
@@ -30,6 +30,7 @@ export const TOOLS = new Set([
30
30
  "ReadMcpResource",
31
31
  "ReadMcpResourceDir",
32
32
  "RemoteTrigger",
33
+ "ReportFindings",
33
34
  "ScheduleWakeup",
34
35
  "SendMessage",
35
36
  "ShowOnboardingRolePicker",
@@ -260,6 +261,7 @@ export const SETTINGS_USER_FIELDS = new Set([
260
261
  "disableBundledSkills",
261
262
  "disableClaudeAiConnectors",
262
263
  "disableRemoteControl",
264
+ "disableSideloadFlags",
263
265
  "disableSkillShellExecution",
264
266
  "disableWorkflows",
265
267
  "disabledMcpjsonServers",
@@ -267,6 +269,7 @@ export const SETTINGS_USER_FIELDS = new Set([
267
269
  "editorMode",
268
270
  "effortLevel",
269
271
  "enableAllProjectMcpServers",
272
+ "enableArtifact",
270
273
  "enableWorkflows",
271
274
  "enabledMcpjsonServers",
272
275
  "enabledPlugins",
@@ -346,6 +349,7 @@ export const SETTINGS_USER_FIELDS = new Set([
346
349
  "theme",
347
350
  "todoFeatureEnabled",
348
351
  "totalTokensReminder",
352
+ "totalTokensReminderBudget",
349
353
  "tui",
350
354
  "ultracode",
351
355
  "verbose",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudecode-linter",
3
- "version": "2.1.191",
3
+ "version": "2.1.209",
4
4
  "description": "Standalone linter for Claude Code plugins and configuration files",
5
5
  "type": "module",
6
6
  "bin": {
@@ -76,6 +76,6 @@
76
76
  "npm-check-updates": "^22.2.0",
77
77
  "tsx": "^4.21.0",
78
78
  "typescript": "^6.0.2",
79
- "vitest": "4.1.9"
79
+ "vitest": "4.1.10"
80
80
  }
81
81
  }