@sideboard-ai/core 0.1.109 → 0.1.110
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.cjs +87 -12
- package/dist/agents/cursor-runner.js +37 -11
- package/dist/{agents-XB332VUJ.js → agents-MQDW3YXL.js} +6 -6
- package/dist/{agents-YIMHDI46.js → agents-WK54VP7J.js} +7 -7
- package/dist/{app-settings-EBCVMFF6.js → app-settings-5XAGNDX7.js} +3 -1
- package/dist/{app-settings-IYSSVZHH.js → app-settings-J4LUWIRN.js} +3 -1
- package/dist/{chunk-WD2TARQS.js → chunk-3UOKB6VQ.js} +40 -0
- package/dist/{chunk-756EO4GK.js → chunk-4EWPKYOU.js} +4 -4
- package/dist/{chunk-4LKD3PGO.js → chunk-4NR5FL46.js} +10 -0
- package/dist/{chunk-FBV6NK62.js → chunk-7KWYXGIU.js} +2 -2
- package/dist/{chunk-KGSVLZV6.js → chunk-A4VZXJEJ.js} +2 -0
- package/dist/{chunk-VRTKGKUW.js → chunk-AROMOP3C.js} +2 -2
- package/dist/{chunk-EW7COXYE.js → chunk-C4KHDW3U.js} +2 -2
- package/dist/{chunk-Q6B3NRCT.js → chunk-EAAB4EK5.js} +154 -287
- package/dist/{chunk-I2OJ2YSP.js → chunk-KQBI5HNT.js} +2 -2
- package/dist/{chunk-P3BQ5DOL.js → chunk-KYOTBZ6S.js} +2 -0
- package/dist/{chunk-KKHDPV45.js → chunk-RSIWPLRG.js} +473 -37
- package/dist/{chunk-NE4TOOKS.js → chunk-SGEVS5SY.js} +10 -0
- package/dist/{chunk-TROJ3PVH.js → chunk-VOD3HFLP.js} +4 -4
- package/dist/{chunk-AY2EQI2P.js → chunk-VOJSO3RM.js} +472 -46
- package/dist/{chunk-MMI4RJ5I.js → chunk-WIHKHR5R.js} +14 -3
- package/dist/{chunk-LTPX5N6K.js → chunk-XOZDAVOP.js} +162 -276
- package/dist/{chunk-OQDIYVDD.js → chunk-YFAXVUY2.js} +2 -2
- package/dist/{chunk-JVIW55KT.js → chunk-YXDR43ZC.js} +2 -2
- package/dist/{coordinator-prompt-JKOU6BWV.js → coordinator-prompt-AR66L3N4.js} +4 -4
- package/dist/{coordinator-prompt-V66BYTUV.js → coordinator-prompt-BHMLWL64.js} +4 -4
- package/dist/{global-workspace-WBQWQQQY.js → global-workspace-SKFODUQQ.js} +5 -5
- package/dist/{global-workspace-NCTBE7G7.js → global-workspace-XSUFEIAQ.js} +5 -5
- package/dist/index.cjs +835 -489
- package/dist/index.d.cts +51 -3
- package/dist/index.d.ts +51 -3
- package/dist/index.js +44 -23
- package/dist/mcp/run-stdio.cjs +812 -487
- package/dist/mcp/run-stdio.js +17 -12
- package/dist/{orchestrator-6W7EKSPO.js → orchestrator-FCZVCKBK.js} +10 -10
- package/dist/{orchestrator-JVGVPKLI.js → orchestrator-SCATSB3O.js} +8 -8
- package/dist/{thread-store-DQJGDKIJ.js → thread-store-LPTBVW5C.js} +1 -1
- package/dist/{thread-store-4OUEQ2DB.js → thread-store-OEALWU7Y.js} +1 -1
- package/dist/{workspaces-SUBEDSGB.js → workspaces-HV3J4TTW.js} +6 -6
- package/dist/{workspaces-I3554R3F.js → workspaces-XAQVKTLO.js} +6 -6
- package/dist/{worktree-7H6HB6GW.js → worktree-N2EV24EE.js} +3 -3
- package/dist/{worktree-2UWO7VEK.js → worktree-XFJED3VU.js} +3 -3
- package/package.json +1 -1
|
@@ -458,6 +458,9 @@ function normalizeAdvanced(raw) {
|
|
|
458
458
|
if (typeof source.deleteBranchOnPurge === "boolean") {
|
|
459
459
|
out.deleteBranchOnPurge = source.deleteBranchOnPurge;
|
|
460
460
|
}
|
|
461
|
+
if (typeof source.cowboyMode === "boolean") {
|
|
462
|
+
out.cowboyMode = source.cowboyMode;
|
|
463
|
+
}
|
|
461
464
|
if (typeof source.autoArchiveOnMerge === "boolean") {
|
|
462
465
|
out.autoArchiveOnMerge = source.autoArchiveOnMerge;
|
|
463
466
|
}
|
|
@@ -992,6 +995,9 @@ function updateAdvancedSettings(patch) {
|
|
|
992
995
|
if (typeof patch.deleteBranchOnPurge === "boolean") {
|
|
993
996
|
advanced.deleteBranchOnPurge = patch.deleteBranchOnPurge;
|
|
994
997
|
}
|
|
998
|
+
if (typeof patch.cowboyMode === "boolean") {
|
|
999
|
+
advanced.cowboyMode = patch.cowboyMode;
|
|
1000
|
+
}
|
|
995
1001
|
if (typeof patch.autoArchiveOnMerge === "boolean") {
|
|
996
1002
|
advanced.autoArchiveOnMerge = patch.autoArchiveOnMerge;
|
|
997
1003
|
}
|
|
@@ -1042,6 +1048,9 @@ function caffeinateWhileCloudConnectEnabled(settings = loadAppSettings()) {
|
|
|
1042
1048
|
function deleteBranchOnPurgeEnabled(settings = loadAppSettings()) {
|
|
1043
1049
|
return Boolean(settings.advanced.deleteBranchOnPurge);
|
|
1044
1050
|
}
|
|
1051
|
+
function cowboyModeEnabled(settings = loadAppSettings()) {
|
|
1052
|
+
return Boolean(settings.advanced.cowboyMode);
|
|
1053
|
+
}
|
|
1045
1054
|
function autoArchiveOnMergeEnabled(settings = loadAppSettings()) {
|
|
1046
1055
|
return Boolean(settings.advanced.autoArchiveOnMerge);
|
|
1047
1056
|
}
|
|
@@ -1182,6 +1191,7 @@ export {
|
|
|
1182
1191
|
caffeinateWhileSchedulesEnabled,
|
|
1183
1192
|
caffeinateWhileCloudConnectEnabled,
|
|
1184
1193
|
deleteBranchOnPurgeEnabled,
|
|
1194
|
+
cowboyModeEnabled,
|
|
1185
1195
|
autoArchiveOnMergeEnabled,
|
|
1186
1196
|
autoCleanupOrphansEnabled,
|
|
1187
1197
|
orchestrationQuotaOnLimit,
|
|
@@ -2,22 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
4
|
ensureGlobalCoordinatorCwd
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-AROMOP3C.js";
|
|
6
6
|
import {
|
|
7
7
|
allocateTeamName,
|
|
8
8
|
takenSlugsFromThread,
|
|
9
9
|
teamSlugFromName
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-YXDR43ZC.js";
|
|
11
11
|
import {
|
|
12
12
|
createEmptyThread,
|
|
13
13
|
listThreads,
|
|
14
14
|
updateThread,
|
|
15
15
|
writeThread
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-KYOTBZ6S.js";
|
|
17
17
|
import {
|
|
18
18
|
resolveNewThreadOptions,
|
|
19
19
|
resolveThreadDefaults
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-SGEVS5SY.js";
|
|
21
21
|
import {
|
|
22
22
|
globalAgentCwd
|
|
23
23
|
} from "./chunk-BD2ICC4D.js";
|