claudecode-linter 2.1.190 → 2.1.191
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 +2 -2
- package/contracts/lsp.schema.json +2 -2
- package/contracts/mcp.schema.json +44 -2
- package/contracts/monitors.schema.json +2 -2
- package/contracts/plugin.schema.json +86 -2
- package/contracts/schemastore/manifest.json +1 -1
- package/contracts/settings.schema.json +2 -2
- package/contracts/skill-frontmatter.schema.json +2 -2
- package/dist/contracts.js +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.087Z",
|
|
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.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.089Z",
|
|
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.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.094Z",
|
|
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.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.066Z",
|
|
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.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.091Z",
|
|
4
4
|
"schema": {
|
|
5
5
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
6
6
|
"title": "Claude Code .mcp.json",
|
|
@@ -90,6 +90,27 @@
|
|
|
90
90
|
"timeout": {
|
|
91
91
|
"type": "number"
|
|
92
92
|
},
|
|
93
|
+
"tools": {
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": {
|
|
96
|
+
"type": "object",
|
|
97
|
+
"properties": {
|
|
98
|
+
"name": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"permission_policy": {
|
|
102
|
+
"enum": [
|
|
103
|
+
"always_allow",
|
|
104
|
+
"always_ask",
|
|
105
|
+
"always_deny"
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"required": [
|
|
110
|
+
"name"
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
},
|
|
93
114
|
"alwaysLoad": {
|
|
94
115
|
"type": "boolean"
|
|
95
116
|
},
|
|
@@ -223,6 +244,27 @@
|
|
|
223
244
|
"timeout": {
|
|
224
245
|
"type": "number"
|
|
225
246
|
},
|
|
247
|
+
"tools": {
|
|
248
|
+
"type": "array",
|
|
249
|
+
"items": {
|
|
250
|
+
"type": "object",
|
|
251
|
+
"properties": {
|
|
252
|
+
"name": {
|
|
253
|
+
"type": "string"
|
|
254
|
+
},
|
|
255
|
+
"permission_policy": {
|
|
256
|
+
"enum": [
|
|
257
|
+
"always_allow",
|
|
258
|
+
"always_ask",
|
|
259
|
+
"always_deny"
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"required": [
|
|
264
|
+
"name"
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
226
268
|
"alwaysLoad": {
|
|
227
269
|
"type": "boolean"
|
|
228
270
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.067Z",
|
|
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.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.065Z",
|
|
4
4
|
"schema": {
|
|
5
5
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
6
6
|
"title": "Claude Code plugin.json",
|
|
@@ -995,6 +995,27 @@
|
|
|
995
995
|
"timeout": {
|
|
996
996
|
"type": "number"
|
|
997
997
|
},
|
|
998
|
+
"tools": {
|
|
999
|
+
"type": "array",
|
|
1000
|
+
"items": {
|
|
1001
|
+
"type": "object",
|
|
1002
|
+
"properties": {
|
|
1003
|
+
"name": {
|
|
1004
|
+
"type": "string"
|
|
1005
|
+
},
|
|
1006
|
+
"permission_policy": {
|
|
1007
|
+
"enum": [
|
|
1008
|
+
"always_allow",
|
|
1009
|
+
"always_ask",
|
|
1010
|
+
"always_deny"
|
|
1011
|
+
]
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"required": [
|
|
1015
|
+
"name"
|
|
1016
|
+
]
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
998
1019
|
"alwaysLoad": {
|
|
999
1020
|
"type": "boolean"
|
|
1000
1021
|
},
|
|
@@ -1128,6 +1149,27 @@
|
|
|
1128
1149
|
"timeout": {
|
|
1129
1150
|
"type": "number"
|
|
1130
1151
|
},
|
|
1152
|
+
"tools": {
|
|
1153
|
+
"type": "array",
|
|
1154
|
+
"items": {
|
|
1155
|
+
"type": "object",
|
|
1156
|
+
"properties": {
|
|
1157
|
+
"name": {
|
|
1158
|
+
"type": "string"
|
|
1159
|
+
},
|
|
1160
|
+
"permission_policy": {
|
|
1161
|
+
"enum": [
|
|
1162
|
+
"always_allow",
|
|
1163
|
+
"always_ask",
|
|
1164
|
+
"always_deny"
|
|
1165
|
+
]
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
"required": [
|
|
1169
|
+
"name"
|
|
1170
|
+
]
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1131
1173
|
"alwaysLoad": {
|
|
1132
1174
|
"type": "boolean"
|
|
1133
1175
|
},
|
|
@@ -1362,6 +1404,27 @@
|
|
|
1362
1404
|
"timeout": {
|
|
1363
1405
|
"type": "number"
|
|
1364
1406
|
},
|
|
1407
|
+
"tools": {
|
|
1408
|
+
"type": "array",
|
|
1409
|
+
"items": {
|
|
1410
|
+
"type": "object",
|
|
1411
|
+
"properties": {
|
|
1412
|
+
"name": {
|
|
1413
|
+
"type": "string"
|
|
1414
|
+
},
|
|
1415
|
+
"permission_policy": {
|
|
1416
|
+
"enum": [
|
|
1417
|
+
"always_allow",
|
|
1418
|
+
"always_ask",
|
|
1419
|
+
"always_deny"
|
|
1420
|
+
]
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
"required": [
|
|
1424
|
+
"name"
|
|
1425
|
+
]
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1365
1428
|
"alwaysLoad": {
|
|
1366
1429
|
"type": "boolean"
|
|
1367
1430
|
},
|
|
@@ -1495,6 +1558,27 @@
|
|
|
1495
1558
|
"timeout": {
|
|
1496
1559
|
"type": "number"
|
|
1497
1560
|
},
|
|
1561
|
+
"tools": {
|
|
1562
|
+
"type": "array",
|
|
1563
|
+
"items": {
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"properties": {
|
|
1566
|
+
"name": {
|
|
1567
|
+
"type": "string"
|
|
1568
|
+
},
|
|
1569
|
+
"permission_policy": {
|
|
1570
|
+
"enum": [
|
|
1571
|
+
"always_allow",
|
|
1572
|
+
"always_ask",
|
|
1573
|
+
"always_deny"
|
|
1574
|
+
]
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"required": [
|
|
1578
|
+
"name"
|
|
1579
|
+
]
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1498
1582
|
"alwaysLoad": {
|
|
1499
1583
|
"type": "boolean"
|
|
1500
1584
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.084Z",
|
|
4
4
|
"schema": {
|
|
5
5
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
6
6
|
"title": "Claude Code settings.json",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extractedFromClaudeCodeVersion": "2.1.
|
|
3
|
-
"extractedAt": "2026-06-
|
|
2
|
+
"extractedFromClaudeCodeVersion": "2.1.191",
|
|
3
|
+
"extractedAt": "2026-06-25T01:07:32.086Z",
|
|
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.191 — extracted 2026-06-25T01:07:27.538Z
|
|
3
3
|
// Do not edit manually. Run: npm run generate-contracts
|
|
4
4
|
export const TOOLS = new Set([
|
|
5
5
|
"Agent",
|
|
@@ -182,6 +182,7 @@ export const MCP_SERVER_FIELDS = new Set([
|
|
|
182
182
|
"role",
|
|
183
183
|
"timeout",
|
|
184
184
|
"toolPermissions",
|
|
185
|
+
"tools",
|
|
185
186
|
"type",
|
|
186
187
|
"url",
|
|
187
188
|
]);
|