claude-nomad 0.57.0 → 0.57.1
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/CHANGELOG.md +23 -0
- package/dist/nomad.mjs +51 -6
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.57.1](https://github.com/funkadelic/claude-nomad/compare/v0.57.0...v0.57.1) (2026-07-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* catch EPERM on directory fsync for Windows compatibility ([#359](https://github.com/funkadelic/claude-nomad/issues/359)) ([d4266b2](https://github.com/funkadelic/claude-nomad/commit/d4266b2ca60a2fc2747628340726d40c774b5bfe))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
* accept hyphenated commit types in PR title gate ([#393](https://github.com/funkadelic/claude-nomad/issues/393)) ([3be650c](https://github.com/funkadelic/claude-nomad/commit/3be650cb5fffb2b70d058e78672a5e9d9568f310))
|
|
14
|
+
* **doctor:** sync settings schema keys ([#389](https://github.com/funkadelic/claude-nomad/issues/389)) ([c0b91c0](https://github.com/funkadelic/claude-nomad/commit/c0b91c0d3e958c79dc0f445bd0c48e43c6c38d5f))
|
|
15
|
+
* group codeql-action bumps into a single dependabot PR ([#391](https://github.com/funkadelic/claude-nomad/issues/391)) ([520e8be](https://github.com/funkadelic/claude-nomad/commit/520e8beec96a6e38b1d3bf887f430d7bb5a294e5))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* bump github/codeql-action from 4.36.2 to 4.36.3 ([#384](https://github.com/funkadelic/claude-nomad/issues/384)) ([f3e630c](https://github.com/funkadelic/claude-nomad/commit/f3e630c11cd6fca5bac5d17f7bc96fa4c56b7dac))
|
|
21
|
+
* bump starlight-links-validator ([#387](https://github.com/funkadelic/claude-nomad/issues/387)) ([aee5c0f](https://github.com/funkadelic/claude-nomad/commit/aee5c0fcdfeae0e44940c862a3201c22bc73943d))
|
|
22
|
+
* bump the dev-dependencies group across 1 directory with 3 updates ([#392](https://github.com/funkadelic/claude-nomad/issues/392)) ([f2c1107](https://github.com/funkadelic/claude-nomad/commit/f2c1107a179fc3b1d7d9f89675bf01281d085739))
|
|
23
|
+
* bump the prod-dependencies group in /docs-site with 3 updates ([#388](https://github.com/funkadelic/claude-nomad/issues/388)) ([5af66a7](https://github.com/funkadelic/claude-nomad/commit/5af66a7e725ef3dd936cb446280a7dab6c4fd3cb))
|
|
24
|
+
* **deps-dev:** bump the dev-dependencies group with 5 updates ([#386](https://github.com/funkadelic/claude-nomad/issues/386)) ([f9b9382](https://github.com/funkadelic/claude-nomad/commit/f9b9382e808a592d235e068a91678e84dd2d518a))
|
|
25
|
+
|
|
3
26
|
## [0.57.0](https://github.com/funkadelic/claude-nomad/compare/v0.56.2...v0.57.0) (2026-07-03)
|
|
4
27
|
|
|
5
28
|
|
package/dist/nomad.mjs
CHANGED
|
@@ -295,7 +295,10 @@ var init_settings_keys = __esm({
|
|
|
295
295
|
"use strict";
|
|
296
296
|
SCHEMA_KEYS = [
|
|
297
297
|
"$schema",
|
|
298
|
+
"advisorModel",
|
|
298
299
|
"agent",
|
|
300
|
+
"agentPushNotifEnabled",
|
|
301
|
+
"allowAllClaudeAiMcps",
|
|
299
302
|
"allowedChannelPlugins",
|
|
300
303
|
"allowedHttpHookUrls",
|
|
301
304
|
"allowedMcpServers",
|
|
@@ -305,42 +308,64 @@ var init_settings_keys = __esm({
|
|
|
305
308
|
"alwaysThinkingEnabled",
|
|
306
309
|
"apiKeyHelper",
|
|
307
310
|
"attribution",
|
|
311
|
+
"autoCompactEnabled",
|
|
308
312
|
"autoMemoryDirectory",
|
|
309
313
|
"autoMemoryEnabled",
|
|
310
314
|
"autoMode",
|
|
315
|
+
"autoScrollEnabled",
|
|
311
316
|
"autoUpdatesChannel",
|
|
312
317
|
"availableModels",
|
|
318
|
+
"awaySummaryEnabled",
|
|
313
319
|
"awsAuthRefresh",
|
|
314
320
|
"awsCredentialExport",
|
|
321
|
+
"axScreenReader",
|
|
315
322
|
"blockedMarketplaces",
|
|
316
323
|
"channelsEnabled",
|
|
324
|
+
"claudeMd",
|
|
317
325
|
"claudeMdExcludes",
|
|
318
326
|
"cleanupPeriodDays",
|
|
319
327
|
"companyAnnouncements",
|
|
320
328
|
"defaultShell",
|
|
321
329
|
"deniedMcpServers",
|
|
330
|
+
"disableAgentView",
|
|
322
331
|
"disableAllHooks",
|
|
332
|
+
"disableArtifact",
|
|
333
|
+
"disableAutoMode",
|
|
334
|
+
"disableBundledSkills",
|
|
335
|
+
"disableClaudeAiConnectors",
|
|
323
336
|
"disableDeepLinkRegistration",
|
|
324
337
|
"disabledMcpjsonServers",
|
|
338
|
+
"disableRemoteControl",
|
|
325
339
|
"disableSkillShellExecution",
|
|
340
|
+
"disableWorkflows",
|
|
341
|
+
"editorMode",
|
|
326
342
|
"effortLevel",
|
|
327
343
|
"enableAllProjectMcpServers",
|
|
328
344
|
"enabledMcpjsonServers",
|
|
329
345
|
"enabledPlugins",
|
|
346
|
+
"enforceAvailableModels",
|
|
330
347
|
"env",
|
|
331
348
|
"extraKnownMarketplaces",
|
|
349
|
+
"fallbackModel",
|
|
332
350
|
"fastMode",
|
|
333
351
|
"fastModePerSessionOptIn",
|
|
334
352
|
"feedbackSurveyRate",
|
|
353
|
+
"fileCheckpointingEnabled",
|
|
335
354
|
"fileSuggestion",
|
|
355
|
+
"footerLinksRegexes",
|
|
336
356
|
"forceLoginMethod",
|
|
337
357
|
"forceLoginOrgUUID",
|
|
338
358
|
"forceRemoteSettingsRefresh",
|
|
359
|
+
"gcpAuthRefresh",
|
|
339
360
|
"hooks",
|
|
340
361
|
"httpHookAllowedEnvVars",
|
|
341
362
|
"includeCoAuthoredBy",
|
|
342
363
|
"includeGitInstructions",
|
|
364
|
+
"inputNeededNotifEnabled",
|
|
343
365
|
"language",
|
|
366
|
+
"leftArrowOpensAgents",
|
|
367
|
+
"managedMcpServers",
|
|
368
|
+
"maxSkillDescriptionChars",
|
|
344
369
|
"minimumVersion",
|
|
345
370
|
"model",
|
|
346
371
|
"modelOverrides",
|
|
@@ -350,14 +375,22 @@ var init_settings_keys = __esm({
|
|
|
350
375
|
"permissions",
|
|
351
376
|
"plansDirectory",
|
|
352
377
|
"pluginConfigs",
|
|
378
|
+
"pluginSuggestionMarketplaces",
|
|
353
379
|
"pluginTrustMessage",
|
|
380
|
+
"policyHelper",
|
|
381
|
+
"preferredNotifChannel",
|
|
354
382
|
"prefersReducedMotion",
|
|
355
383
|
"prUrlTemplate",
|
|
384
|
+
"remoteControlAtStartup",
|
|
385
|
+
"requiredMaximumVersion",
|
|
386
|
+
"requiredMinimumVersion",
|
|
356
387
|
"respectGitignore",
|
|
388
|
+
"respondToBashCommands",
|
|
357
389
|
"sandbox",
|
|
358
390
|
"showClearContextOnPlanAccept",
|
|
359
391
|
"showThinkingSummaries",
|
|
360
392
|
"showTurnDuration",
|
|
393
|
+
"skillListingBudgetFraction",
|
|
361
394
|
"skillOverrides",
|
|
362
395
|
"skipDangerousModePermissionPrompt",
|
|
363
396
|
"skippedMarketplaces",
|
|
@@ -366,21 +399,28 @@ var init_settings_keys = __esm({
|
|
|
366
399
|
"spinnerTipsEnabled",
|
|
367
400
|
"spinnerTipsOverride",
|
|
368
401
|
"spinnerVerbs",
|
|
402
|
+
"sshConfigs",
|
|
403
|
+
"sshHostAllowlist",
|
|
369
404
|
"statusLine",
|
|
370
405
|
"strictKnownMarketplaces",
|
|
371
406
|
"strictPluginOnlyCustomization",
|
|
372
407
|
"subagentStatusLine",
|
|
408
|
+
"syntaxHighlightingDisabled",
|
|
373
409
|
"teammateMode",
|
|
374
410
|
"terminalProgressBarEnabled",
|
|
411
|
+
"theme",
|
|
375
412
|
"tui",
|
|
376
413
|
"useAutoModeDuringPlan",
|
|
414
|
+
"verbose",
|
|
377
415
|
"viewMode",
|
|
416
|
+
"voice",
|
|
378
417
|
"voiceEnabled",
|
|
418
|
+
"wheelScrollAccelerationEnabled",
|
|
419
|
+
"workflowKeywordTriggerEnabled",
|
|
379
420
|
"worktree",
|
|
380
421
|
"wslInheritsWindowsSettings"
|
|
381
422
|
];
|
|
382
423
|
APP_ONLY_KEYS = [
|
|
383
|
-
"agentPushNotifEnabled",
|
|
384
424
|
"agents",
|
|
385
425
|
"apiKeyHelperTimeoutMs",
|
|
386
426
|
"awsLoginRefresh",
|
|
@@ -388,7 +428,6 @@ var init_settings_keys = __esm({
|
|
|
388
428
|
"awsRetryMode",
|
|
389
429
|
"disableNonEssentialModelCalls",
|
|
390
430
|
"enabledExperimentalFeatures",
|
|
391
|
-
"inputNeededNotifEnabled",
|
|
392
431
|
"installMethod",
|
|
393
432
|
"pluginGroups",
|
|
394
433
|
"pluginRepositoryEnabled",
|
|
@@ -396,8 +435,7 @@ var init_settings_keys = __esm({
|
|
|
396
435
|
"proxy",
|
|
397
436
|
"skipAutoPermissionPrompt",
|
|
398
437
|
"statsig",
|
|
399
|
-
"subagents"
|
|
400
|
-
"theme"
|
|
438
|
+
"subagents"
|
|
401
439
|
];
|
|
402
440
|
KNOWN_SETTINGS_KEYS = /* @__PURE__ */ new Set([...SCHEMA_KEYS, ...APP_ONLY_KEYS]);
|
|
403
441
|
}
|
|
@@ -584,6 +622,8 @@ function writeJsonAtomic(path, data) {
|
|
|
584
622
|
const dirFd = openSync(dirname(path), "r");
|
|
585
623
|
try {
|
|
586
624
|
fsyncSync(dirFd);
|
|
625
|
+
} catch (e) {
|
|
626
|
+
if (process.platform !== "win32" || e.code !== "EPERM") throw e;
|
|
587
627
|
} finally {
|
|
588
628
|
closeSync(dirFd);
|
|
589
629
|
}
|
|
@@ -7814,7 +7854,7 @@ function parseSyncArgs(argv) {
|
|
|
7814
7854
|
// package.json
|
|
7815
7855
|
var package_default = {
|
|
7816
7856
|
name: "claude-nomad",
|
|
7817
|
-
version: "0.57.
|
|
7857
|
+
version: "0.57.1",
|
|
7818
7858
|
type: "module",
|
|
7819
7859
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
7820
7860
|
keywords: [
|
|
@@ -7876,6 +7916,11 @@ var package_default = {
|
|
|
7876
7916
|
"prettier --write"
|
|
7877
7917
|
]
|
|
7878
7918
|
},
|
|
7919
|
+
overrides: {
|
|
7920
|
+
"@conventional-changelog/git-client": {
|
|
7921
|
+
"conventional-commits-parser": "^7.0.0"
|
|
7922
|
+
}
|
|
7923
|
+
},
|
|
7879
7924
|
devDependencies: {
|
|
7880
7925
|
"@commitlint/cli": "^21.0.1",
|
|
7881
7926
|
"@commitlint/config-conventional": "^21.0.1",
|
|
@@ -7892,7 +7937,7 @@ var package_default = {
|
|
|
7892
7937
|
globals: "^17.6.0",
|
|
7893
7938
|
husky: "^9.1.7",
|
|
7894
7939
|
"lint-staged": "^17.0.5",
|
|
7895
|
-
"markdownlint-cli2": "^0.
|
|
7940
|
+
"markdownlint-cli2": "^0.23.0",
|
|
7896
7941
|
picocolors: "^1.1.1",
|
|
7897
7942
|
prettier: "^3.8.3",
|
|
7898
7943
|
typescript: "^6.0.3",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-nomad",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
6
6
|
"keywords": [
|
|
@@ -62,6 +62,11 @@
|
|
|
62
62
|
"prettier --write"
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
+
"overrides": {
|
|
66
|
+
"@conventional-changelog/git-client": {
|
|
67
|
+
"conventional-commits-parser": "^7.0.0"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
65
70
|
"devDependencies": {
|
|
66
71
|
"@commitlint/cli": "^21.0.1",
|
|
67
72
|
"@commitlint/config-conventional": "^21.0.1",
|
|
@@ -78,7 +83,7 @@
|
|
|
78
83
|
"globals": "^17.6.0",
|
|
79
84
|
"husky": "^9.1.7",
|
|
80
85
|
"lint-staged": "^17.0.5",
|
|
81
|
-
"markdownlint-cli2": "^0.
|
|
86
|
+
"markdownlint-cli2": "^0.23.0",
|
|
82
87
|
"picocolors": "^1.1.1",
|
|
83
88
|
"prettier": "^3.8.3",
|
|
84
89
|
"typescript": "^6.0.3",
|