@sideboard-ai/core 0.1.103 → 0.1.109
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/agents/cursor-runner.js +2 -2
- package/dist/{agents-UT5GCJH3.js → agents-XB332VUJ.js} +5 -5
- package/dist/{agents-XZBAKBO2.js → agents-YIMHDI46.js} +8 -8
- package/dist/{app-settings-VDJK2BZ2.js → app-settings-EBCVMFF6.js} +3 -1
- package/dist/{app-settings-EKJM2344.js → app-settings-IYSSVZHH.js} +4 -2
- package/dist/{chunk-XHZJJWLI.js → chunk-4LKD3PGO.js} +11 -1
- package/dist/{chunk-TLPJHLLM.js → chunk-4TR3HZFT.js} +1 -1
- package/dist/{chunk-HHLZWO7U.js → chunk-756EO4GK.js} +7 -7
- package/dist/{chunk-LANDJIAI.js → chunk-AY2EQI2P.js} +16 -13
- package/dist/{chunk-DHAGMJIK.js → chunk-EW7COXYE.js} +1 -1
- package/dist/{chunk-27MCESES.js → chunk-FBV6NK62.js} +2 -2
- package/dist/{chunk-ETMRBJKA.js → chunk-I2OJ2YSP.js} +10 -17
- package/dist/{chunk-WA3DVVWG.js → chunk-JVIW55KT.js} +1 -1
- package/dist/{chunk-H6LP57EF.js → chunk-KKHDPV45.js} +17 -16
- package/dist/chunk-LTPX5N6K.js +6991 -0
- package/dist/{chunk-WSYCND2U.js → chunk-NE4TOOKS.js} +11 -1
- package/dist/{chunk-ND6AO7C5.js → chunk-OQDIYVDD.js} +2 -2
- package/dist/chunk-Q6B3NRCT.js +7335 -0
- package/dist/{chunk-OW34MVDN.js → chunk-TROJ3PVH.js} +3 -3
- package/dist/{chunk-YJADJH5U.js → chunk-VRTKGKUW.js} +10 -17
- package/dist/{chunk-HUKCGRAT.js → chunk-WD2TARQS.js} +7 -2
- package/dist/{coordinator-prompt-UWHSD65V.js → coordinator-prompt-JKOU6BWV.js} +4 -4
- package/dist/{coordinator-prompt-3DFZRMXE.js → coordinator-prompt-V66BYTUV.js} +3 -3
- package/dist/{global-workspace-UR4E3CCG.js → global-workspace-NCTBE7G7.js} +5 -5
- package/dist/{global-workspace-KJQS5S2C.js → global-workspace-WBQWQQQY.js} +4 -4
- package/dist/index.cjs +11716 -10808
- package/dist/index.d.cts +162 -35
- package/dist/index.d.ts +162 -35
- package/dist/index.js +774 -7046
- package/dist/mcp/run-stdio.cjs +14582 -13657
- package/dist/mcp/run-stdio.js +400 -6706
- package/dist/orchestrator-6W7EKSPO.js +32 -0
- package/dist/orchestrator-JVGVPKLI.js +31 -0
- package/dist/{workspaces-NTIVI6DI.js → workspaces-I3554R3F.js} +5 -5
- package/dist/{workspaces-TKJXPNV4.js → workspaces-SUBEDSGB.js} +6 -6
- package/dist/{worktree-PEUPFAKL.js → worktree-2UWO7VEK.js} +3 -3
- package/dist/{worktree-NKWN5ZTS.js → worktree-7H6HB6GW.js} +2 -2
- package/package.json +2 -1
|
@@ -54,7 +54,7 @@ function isElectronLikeCommand(command) {
|
|
|
54
54
|
const name = command.trim();
|
|
55
55
|
if (!name) return false;
|
|
56
56
|
if (process.versions.electron && name === process.execPath) return true;
|
|
57
|
-
return /(?:^|[/\\])Electron(?:\.exe)?$/i.test(name) || /
|
|
57
|
+
return /(?:^|[/\\])Electron(?:\.exe)?$/i.test(name) || /(?:^|[/\\])Sideboard(?:\.exe)?$/i.test(name) || /(?:Sideboard|Electron)\.app[/\\]Contents[/\\]MacOS[/\\]/i.test(name);
|
|
58
58
|
}
|
|
59
59
|
function unwrapStrippedElectronLaunch(command, args) {
|
|
60
60
|
if (!isStrippedElectronLaunch(command, args) || !args || args.length < 4) {
|
|
@@ -452,6 +452,9 @@ function normalizeAdvanced(raw) {
|
|
|
452
452
|
} else if (typeof source.caffeinateWhileCloudConnect === "boolean") {
|
|
453
453
|
out.caffeinateWhileSlackListen = source.caffeinateWhileCloudConnect;
|
|
454
454
|
}
|
|
455
|
+
if (typeof source.caffeinateWhileSchedules === "boolean") {
|
|
456
|
+
out.caffeinateWhileSchedules = source.caffeinateWhileSchedules;
|
|
457
|
+
}
|
|
455
458
|
if (typeof source.deleteBranchOnPurge === "boolean") {
|
|
456
459
|
out.deleteBranchOnPurge = source.deleteBranchOnPurge;
|
|
457
460
|
}
|
|
@@ -983,6 +986,9 @@ function updateAdvancedSettings(patch) {
|
|
|
983
986
|
advanced.caffeinateWhileSlackListen = patch.caffeinateWhileCloudConnect;
|
|
984
987
|
delete advanced.caffeinateWhileCloudConnect;
|
|
985
988
|
}
|
|
989
|
+
if (typeof patch.caffeinateWhileSchedules === "boolean") {
|
|
990
|
+
advanced.caffeinateWhileSchedules = patch.caffeinateWhileSchedules;
|
|
991
|
+
}
|
|
986
992
|
if (typeof patch.deleteBranchOnPurge === "boolean") {
|
|
987
993
|
advanced.deleteBranchOnPurge = patch.deleteBranchOnPurge;
|
|
988
994
|
}
|
|
@@ -1027,6 +1033,9 @@ function caffeinateWhileRunningEnabled(settings = loadAppSettings()) {
|
|
|
1027
1033
|
function caffeinateWhileSlackListenEnabled(settings = loadAppSettings()) {
|
|
1028
1034
|
return Boolean(settings.advanced.caffeinateWhileSlackListen);
|
|
1029
1035
|
}
|
|
1036
|
+
function caffeinateWhileSchedulesEnabled(settings = loadAppSettings()) {
|
|
1037
|
+
return Boolean(settings.advanced.caffeinateWhileSchedules);
|
|
1038
|
+
}
|
|
1030
1039
|
function caffeinateWhileCloudConnectEnabled(settings = loadAppSettings()) {
|
|
1031
1040
|
return caffeinateWhileSlackListenEnabled(settings);
|
|
1032
1041
|
}
|
|
@@ -1170,6 +1179,7 @@ export {
|
|
|
1170
1179
|
autoRunAfterSetupEnabled,
|
|
1171
1180
|
caffeinateWhileRunningEnabled,
|
|
1172
1181
|
caffeinateWhileSlackListenEnabled,
|
|
1182
|
+
caffeinateWhileSchedulesEnabled,
|
|
1173
1183
|
caffeinateWhileCloudConnectEnabled,
|
|
1174
1184
|
deleteBranchOnPurgeEnabled,
|
|
1175
1185
|
autoArchiveOnMergeEnabled,
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
4
|
isGlobalRepoPath
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-TROJ3PVH.js";
|
|
6
6
|
import {
|
|
7
7
|
ensureGhPreferOrigin,
|
|
8
8
|
resolveRepoRoot
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-JVIW55KT.js";
|
|
10
10
|
import {
|
|
11
11
|
appDataDir
|
|
12
12
|
} from "./chunk-BD2ICC4D.js";
|