@sideboard-ai/core 0.1.51 → 0.1.53
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 +43 -4
- package/dist/agents/cursor-runner.js +45 -6
- package/dist/{agents-HIEJL3UV.js → agents-KP7UJEHJ.js} +1 -1
- package/dist/{agents-5ROTZNCX.js → agents-KYACODJ3.js} +2 -2
- package/dist/{chunk-5ZPSH7VI.js → chunk-A6HVEMIB.js} +16 -7
- package/dist/chunk-B3SJXYIJ.js +24 -0
- package/dist/{chunk-7EUWSBWR.js → chunk-BZST4HMJ.js} +21 -6
- package/dist/{chunk-ZH5QZ4CR.js → chunk-DZFH2KLT.js} +280 -7
- package/dist/chunk-FKOIHGKV.js +21 -0
- package/dist/{chunk-E4VVEKAM.js → chunk-GNML24AW.js} +2 -2
- package/dist/{chunk-EOYDCKQC.js → chunk-HLEX5AQ6.js} +4 -0
- package/dist/{chunk-K3WMKGFY.js → chunk-LRLKJM3O.js} +2 -1
- package/dist/chunk-N5PM7HGQ.js +103 -0
- package/dist/chunk-QTUESPAW.js +101 -0
- package/dist/{chunk-O6W3P7V3.js → chunk-TSRXOSVD.js} +4 -0
- package/dist/{chunk-F4Q3IM6V.js → chunk-UEAHMGHW.js} +2 -1
- package/dist/{chunk-J5JTEJ5O.js → chunk-VG22SETP.js} +6 -0
- package/dist/{chunk-XRSAGVRW.js → chunk-XOU6HNQJ.js} +245 -7
- package/dist/{chunk-O5DOO7DP.js → chunk-XX5BB7NV.js} +3 -3
- package/dist/{chunk-QN7XNQAT.js → chunk-YDXQ72MD.js} +2 -2
- package/dist/{chunk-YFJ4FG2P.js → chunk-YOWIYAVA.js} +3 -3
- package/dist/{coordinator-prompt-7HHJRO7B.js → coordinator-prompt-6FXVTSFN.js} +4 -3
- package/dist/{coordinator-prompt-WD7FAMA2.js → coordinator-prompt-S6JZD5EF.js} +4 -3
- package/dist/{global-workspace-OJEPGDXA.js → global-workspace-EV4G2WMQ.js} +5 -4
- package/dist/{global-workspace-ECYN2MKL.js → global-workspace-MSX2K27Y.js} +5 -4
- package/dist/index.cjs +1383 -149
- package/dist/index.d.cts +389 -15
- package/dist/index.d.ts +389 -15
- package/dist/index.js +883 -91
- package/dist/mcp/run-stdio.cjs +1154 -141
- package/dist/mcp/run-stdio.js +709 -79
- package/dist/plan-file-6O7G4VPQ.js +23 -0
- package/dist/plan-file-PHVKUAEE.js +25 -0
- package/dist/{thread-store-XICUWFNM.js → thread-store-GHOADGL2.js} +1 -1
- package/dist/{thread-store-OV2X6PYO.js → thread-store-UJIGMI5J.js} +1 -1
- package/dist/{workspaces-MUU7RGVV.js → workspaces-3RQQZQRO.js} +6 -5
- package/dist/{workspaces-ZWOOFZUV.js → workspaces-AYTBR6KQ.js} +6 -5
- package/dist/{worktree-DVNDMWZ7.js → worktree-5KEQWSAF.js} +5 -2
- package/dist/{worktree-GDV56MX4.js → worktree-RWGL7FUV.js} +5 -2
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
LEGACY_PLAN_FILE_REL,
|
|
3
|
+
PLAN_FILE_NAME,
|
|
4
|
+
PLAN_FILE_REL,
|
|
5
|
+
extractPresentedPlan,
|
|
6
|
+
isPresentPlanToolName,
|
|
7
|
+
planFileAbs,
|
|
8
|
+
readPlanFile,
|
|
9
|
+
resolvePlanMarkdown,
|
|
10
|
+
writePlanFile
|
|
11
|
+
} from "./chunk-QTUESPAW.js";
|
|
12
|
+
import "./chunk-FKOIHGKV.js";
|
|
13
|
+
export {
|
|
14
|
+
LEGACY_PLAN_FILE_REL,
|
|
15
|
+
PLAN_FILE_NAME,
|
|
16
|
+
PLAN_FILE_REL,
|
|
17
|
+
extractPresentedPlan,
|
|
18
|
+
isPresentPlanToolName,
|
|
19
|
+
planFileAbs,
|
|
20
|
+
readPlanFile,
|
|
21
|
+
resolvePlanMarkdown,
|
|
22
|
+
writePlanFile
|
|
23
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
LEGACY_PLAN_FILE_REL,
|
|
5
|
+
PLAN_FILE_NAME,
|
|
6
|
+
PLAN_FILE_REL,
|
|
7
|
+
extractPresentedPlan,
|
|
8
|
+
isPresentPlanToolName,
|
|
9
|
+
planFileAbs,
|
|
10
|
+
readPlanFile,
|
|
11
|
+
resolvePlanMarkdown,
|
|
12
|
+
writePlanFile
|
|
13
|
+
} from "./chunk-N5PM7HGQ.js";
|
|
14
|
+
import "./chunk-B3SJXYIJ.js";
|
|
15
|
+
export {
|
|
16
|
+
LEGACY_PLAN_FILE_REL,
|
|
17
|
+
PLAN_FILE_NAME,
|
|
18
|
+
PLAN_FILE_REL,
|
|
19
|
+
extractPresentedPlan,
|
|
20
|
+
isPresentPlanToolName,
|
|
21
|
+
planFileAbs,
|
|
22
|
+
readPlanFile,
|
|
23
|
+
resolvePlanMarkdown,
|
|
24
|
+
writePlanFile
|
|
25
|
+
};
|
|
@@ -6,12 +6,13 @@ import {
|
|
|
6
6
|
listWorkspaces,
|
|
7
7
|
removeWorkspace,
|
|
8
8
|
syncWorkspacesFromThreads
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-YDXQ72MD.js";
|
|
10
|
+
import "./chunk-YOWIYAVA.js";
|
|
11
11
|
import "./chunk-S2LL5HA4.js";
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-UEAHMGHW.js";
|
|
13
|
+
import "./chunk-XOU6HNQJ.js";
|
|
14
|
+
import "./chunk-B3SJXYIJ.js";
|
|
15
|
+
import "./chunk-HLEX5AQ6.js";
|
|
15
16
|
import "./chunk-ZNM4MAN4.js";
|
|
16
17
|
import "./chunk-KGZBYWZ3.js";
|
|
17
18
|
import "./chunk-7MV3RXSC.js";
|
|
@@ -4,12 +4,13 @@ import {
|
|
|
4
4
|
listWorkspaces,
|
|
5
5
|
removeWorkspace,
|
|
6
6
|
syncWorkspacesFromThreads
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-GNML24AW.js";
|
|
8
|
+
import "./chunk-XX5BB7NV.js";
|
|
9
9
|
import "./chunk-GI7E5733.js";
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-LRLKJM3O.js";
|
|
11
|
+
import "./chunk-DZFH2KLT.js";
|
|
12
|
+
import "./chunk-FKOIHGKV.js";
|
|
13
|
+
import "./chunk-TSRXOSVD.js";
|
|
13
14
|
import "./chunk-77WWLBCI.js";
|
|
14
15
|
import "./chunk-M37RITA6.js";
|
|
15
16
|
import "./chunk-7LNGIP3X.js";
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
branchDisplayLabel,
|
|
8
8
|
collectTakenTeamSlugs,
|
|
9
9
|
commitAll,
|
|
10
|
+
createExistingBranchWorktree,
|
|
10
11
|
createOrUpdatePr,
|
|
11
12
|
createThreadWorktree,
|
|
12
13
|
currentBranch,
|
|
@@ -44,8 +45,9 @@ import {
|
|
|
44
45
|
worktreeDisplayLabel,
|
|
45
46
|
worktreeDisplayLabelForGroup,
|
|
46
47
|
worktreeNameFromPath
|
|
47
|
-
} from "./chunk-
|
|
48
|
-
import "./chunk-
|
|
48
|
+
} from "./chunk-XOU6HNQJ.js";
|
|
49
|
+
import "./chunk-B3SJXYIJ.js";
|
|
50
|
+
import "./chunk-HLEX5AQ6.js";
|
|
49
51
|
import "./chunk-ZNM4MAN4.js";
|
|
50
52
|
import "./chunk-KGZBYWZ3.js";
|
|
51
53
|
import "./chunk-7MV3RXSC.js";
|
|
@@ -56,6 +58,7 @@ export {
|
|
|
56
58
|
branchDisplayLabel,
|
|
57
59
|
collectTakenTeamSlugs,
|
|
58
60
|
commitAll,
|
|
61
|
+
createExistingBranchWorktree,
|
|
59
62
|
createOrUpdatePr,
|
|
60
63
|
createThreadWorktree,
|
|
61
64
|
currentBranch,
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
branchDisplayLabel,
|
|
6
6
|
collectTakenTeamSlugs,
|
|
7
7
|
commitAll,
|
|
8
|
+
createExistingBranchWorktree,
|
|
8
9
|
createOrUpdatePr,
|
|
9
10
|
createThreadWorktree,
|
|
10
11
|
currentBranch,
|
|
@@ -42,8 +43,9 @@ import {
|
|
|
42
43
|
worktreeDisplayLabel,
|
|
43
44
|
worktreeDisplayLabelForGroup,
|
|
44
45
|
worktreeNameFromPath
|
|
45
|
-
} from "./chunk-
|
|
46
|
-
import "./chunk-
|
|
46
|
+
} from "./chunk-DZFH2KLT.js";
|
|
47
|
+
import "./chunk-FKOIHGKV.js";
|
|
48
|
+
import "./chunk-TSRXOSVD.js";
|
|
47
49
|
import "./chunk-77WWLBCI.js";
|
|
48
50
|
import "./chunk-M37RITA6.js";
|
|
49
51
|
import "./chunk-7LNGIP3X.js";
|
|
@@ -54,6 +56,7 @@ export {
|
|
|
54
56
|
branchDisplayLabel,
|
|
55
57
|
collectTakenTeamSlugs,
|
|
56
58
|
commitAll,
|
|
59
|
+
createExistingBranchWorktree,
|
|
57
60
|
createOrUpdatePr,
|
|
58
61
|
createThreadWorktree,
|
|
59
62
|
currentBranch,
|