claudecode-linter 2.1.193 → 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.
- package/contracts/agent-frontmatter.schema.json +2 -2
- package/contracts/command-frontmatter.schema.json +2 -2
- package/contracts/hooks.schema.json +4 -4
- package/contracts/lsp.schema.json +2 -2
- package/contracts/mcp.schema.json +2 -2
- package/contracts/monitors.schema.json +2 -2
- package/contracts/plugin.schema.json +9 -6
- package/contracts/schemastore/keybindings.schema.json +3 -2
- package/contracts/schemastore/manifest.json +3 -3
- package/contracts/schemastore/settings.schema.json +1405 -69
- package/contracts/settings.schema.json +15 -6
- package/contracts/skill-frontmatter.schema.json +2 -2
- package/dist/contracts.js +4 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-
|
|
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-
|
|
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-
|
|
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."
|
|
@@ -2562,9 +2566,14 @@
|
|
|
2562
2566
|
"off",
|
|
2563
2567
|
"infinite",
|
|
2564
2568
|
"fixed",
|
|
2565
|
-
"countdown"
|
|
2569
|
+
"countdown",
|
|
2570
|
+
"padded-countdown"
|
|
2566
2571
|
],
|
|
2567
|
-
"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."
|
|
2568
2577
|
},
|
|
2569
2578
|
"autoMemoryEnabled": {
|
|
2570
2579
|
"type": "boolean",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-
|
|
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.
|
|
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",
|
|
@@ -268,6 +269,7 @@ export const SETTINGS_USER_FIELDS = new Set([
|
|
|
268
269
|
"editorMode",
|
|
269
270
|
"effortLevel",
|
|
270
271
|
"enableAllProjectMcpServers",
|
|
272
|
+
"enableArtifact",
|
|
271
273
|
"enableWorkflows",
|
|
272
274
|
"enabledMcpjsonServers",
|
|
273
275
|
"enabledPlugins",
|
|
@@ -347,6 +349,7 @@ export const SETTINGS_USER_FIELDS = new Set([
|
|
|
347
349
|
"theme",
|
|
348
350
|
"todoFeatureEnabled",
|
|
349
351
|
"totalTokensReminder",
|
|
352
|
+
"totalTokensReminderBudget",
|
|
350
353
|
"tui",
|
|
351
354
|
"ultracode",
|
|
352
355
|
"verbose",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudecode-linter",
|
|
3
|
-
"version": "2.1.
|
|
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.
|
|
79
|
+
"vitest": "4.1.10"
|
|
80
80
|
}
|
|
81
81
|
}
|