codebyplan 1.13.19 → 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.
|
|
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",
|
|
@@ -1616,9 +1621,13 @@ var init_settings_merge = __esm({
|
|
|
1616
1621
|
"disableSkillShellExecution",
|
|
1617
1622
|
"skipWebFetchPreflight",
|
|
1618
1623
|
"fastModePerSessionOptIn",
|
|
1624
|
+
"autoMemoryEnabled",
|
|
1619
1625
|
"effortLevel",
|
|
1620
1626
|
"showClearContextOnPlanAccept",
|
|
1621
|
-
"syntaxHighlightingDisabled"
|
|
1627
|
+
"syntaxHighlightingDisabled"
|
|
1628
|
+
];
|
|
1629
|
+
DEPRECATED_BASE_KEYS = [
|
|
1630
|
+
"disableRemoteControl",
|
|
1622
1631
|
"remoteControlAtStartup",
|
|
1623
1632
|
"agentPushNotifEnabled"
|
|
1624
1633
|
];
|
package/package.json
CHANGED
|
@@ -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",
|
|
@@ -17,14 +16,13 @@
|
|
|
17
16
|
"baseRef": "fresh"
|
|
18
17
|
},
|
|
19
18
|
"autoScrollEnabled": true,
|
|
19
|
+
"autoMemoryEnabled": false,
|
|
20
20
|
"cleanupPeriodDays": 30,
|
|
21
21
|
"includeGitInstructions": true,
|
|
22
22
|
"showThinkingSummaries": true,
|
|
23
23
|
"disableSkillShellExecution": false,
|
|
24
24
|
"skipWebFetchPreflight": false,
|
|
25
25
|
"fastModePerSessionOptIn": false,
|
|
26
|
-
"remoteControlAtStartup": true,
|
|
27
|
-
"agentPushNotifEnabled": true,
|
|
28
26
|
"effortLevel": "xhigh",
|
|
29
27
|
"statusLine": {
|
|
30
28
|
"type": "command",
|