claudecode-linter 2.1.138-patch.2 → 2.1.139
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/dist/contracts.js +10 -3
- package/package.json +1 -1
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.139 — extracted 2026-05-11T18:47:04.236Z
|
|
3
3
|
// Do not edit manually. Run: npm run generate-contracts
|
|
4
4
|
export const TOOLS = new Set([
|
|
5
5
|
"Agent",
|
|
@@ -222,12 +222,14 @@ export const SETTINGS_USER_FIELDS = new Set([
|
|
|
222
222
|
"awsCredentialExport",
|
|
223
223
|
"blockedMarketplaces",
|
|
224
224
|
"channelsEnabled",
|
|
225
|
+
"claudeMd",
|
|
225
226
|
"claudeMdExcludes",
|
|
226
227
|
"cleanupPeriodDays",
|
|
227
228
|
"companyAnnouncements",
|
|
228
229
|
"daemonColdStart",
|
|
229
230
|
"defaultShell",
|
|
230
231
|
"deniedMcpServers",
|
|
232
|
+
"disableAgentView",
|
|
231
233
|
"disableAllHooks",
|
|
232
234
|
"disableAutoMode",
|
|
233
235
|
"disableBackgroundAgents",
|
|
@@ -311,10 +313,15 @@ export const SETTINGS_USER_FIELDS = new Set([
|
|
|
311
313
|
"worktree",
|
|
312
314
|
"wslInheritsWindowsSettings",
|
|
313
315
|
]);
|
|
314
|
-
export const SETTINGS_PROJECT_FIELDS = new Set([
|
|
316
|
+
export const SETTINGS_PROJECT_FIELDS = new Set([
|
|
317
|
+
"permissions",
|
|
318
|
+
]);
|
|
315
319
|
// Hand-curated denylist of tools declared in agent frontmatter that never
|
|
316
320
|
// reach plugin-defined subagents at runtime. Source: tracked upstream bugs
|
|
317
321
|
// https://github.com/anthropics/claude-code/issues/52055
|
|
318
322
|
// https://github.com/anthropics/claude-code/issues/52004
|
|
319
|
-
export const PLUGIN_SUBAGENT_BLOCKED_TOOLS = new Set([
|
|
323
|
+
export const PLUGIN_SUBAGENT_BLOCKED_TOOLS = new Set([
|
|
324
|
+
"Glob",
|
|
325
|
+
"Grep",
|
|
326
|
+
]);
|
|
320
327
|
//# sourceMappingURL=contracts.js.map
|