claude-nomad 0.63.1 → 0.63.2
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 +34 -0
- package/dist/nomad.mjs +44 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.63.2](https://github.com/funkadelic/claude-nomad/compare/v0.63.1...v0.63.2) (2026-08-04)
|
|
4
|
+
|
|
5
|
+
### What's new
|
|
6
|
+
|
|
7
|
+
- **`nomad doctor` stops warning about settings you legitimately set.** The list of settings it
|
|
8
|
+
recognizes has been updated and synced with the current Claude Code settings schema, so settings
|
|
9
|
+
the app actually writes (quiet hours, the break reminder, the token-usage reminder, and others)
|
|
10
|
+
are no longer reported as unknown keys on an otherwise healthy machine. Entries that were never
|
|
11
|
+
settings at all have been dropped at the same time.
|
|
12
|
+
- **A new Claude Code setting is recognized within a day.** The job that tracks the official
|
|
13
|
+
settings list ran once a week, so a setting added on a Tuesday could be reported as unknown until
|
|
14
|
+
the following Monday. It now runs daily.
|
|
15
|
+
- **The list keeps its own bookkeeping straight from here.** When a setting Claude Code writes
|
|
16
|
+
ahead of its published documentation is later documented, it now moves across on its own instead
|
|
17
|
+
of being recorded in two places at once.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
* **doctor:** refresh APP_ONLY_KEYS against the current settings schema ([#487](https://github.com/funkadelic/claude-nomad/issues/487)) ([1102b41](https://github.com/funkadelic/claude-nomad/commit/1102b4180fd53b90e869dc00736b3e62c9a997cc))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
* **doctor:** sync settings schema keys ([#483](https://github.com/funkadelic/claude-nomad/issues/483)) ([c406281](https://github.com/funkadelic/claude-nomad/commit/c4062811e6568f4e3d1c1be44a090de8df810385))
|
|
28
|
+
* run the settings schema drift check daily ([#486](https://github.com/funkadelic/claude-nomad/issues/486)) ([090f247](https://github.com/funkadelic/claude-nomad/commit/090f247d5e941d08300138967560e09487f6c387))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
* bump npm-run-all2 from 9.0.2 to 9.0.3 in the dev-dependencies group ([#480](https://github.com/funkadelic/claude-nomad/issues/480)) ([9e9e7ef](https://github.com/funkadelic/claude-nomad/commit/9e9e7efcc586deafd1ce03224b88ffe8e7a0d023))
|
|
34
|
+
* bump the codeql-action group across 1 directory with 2 updates ([#481](https://github.com/funkadelic/claude-nomad/issues/481)) ([0905267](https://github.com/funkadelic/claude-nomad/commit/0905267f2a74c23a41bde5947edaa9b823d59940))
|
|
35
|
+
* bump the prod-dependencies group across 1 directory with 2 updates ([#485](https://github.com/funkadelic/claude-nomad/issues/485)) ([d77491d](https://github.com/funkadelic/claude-nomad/commit/d77491d241b9faf2cacb87b54d58591ca1dd3bef))
|
|
36
|
+
|
|
3
37
|
## [0.63.1](https://github.com/funkadelic/claude-nomad/compare/v0.63.0...v0.63.1) (2026-07-31)
|
|
4
38
|
|
|
5
39
|
|
package/dist/nomad.mjs
CHANGED
|
@@ -353,8 +353,11 @@ var init_settings_keys = __esm({
|
|
|
353
353
|
"allowManagedPermissionRulesOnly",
|
|
354
354
|
"alwaysThinkingEnabled",
|
|
355
355
|
"apiKeyHelper",
|
|
356
|
+
"askUserQuestionTimeout",
|
|
356
357
|
"attribution",
|
|
357
358
|
"autoCompactEnabled",
|
|
359
|
+
"autoConnectIde",
|
|
360
|
+
"autoInstallIdeExtension",
|
|
358
361
|
"autoMemoryDirectory",
|
|
359
362
|
"autoMemoryEnabled",
|
|
360
363
|
"autoMode",
|
|
@@ -366,6 +369,7 @@ var init_settings_keys = __esm({
|
|
|
366
369
|
"awsCredentialExport",
|
|
367
370
|
"axScreenReader",
|
|
368
371
|
"blockedMarketplaces",
|
|
372
|
+
"browserExternalPageTools",
|
|
369
373
|
"channelsEnabled",
|
|
370
374
|
"claudeMd",
|
|
371
375
|
"claudeMdExcludes",
|
|
@@ -373,24 +377,31 @@ var init_settings_keys = __esm({
|
|
|
373
377
|
"companyAnnouncements",
|
|
374
378
|
"defaultShell",
|
|
375
379
|
"deniedMcpServers",
|
|
380
|
+
"diffTool",
|
|
376
381
|
"disableAgentView",
|
|
377
382
|
"disableAllHooks",
|
|
378
383
|
"disableArtifact",
|
|
379
384
|
"disableAutoMode",
|
|
385
|
+
"disableBrowserExternalNavigation",
|
|
380
386
|
"disableBundledSkills",
|
|
381
387
|
"disableClaudeAiConnectors",
|
|
382
388
|
"disableDeepLinkRegistration",
|
|
383
389
|
"disabledMcpjsonServers",
|
|
390
|
+
"disableMobileSimulatorTools",
|
|
384
391
|
"disableRemoteControl",
|
|
392
|
+
"disableSideloadFlags",
|
|
385
393
|
"disableSkillShellExecution",
|
|
386
394
|
"disableWorkflows",
|
|
387
395
|
"editorMode",
|
|
388
396
|
"effortLevel",
|
|
397
|
+
"emojiCompletionEnabled",
|
|
389
398
|
"enableAllProjectMcpServers",
|
|
399
|
+
"enableArtifact",
|
|
390
400
|
"enabledMcpjsonServers",
|
|
391
401
|
"enabledPlugins",
|
|
392
402
|
"enforceAvailableModels",
|
|
393
403
|
"env",
|
|
404
|
+
"externalEditorContext",
|
|
394
405
|
"extraKnownMarketplaces",
|
|
395
406
|
"fallbackModel",
|
|
396
407
|
"fastMode",
|
|
@@ -399,6 +410,7 @@ var init_settings_keys = __esm({
|
|
|
399
410
|
"fileCheckpointingEnabled",
|
|
400
411
|
"fileSuggestion",
|
|
401
412
|
"footerLinksRegexes",
|
|
413
|
+
"forceLoginGatewayUrl",
|
|
402
414
|
"forceLoginMethod",
|
|
403
415
|
"forceLoginOrgUUID",
|
|
404
416
|
"forceRemoteSettingsRefresh",
|
|
@@ -411,13 +423,13 @@ var init_settings_keys = __esm({
|
|
|
411
423
|
"language",
|
|
412
424
|
"leftArrowOpensAgents",
|
|
413
425
|
"managedMcpServers",
|
|
414
|
-
"maxSkillDescriptionChars",
|
|
415
426
|
"minimumVersion",
|
|
416
427
|
"model",
|
|
417
428
|
"modelOverrides",
|
|
418
429
|
"otelHeadersHelper",
|
|
419
430
|
"outputStyle",
|
|
420
431
|
"parentSettingsBehavior",
|
|
432
|
+
"permissionExplainerEnabled",
|
|
421
433
|
"permissions",
|
|
422
434
|
"plansDirectory",
|
|
423
435
|
"pluginConfigs",
|
|
@@ -426,8 +438,10 @@ var init_settings_keys = __esm({
|
|
|
426
438
|
"policyHelper",
|
|
427
439
|
"preferredNotifChannel",
|
|
428
440
|
"prefersReducedMotion",
|
|
441
|
+
"processWrapper",
|
|
429
442
|
"prUrlTemplate",
|
|
430
443
|
"remoteControlAtStartup",
|
|
444
|
+
"requireCoworkFullVmSandbox",
|
|
431
445
|
"requiredMaximumVersion",
|
|
432
446
|
"requiredMinimumVersion",
|
|
433
447
|
"respectGitignore",
|
|
@@ -437,6 +451,7 @@ var init_settings_keys = __esm({
|
|
|
437
451
|
"showThinkingSummaries",
|
|
438
452
|
"showTurnDuration",
|
|
439
453
|
"skillListingBudgetFraction",
|
|
454
|
+
"skillListingMaxDescChars",
|
|
440
455
|
"skillOverrides",
|
|
441
456
|
"skipDangerousModePermissionPrompt",
|
|
442
457
|
"skippedMarketplaces",
|
|
@@ -452,6 +467,7 @@ var init_settings_keys = __esm({
|
|
|
452
467
|
"strictPluginOnlyCustomization",
|
|
453
468
|
"subagentStatusLine",
|
|
454
469
|
"syntaxHighlightingDisabled",
|
|
470
|
+
"teammateDefaultModel",
|
|
455
471
|
"teammateMode",
|
|
456
472
|
"terminalProgressBarEnabled",
|
|
457
473
|
"theme",
|
|
@@ -459,29 +475,41 @@ var init_settings_keys = __esm({
|
|
|
459
475
|
"useAutoModeDuringPlan",
|
|
460
476
|
"verbose",
|
|
461
477
|
"viewMode",
|
|
478
|
+
"vimInsertModeRemaps",
|
|
462
479
|
"voice",
|
|
463
480
|
"voiceEnabled",
|
|
464
481
|
"wheelScrollAccelerationEnabled",
|
|
465
482
|
"workflowKeywordTriggerEnabled",
|
|
483
|
+
"workflowSizeGuideline",
|
|
466
484
|
"worktree",
|
|
467
485
|
"wslInheritsWindowsSettings"
|
|
468
486
|
];
|
|
469
487
|
APP_ONLY_KEYS = [
|
|
470
|
-
"
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
"
|
|
476
|
-
"
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"
|
|
488
|
+
"autoCompactWindow",
|
|
489
|
+
"autoDreamEnabled",
|
|
490
|
+
"autoUploadSessions",
|
|
491
|
+
"breakReminder",
|
|
492
|
+
"daemonColdStart",
|
|
493
|
+
"defaultView",
|
|
494
|
+
"doneMeansMerged",
|
|
495
|
+
"enableWorkflows",
|
|
496
|
+
"feedbackDrafts",
|
|
497
|
+
"isolatePeerMachines",
|
|
498
|
+
"precomputeCompactionEnabled",
|
|
499
|
+
"promptSuggestionEnabled",
|
|
500
|
+
"proxyAuthHelper",
|
|
501
|
+
"quietHours",
|
|
502
|
+
"remote",
|
|
503
|
+
"showMessageTimestamps",
|
|
482
504
|
"skipAutoPermissionPrompt",
|
|
483
|
-
"
|
|
484
|
-
"
|
|
505
|
+
"skipWorkflowUsageWarning",
|
|
506
|
+
"switchModelsOnFlag",
|
|
507
|
+
"terminalTitleFromRename",
|
|
508
|
+
"todoFeatureEnabled",
|
|
509
|
+
"totalTokensReminder",
|
|
510
|
+
"totalTokensReminderAfterUserTurn",
|
|
511
|
+
"totalTokensReminderBudget",
|
|
512
|
+
"ultracode"
|
|
485
513
|
];
|
|
486
514
|
KNOWN_SETTINGS_KEYS = /* @__PURE__ */ new Set([...SCHEMA_KEYS, ...APP_ONLY_KEYS]);
|
|
487
515
|
}
|
|
@@ -9507,7 +9535,7 @@ function parseSyncArgs(argv) {
|
|
|
9507
9535
|
// package.json
|
|
9508
9536
|
var package_default = {
|
|
9509
9537
|
name: "claude-nomad",
|
|
9510
|
-
version: "0.63.
|
|
9538
|
+
version: "0.63.2",
|
|
9511
9539
|
type: "module",
|
|
9512
9540
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
9513
9541
|
keywords: [
|
package/package.json
CHANGED