@sideboard-ai/core 0.1.15 → 0.1.19
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-RO3AJ76Q.js → agents-2XMZO3CY.js} +1 -1
- package/dist/{chunk-3OJG4LP4.js → chunk-5263JXQY.js} +2 -2
- package/dist/{chunk-MEI4AXV4.js → chunk-JQJZTL2Q.js} +1 -1
- package/dist/{chunk-MGSJQMJA.js → chunk-LIUV5ONW.js} +7 -3
- package/dist/{chunk-L44AX7IG.js → chunk-LXHSRNJJ.js} +116 -28
- package/dist/{chunk-TNIAXABV.js → chunk-SNHWAARD.js} +6 -5
- package/dist/{chunk-MAWKQA2Y.js → chunk-WWBC56EL.js} +37 -17
- package/dist/{coordinator-prompt-G6T7ORT3.js → coordinator-prompt-QPTX6YCW.js} +2 -2
- package/dist/{global-workspace-H642B5OI.js → global-workspace-IV6LIDTO.js} +3 -3
- package/dist/index.cjs +160 -39
- package/dist/index.d.cts +24 -3
- package/dist/index.d.ts +24 -3
- package/dist/index.js +14 -6
- package/dist/mcp/run-stdio.cjs +2680 -2567
- package/dist/mcp/run-stdio.js +6 -6
- package/dist/{workspaces-4EREGLB7.js → workspaces-JBWIRU55.js} +4 -4
- package/dist/{worktree-ZDHZMLSJ.js → worktree-TYI2SANE.js} +9 -1
- package/package.json +1 -1
package/dist/mcp/run-stdio.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
startMcpServer
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-WWBC56EL.js";
|
|
5
|
+
import "../chunk-LIUV5ONW.js";
|
|
6
|
+
import "../chunk-5263JXQY.js";
|
|
7
|
+
import "../chunk-SNHWAARD.js";
|
|
8
|
+
import "../chunk-JQJZTL2Q.js";
|
|
9
9
|
import "../chunk-ILQK4P5R.js";
|
|
10
10
|
import "../chunk-3DKGI32Q.js";
|
|
11
11
|
import "../chunk-3WF3X46L.js";
|
|
12
|
-
import "../chunk-
|
|
12
|
+
import "../chunk-LXHSRNJJ.js";
|
|
13
13
|
import "../chunk-HYRHI3QU.js";
|
|
14
14
|
import "../chunk-M37RITA6.js";
|
|
15
15
|
import "../chunk-AJ6ROGD7.js";
|
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
listWorkspaces,
|
|
5
5
|
removeWorkspace,
|
|
6
6
|
syncWorkspacesFromThreads
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-LIUV5ONW.js";
|
|
8
|
+
import "./chunk-5263JXQY.js";
|
|
9
|
+
import "./chunk-SNHWAARD.js";
|
|
10
|
+
import "./chunk-LXHSRNJJ.js";
|
|
11
11
|
import "./chunk-HYRHI3QU.js";
|
|
12
12
|
import "./chunk-M37RITA6.js";
|
|
13
13
|
import "./chunk-AJ6ROGD7.js";
|
|
@@ -9,11 +9,14 @@ import {
|
|
|
9
9
|
createThreadWorktree,
|
|
10
10
|
currentBranch,
|
|
11
11
|
detectLocalMergeConflicts,
|
|
12
|
+
ensureGhPreferOrigin,
|
|
12
13
|
fetchPrHead,
|
|
13
14
|
getPr,
|
|
14
15
|
getPrChecks,
|
|
15
16
|
getPrDetails,
|
|
16
17
|
getPrMeta,
|
|
18
|
+
ghHeadRef,
|
|
19
|
+
ghRepoSelectArgs,
|
|
17
20
|
isDirty,
|
|
18
21
|
isPlaceholderBranch,
|
|
19
22
|
listBranches,
|
|
@@ -21,6 +24,7 @@ import {
|
|
|
21
24
|
listWorktrees,
|
|
22
25
|
mergePr,
|
|
23
26
|
normalizeWorktreePath,
|
|
27
|
+
originGhRepoEnv,
|
|
24
28
|
parseGithubSlugFromRemoteUrl,
|
|
25
29
|
pushBranch,
|
|
26
30
|
removeWorktree,
|
|
@@ -36,7 +40,7 @@ import {
|
|
|
36
40
|
worktreeDisplayLabel,
|
|
37
41
|
worktreeDisplayLabelForGroup,
|
|
38
42
|
worktreeNameFromPath
|
|
39
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-LXHSRNJJ.js";
|
|
40
44
|
import "./chunk-HYRHI3QU.js";
|
|
41
45
|
import "./chunk-M37RITA6.js";
|
|
42
46
|
import "./chunk-AJ6ROGD7.js";
|
|
@@ -51,11 +55,14 @@ export {
|
|
|
51
55
|
createThreadWorktree,
|
|
52
56
|
currentBranch,
|
|
53
57
|
detectLocalMergeConflicts,
|
|
58
|
+
ensureGhPreferOrigin,
|
|
54
59
|
fetchPrHead,
|
|
55
60
|
getPr,
|
|
56
61
|
getPrChecks,
|
|
57
62
|
getPrDetails,
|
|
58
63
|
getPrMeta,
|
|
64
|
+
ghHeadRef,
|
|
65
|
+
ghRepoSelectArgs,
|
|
59
66
|
isDirty,
|
|
60
67
|
isPlaceholderBranch,
|
|
61
68
|
listBranches,
|
|
@@ -63,6 +70,7 @@ export {
|
|
|
63
70
|
listWorktrees,
|
|
64
71
|
mergePr,
|
|
65
72
|
normalizeWorktreePath,
|
|
73
|
+
originGhRepoEnv,
|
|
66
74
|
parseGithubSlugFromRemoteUrl,
|
|
67
75
|
pushBranch,
|
|
68
76
|
removeWorktree,
|