codebyplan 1.13.20 → 1.13.21

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/cli.js CHANGED
@@ -14,7 +14,7 @@ var VERSION, PACKAGE_NAME;
14
14
  var init_version = __esm({
15
15
  "src/lib/version.ts"() {
16
16
  "use strict";
17
- VERSION = "1.13.20";
17
+ VERSION = "1.13.21";
18
18
  PACKAGE_NAME = "codebyplan";
19
19
  }
20
20
  });
@@ -1453,6 +1453,9 @@ function mergeHooksIntoSettings(settings, hooksJson) {
1453
1453
  return settings;
1454
1454
  }
1455
1455
  function mergeBaseSettingsIntoSettings(settings, base) {
1456
+ for (const key of DEPRECATED_BASE_KEYS) {
1457
+ delete settings[key];
1458
+ }
1456
1459
  for (const key of SCALAR_BASE_KEYS) {
1457
1460
  if (base[key] !== void 0 && settings[key] === void 0) {
1458
1461
  settings[key] = base[key];
@@ -1508,6 +1511,9 @@ function mergeBaseSettingsIntoSettings(settings, base) {
1508
1511
  return settings;
1509
1512
  }
1510
1513
  function stripBaseSettingsFromSettings(settings, base) {
1514
+ for (const key of DEPRECATED_BASE_KEYS) {
1515
+ delete settings[key];
1516
+ }
1511
1517
  for (const key of SCALAR_BASE_KEYS) {
1512
1518
  if (base[key] !== void 0 && settings[key] === base[key]) {
1513
1519
  delete settings[key];
@@ -1587,7 +1593,7 @@ function stripOwnedHooksFromSettings(settings) {
1587
1593
  }
1588
1594
  return settings;
1589
1595
  }
1590
- var OWNER, PLACEHOLDER_RE, REPLACEMENT, SCALAR_BASE_KEYS;
1596
+ var OWNER, PLACEHOLDER_RE, REPLACEMENT, SCALAR_BASE_KEYS, DEPRECATED_BASE_KEYS;
1591
1597
  var init_settings_merge = __esm({
1592
1598
  "src/lib/settings-merge.ts"() {
1593
1599
  "use strict";
@@ -1599,7 +1605,6 @@ var init_settings_merge = __esm({
1599
1605
  "autoUpdatesChannel",
1600
1606
  "awaySummaryEnabled",
1601
1607
  "disableAgentView",
1602
- "disableRemoteControl",
1603
1608
  "editorMode",
1604
1609
  "outputStyle",
1605
1610
  "preferredNotifChannel",
@@ -1619,7 +1624,10 @@ var init_settings_merge = __esm({
1619
1624
  "autoMemoryEnabled",
1620
1625
  "effortLevel",
1621
1626
  "showClearContextOnPlanAccept",
1622
- "syntaxHighlightingDisabled",
1627
+ "syntaxHighlightingDisabled"
1628
+ ];
1629
+ DEPRECATED_BASE_KEYS = [
1630
+ "disableRemoteControl",
1623
1631
  "remoteControlAtStartup",
1624
1632
  "agentPushNotifEnabled"
1625
1633
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebyplan",
3
- "version": "1.13.20",
3
+ "version": "1.13.21",
4
4
  "description": "CLI for CodeByPlan — AI-powered development planning and tracking",
5
5
  "type": "module",
6
6
  "bin": {
@@ -3,7 +3,6 @@
3
3
  "autoUpdatesChannel": "latest",
4
4
  "awaySummaryEnabled": true,
5
5
  "disableAgentView": false,
6
- "disableRemoteControl": false,
7
6
  "editorMode": "normal",
8
7
  "outputStyle": "default",
9
8
  "preferredNotifChannel": "notifications_disabled",
@@ -24,8 +23,6 @@
24
23
  "disableSkillShellExecution": false,
25
24
  "skipWebFetchPreflight": false,
26
25
  "fastModePerSessionOptIn": false,
27
- "remoteControlAtStartup": true,
28
- "agentPushNotifEnabled": true,
29
26
  "effortLevel": "xhigh",
30
27
  "statusLine": {
31
28
  "type": "command",
@@ -3,7 +3,6 @@
3
3
  "autoUpdatesChannel": "latest",
4
4
  "awaySummaryEnabled": true,
5
5
  "disableAgentView": false,
6
- "disableRemoteControl": false,
7
6
  "editorMode": "normal",
8
7
  "outputStyle": "default",
9
8
  "preferredNotifChannel": "notifications_disabled",