@sideboard-ai/core 0.1.43 → 0.1.44
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-T3EA7GZV.js → agents-PP3URTSF.js} +1 -1
- package/dist/{chunk-X6P2QVRJ.js → chunk-I3PKMLFW.js} +1 -1
- package/dist/{chunk-Z2BQMXVM.js → chunk-JM2TVGNW.js} +2 -1
- package/dist/{chunk-FUCEOJFO.js → chunk-TXFJEXFB.js} +1 -1
- package/dist/{chunk-AGU52GTV.js → chunk-V3S4NF5F.js} +104 -11
- package/dist/{chunk-VC7NORFX.js → chunk-XX26NCB6.js} +1 -1
- package/dist/{coordinator-prompt-BHXBQRPM.js → coordinator-prompt-I5YNS27B.js} +1 -1
- package/dist/{global-workspace-SNN45OCN.js → global-workspace-FU6UIPDY.js} +2 -2
- package/dist/index.cjs +116 -12
- package/dist/index.d.cts +32 -1
- package/dist/index.d.ts +32 -1
- package/dist/index.js +17 -5
- package/dist/mcp/run-stdio.cjs +200 -110
- package/dist/mcp/run-stdio.js +5 -5
- package/dist/{workspaces-AUYIJ64Z.js → workspaces-RSEDTBGJ.js} +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2056,6 +2056,11 @@ declare class Orchestrator {
|
|
|
2056
2056
|
getPrMeta(threadRef: string): Promise<PrMeta | null>;
|
|
2057
2057
|
getPrDetails(threadRef: string): Promise<PrDetails | null>;
|
|
2058
2058
|
setAutonomy(threadRef: string, autonomy: Autonomy): Thread;
|
|
2059
|
+
/**
|
|
2060
|
+
* Open a Review chat tab on a worktree thread (same as the desktop Review button)
|
|
2061
|
+
* and send the merge-readiness prefill.
|
|
2062
|
+
*/
|
|
2063
|
+
requestReview(threadRef: string): Promise<Thread>;
|
|
2059
2064
|
setThreadOptions(threadRef: string, patch: ThreadOptionsPatch): Thread;
|
|
2060
2065
|
createChatTab(input: {
|
|
2061
2066
|
fromThreadId: string;
|
|
@@ -2115,6 +2120,30 @@ declare function startOrchestration(opts: {
|
|
|
2115
2120
|
attachments?: Thread['attachments'];
|
|
2116
2121
|
}): Promise<Thread>;
|
|
2117
2122
|
|
|
2123
|
+
/** Worktree-relative path for the editable review prompt (Conductor-style). */
|
|
2124
|
+
declare const REVIEW_REQUEST_PATH = ".sideboard/attachments/Review request.md";
|
|
2125
|
+
declare const REVIEW_REQUEST_NAME = "Review request.md";
|
|
2126
|
+
declare const REVIEW_REQUEST_PREFILL = "Please review the changes in this workspace and recommend whether they are ready to merge.\n\nStart with a **Recommendation**: Approve, Approve with nits, Request changes, or Needs more information \u2014 and say why in 1\u20133 sentences. Then list blocking findings vs nits (findings may be empty).";
|
|
2127
|
+
declare function buildReviewRequestAttachment(content: string): ThreadAttachment;
|
|
2128
|
+
/**
|
|
2129
|
+
* Read an existing custom Review request.md from the worktree if present.
|
|
2130
|
+
* Does not create the file (matches desktop Review button behavior).
|
|
2131
|
+
*/
|
|
2132
|
+
declare function readExistingReviewRequestFile(worktreePath: string): string | null;
|
|
2133
|
+
interface RequestReviewResult {
|
|
2134
|
+
/** New Review chat tab. */
|
|
2135
|
+
tab: Thread;
|
|
2136
|
+
/** Worktree thread that was reviewed (source of the tab). */
|
|
2137
|
+
from: Thread;
|
|
2138
|
+
}
|
|
2139
|
+
type SendFn = (threadRef: string, prompt: string) => Promise<Thread>;
|
|
2140
|
+
/**
|
|
2141
|
+
* Mirror the desktop sidebar Review action: open a fresh "Review" chat tab on
|
|
2142
|
+
* the same worktree and send the merge-readiness prefill (attach custom
|
|
2143
|
+
* guidelines file when present).
|
|
2144
|
+
*/
|
|
2145
|
+
declare function requestReview(threadRef: string, send: SendFn): Promise<RequestReviewResult>;
|
|
2146
|
+
|
|
2118
2147
|
type WorkspaceInventoryEntry = Workspace & {
|
|
2119
2148
|
/** Best-effort GitHub `owner/repo` from remote / gh. */
|
|
2120
2149
|
githubSlug?: string | null;
|
|
@@ -2346,6 +2375,8 @@ interface IpcApi {
|
|
|
2346
2375
|
sendQueuedMessageNow(threadRef: string, index: number): Promise<Thread>;
|
|
2347
2376
|
setAutonomy(threadRef: string, autonomy: Autonomy): Promise<Thread>;
|
|
2348
2377
|
setThreadOptions(threadRef: string, patch: ThreadOptionsPatch): Promise<Thread>;
|
|
2378
|
+
/** Open a Review chat tab on a worktree thread (merge-readiness). */
|
|
2379
|
+
requestReview(threadRef: string): Promise<Thread>;
|
|
2349
2380
|
fanOut(threadRefs: string[], prompt: string): Promise<Thread[]>;
|
|
2350
2381
|
startOrchestration(opts: {
|
|
2351
2382
|
goal: string;
|
|
@@ -2746,4 +2777,4 @@ declare function writeInjectedMcpConfig(opts: {
|
|
|
2746
2777
|
includeBrightsy?: boolean;
|
|
2747
2778
|
}): Promise<string | null>;
|
|
2748
2779
|
|
|
2749
|
-
export { type ActiveRun, type AdoptInput, type AdvancedAppSettings, type AgentAdapter, type AgentEvent, type AgentInstructionFile, type AgentKind, type AgentModelInfo, type AgentSetupActionResult, type AgentSetupInfo, type AgentSetupKind, type AgentStatus, type AgentTurnInput, type AnthropicCacheControl, type AppSettings, type ApplyIntoMainResult, type AttachCommand, type Autonomy, BRIGHTSY_MCP_ALLOWED_TOOLS, type BranchInfo, type BrightsyAccount, type BrightsyChatTarget, type BrightsyChatTargets, type BrightsyCloudConnectAgent, type BrightsyHarnessSettings, type BrightsySession, BrightsySideboardApi, type BrightsyTeamTargets, CLOUD_COORDINATOR_BUSY_REPLY, CLOUD_COORDINATOR_STOPPED_REPLY, CLOUD_COORDINATOR_TIMEOUT_REPLY, CLOUD_ORCHESTRATOR_GOAL, CONTEXT_COMPACT_CHARS, CONTEXT_KEEP_RECENT_CHARS, CONTEXT_KEEP_RECENT_MESSAGES, CONTEXT_MIN_MESSAGES, COORDINATOR_TOOL_PLAYBOOK, type ClaudeHarnessSettings, type CleanupOrphansResult, type CloudConnectAgent, type CloudConnectOptions, type CloudConnectStatus, type CompactResult, type CompactThresholds, type ComposerFileBuffer, type ConductorSettings, type ConductorWorkspace, type ConnectedBrightsyTeamInfo, type CreateChatTabInput, type CreateGlobalChatOpts, type CreateThreadInput, type CreateWorktreeResult, type CursorModelInfo, type CursorSdkStreamMessage, type CursorTurnRequest, type CursorWorktreesConfig, type DefaultsAppSettings, type DevServerHandle, type DiffCommentInput, type DiffCommentLine, type DiffCommit, type DiffFile, type DiffResult, type DiffScope, type DiffScopeStat, type ExpandResult, FAMOUS_SOCCER_TEAMS, type ForkChatTabInput, type ForkThreadWorktreeInput, type FormatGhLandErrorOptions, GLOBAL_WORKSPACE_ID, type GetDiffOptions, type GitHubStatus, type GitWorktreeStatus, HARNESS_ENV_KEYS, type HarnessId, type IntegrationsSettings, type IpcApi, type IssueInfo, type IssueSource, type LandPreview, type LandResult, type ListIssuesResult, MAX_ANTHROPIC_CACHE_CONTROL_BLOCKS, type McpServerStatus, type MessagePart, Orchestrator, type OrchestratorEvent, type OrchestratorRuntime, type OrphanWorktree, PASTE_ATTACH_MIN_CHARS, PASTE_ATTACH_MIN_LINES, PLAN_MODE_INSTRUCTION, type PrActor, type PrCheckRun, type PrCommentInfo, type PrCommitInfo, type PrDetails, type PrInfo, type PrMeta, type PrReviewInfo, type RepoSettings, type RepoSetupInfo, type RunMode, type RunScript, SIDEBOARD_FORCE_STOP, SIDEBOARD_MCP_ALLOWED_TOOLS, type ScriptHandle, type SkillInfo, type SourceType, type SpawnTurnHandle, type SummarizeResult, THINKING_EFFORTS, type TeamName, type ThinkingEffort, type Thread, type ThreadAttachment, type ThreadMessage, type ThreadOptionsPatch, type ThreadStatus, type TokenUsage, type TranscriptToolDetail, type TurnCommand, type Workspace, type WorkspaceInventoryEntry, type WorkspaceScriptEnvOpts, addWorkspace, adoptThread, allAdapters, allocatePort, allocatePortRange, allocateTeamName, allocateTeamSlug, appDataDir, appSettingsPath, appendMessage, applyAgentEvent, applyAppEnvironment, applyCompaction, applyThreadIntoMain, attachmentFromAbsolutePath, attachmentsFromBuffers, attachmentsFromWorktreePaths, autoCleanupOrphansEnabled, autoRenameBranchEnabled, autoRunAfterSetupEnabled, branchDisplayLabel, brightsyAdapter, brightsyCloudConnectAgent, brightsyCloudConnectEnabled, brightsyConfigPath, brightsyMcpAllowedTools, brightsyMcpServerName, buildCachedUserContent, buildClaudeStreamJsonUserMessage, buildDiffCommentAttachment, buildForkTranscriptAttachment, buildPastedTextAttachment, buildSessionSeed, buildWorkspaceScriptEnv, caffeinateWhileCloudConnectEnabled, caffeinateWhileRunningEnabled, captureLoginEnv, captureTurnBaseline, childEnvWithAppSettings, claudeAdapter, claudeChromeEnabled, claudeUserSettingsPath, cleanupOrphanWorktrees, cloneRepoIntoSideboard, codexAdapter, collectTakenTeamSlugs, commitAll, conductorDbPath, confirmLand, connectBrightsyTeam, coordinatorSystemPrompt, coordinatorTurnReminder, copyConfiguredFiles, countCacheControlBlocks, createChatTab, createEmptyThread, createGlobalChat, createOrUpdatePr, createThread, createThreadWorktree, currentBranch, cursorAdapter, cursorSdkMessageToEvents, decodeBrightsyTarget, deleteBranchOnPurgeEnabled, deleteThreadRecord, detectAgents, detectLocalMergeConflicts, disconnectBrightsyTeam, discoverSkills, encodeBrightsyTarget, enrichWorkspacesWithGithub, ensureAgentPath, ensureCloudCoordinator, ensureGhPreferOrigin, ensureGlobalCoordinatorCwd, ensureWorkspace, estimateMessageChars, estimateThreadChars, expandComposerPrompt, extractGhErrorDetail, extractiveSummary, fetchPrHead, finalizeParts, findInvalidCacheControlTtlOrder, findOrphanWorktrees, findThreadByRef, flattenTurnInput, forkChatTab, forkMessageSlice, forkThreadWorktree, formatAgentInstructions, formatArtifactDirective, formatBrightsyFetchError, formatGhLandError, formatIpcInvokeError, formatMessagesAsTranscript, formatRateLimitResetHint, formatRenameBranchDirective, formatTranscriptMarkdown, formatWorkspaceInventory, formatWorktreeDirective, getAdapter, getAgentSetupInfo, getBrightsySession, getDefaultAgent, getDefaultEffort, getDefaultFast, getDefaultModel, getDefaultRunScript, getDiff, getDiffSummary, getGitHubStatus, getIssueSource, getLinearApiKey, getOrchestrator, getPr, getPrChecks, getPrDetails, getPrMeta, getRepoSetupInfo, getRunMode, getRunScript, gh, ghHeadRef, ghRepoSelectArgs, git, globalAgentCwd, harnessEnvKey, hasConductorHook, hasCursorWorktreeSetup, hasRepoHook, hasWorkspaceHook, healOrchestrationSoccerTitles, importConductorWorkspace, importConductorWorkspaceAsync, initializeGitRepository, inspectGitWorktree, installAgent, isBrightsyConnected, isBrightsyNdjsonLine, isCloudCoordinatorThread, isCursorAutoModel, isDirty, isGhRateLimitError, isGlobalRepoPath, isGlobalThread, isImageFilePath, isLinearConnected, isOrchestratorThread, isPidAlive, isPlaceholderBranch, isThinkingEffort, listAgentSetupInfo, listBranchCommits, listBranches, listBrightsyAccounts, listBrightsyChatTargets, listCodexModels, listConductorWorkspaces, listConnectedBrightsyTeams, listCursorModels, listGitHubIssues, listGlobalThreads, listIssues, listLinearIssues, listLinearIssuesDirect, listOpencodeModels, listPrs, listRunScripts, listThreads, listWorkspaces, listWorktreeFiles, listWorktrees, loadAgentInstructions, loadAppSettings, loadBrightsyConfig, loadConductorSettings, loadRepoSettings, loadWorkspaceSettings, locksDir, loginAgent, lookupSoccerTeam, maxConcurrentAgents, maybeCompactContext, mcpAllowTools, mcpAuthWarnings, mergePr, mergeUsage, nextPastedTextName, nextThinkingEffort, normalizeParseResult, normalizeThinkingEffort, normalizeThread, normalizeTurnInput, normalizeWorktreePath, openInSystemTerminal, opencodeAdapter, orchestrationTitleNeedsSoccerNickname, orchestratorSessionPoisonedByBuiltins, originGhRepoEnv, parseCursorRunnerLine, parseForceStopMessage, parseGithubSlugFromRemoteUrl, parseMcpList, partsToAssistantText, pastedTextStats, permissionMode, previewLand, pushBranch, readSkillBody, readThread, readWorktreeFile, readWorktreeFileForUpload, readWorktreeInclude, refreshGitHubAuth, removeWorkspace, removeWorktree, repoSlug, requireAgent, resolveClaudeExecutable, resolveConductorCursorAgentId, resolveCursorModelId, resolveDefaultBranch, resolveDiffBaseRef, resolveEffectiveIssueSource, resolveFilesToCopy, resolveGithubRepoSlug, resolvePrSelector, resolveRepoRoot, resolveThreadDefaults, resolveThreadEffort, resolveWorktreeStartPoint, run, runArchiveScript, runCloudConnect, runCursorWorktreeSetup, runSetupScript, sameWorktreePath, sanitizeMcpServerName, saveAppSettings, setStatus, settingsSourceLabel, shouldAttachPastedText, shouldCompactContext, shouldRunWorktreeCleanup, sideboardHomeDir, sideboardReposDir, sideboardWorkspacesDir, slugify, spawnAgentTurn, splitForCompaction, stageAbsolutePathsAsAttachments, stageBuffersAsAttachments, startDevServer, startMcpServer, startOrchestration, stripBrightsyNdjsonNoise, suggestSlug, summarizeConversation, switchBrightsyAccount, syncWorkspacesFromThreads, takenTeamSlugsForChatTab, takenTeamSlugsForOrchestration, taskMessageText, thinkingEffortBars, thinkingEffortLabel, threadDisplayLabel, threadFilePath, threadLockPath, threadsDir, threadsSharingWorktree, toolDescription, toolDetail, toolFilePath, totalTokens, updateAdvancedSettings, updateAppEnvironment, updateBrightsySettings, updateClaudeSettings, updateDefaultsSettings, updateIntegrationsSettings, updateThread, validateLinearApiKey, withAgentInstructions, withThreadLock, workspaceSettingsSourceLabel, worktreeCleanupSettings, worktreeDisplayLabel, worktreeDisplayLabelForGroup, worktreeNameFromPath, worktreesRoot, writeInjectedMcpConfig, writeThread, writeWorktreeFile };
|
|
2780
|
+
export { type ActiveRun, type AdoptInput, type AdvancedAppSettings, type AgentAdapter, type AgentEvent, type AgentInstructionFile, type AgentKind, type AgentModelInfo, type AgentSetupActionResult, type AgentSetupInfo, type AgentSetupKind, type AgentStatus, type AgentTurnInput, type AnthropicCacheControl, type AppSettings, type ApplyIntoMainResult, type AttachCommand, type Autonomy, BRIGHTSY_MCP_ALLOWED_TOOLS, type BranchInfo, type BrightsyAccount, type BrightsyChatTarget, type BrightsyChatTargets, type BrightsyCloudConnectAgent, type BrightsyHarnessSettings, type BrightsySession, BrightsySideboardApi, type BrightsyTeamTargets, CLOUD_COORDINATOR_BUSY_REPLY, CLOUD_COORDINATOR_STOPPED_REPLY, CLOUD_COORDINATOR_TIMEOUT_REPLY, CLOUD_ORCHESTRATOR_GOAL, CONTEXT_COMPACT_CHARS, CONTEXT_KEEP_RECENT_CHARS, CONTEXT_KEEP_RECENT_MESSAGES, CONTEXT_MIN_MESSAGES, COORDINATOR_TOOL_PLAYBOOK, type ClaudeHarnessSettings, type CleanupOrphansResult, type CloudConnectAgent, type CloudConnectOptions, type CloudConnectStatus, type CompactResult, type CompactThresholds, type ComposerFileBuffer, type ConductorSettings, type ConductorWorkspace, type ConnectedBrightsyTeamInfo, type CreateChatTabInput, type CreateGlobalChatOpts, type CreateThreadInput, type CreateWorktreeResult, type CursorModelInfo, type CursorSdkStreamMessage, type CursorTurnRequest, type CursorWorktreesConfig, type DefaultsAppSettings, type DevServerHandle, type DiffCommentInput, type DiffCommentLine, type DiffCommit, type DiffFile, type DiffResult, type DiffScope, type DiffScopeStat, type ExpandResult, FAMOUS_SOCCER_TEAMS, type ForkChatTabInput, type ForkThreadWorktreeInput, type FormatGhLandErrorOptions, GLOBAL_WORKSPACE_ID, type GetDiffOptions, type GitHubStatus, type GitWorktreeStatus, HARNESS_ENV_KEYS, type HarnessId, type IntegrationsSettings, type IpcApi, type IssueInfo, type IssueSource, type LandPreview, type LandResult, type ListIssuesResult, MAX_ANTHROPIC_CACHE_CONTROL_BLOCKS, type McpServerStatus, type MessagePart, Orchestrator, type OrchestratorEvent, type OrchestratorRuntime, type OrphanWorktree, PASTE_ATTACH_MIN_CHARS, PASTE_ATTACH_MIN_LINES, PLAN_MODE_INSTRUCTION, type PrActor, type PrCheckRun, type PrCommentInfo, type PrCommitInfo, type PrDetails, type PrInfo, type PrMeta, type PrReviewInfo, REVIEW_REQUEST_NAME, REVIEW_REQUEST_PATH, REVIEW_REQUEST_PREFILL, type RepoSettings, type RepoSetupInfo, type RequestReviewResult, type RunMode, type RunScript, SIDEBOARD_FORCE_STOP, SIDEBOARD_MCP_ALLOWED_TOOLS, type ScriptHandle, type SkillInfo, type SourceType, type SpawnTurnHandle, type SummarizeResult, THINKING_EFFORTS, type TeamName, type ThinkingEffort, type Thread, type ThreadAttachment, type ThreadMessage, type ThreadOptionsPatch, type ThreadStatus, type TokenUsage, type TranscriptToolDetail, type TurnCommand, type Workspace, type WorkspaceInventoryEntry, type WorkspaceScriptEnvOpts, addWorkspace, adoptThread, allAdapters, allocatePort, allocatePortRange, allocateTeamName, allocateTeamSlug, appDataDir, appSettingsPath, appendMessage, applyAgentEvent, applyAppEnvironment, applyCompaction, applyThreadIntoMain, attachmentFromAbsolutePath, attachmentsFromBuffers, attachmentsFromWorktreePaths, autoCleanupOrphansEnabled, autoRenameBranchEnabled, autoRunAfterSetupEnabled, branchDisplayLabel, brightsyAdapter, brightsyCloudConnectAgent, brightsyCloudConnectEnabled, brightsyConfigPath, brightsyMcpAllowedTools, brightsyMcpServerName, buildCachedUserContent, buildClaudeStreamJsonUserMessage, buildDiffCommentAttachment, buildForkTranscriptAttachment, buildPastedTextAttachment, buildReviewRequestAttachment, buildSessionSeed, buildWorkspaceScriptEnv, caffeinateWhileCloudConnectEnabled, caffeinateWhileRunningEnabled, captureLoginEnv, captureTurnBaseline, childEnvWithAppSettings, claudeAdapter, claudeChromeEnabled, claudeUserSettingsPath, cleanupOrphanWorktrees, cloneRepoIntoSideboard, codexAdapter, collectTakenTeamSlugs, commitAll, conductorDbPath, confirmLand, connectBrightsyTeam, coordinatorSystemPrompt, coordinatorTurnReminder, copyConfiguredFiles, countCacheControlBlocks, createChatTab, createEmptyThread, createGlobalChat, createOrUpdatePr, createThread, createThreadWorktree, currentBranch, cursorAdapter, cursorSdkMessageToEvents, decodeBrightsyTarget, deleteBranchOnPurgeEnabled, deleteThreadRecord, detectAgents, detectLocalMergeConflicts, disconnectBrightsyTeam, discoverSkills, encodeBrightsyTarget, enrichWorkspacesWithGithub, ensureAgentPath, ensureCloudCoordinator, ensureGhPreferOrigin, ensureGlobalCoordinatorCwd, ensureWorkspace, estimateMessageChars, estimateThreadChars, expandComposerPrompt, extractGhErrorDetail, extractiveSummary, fetchPrHead, finalizeParts, findInvalidCacheControlTtlOrder, findOrphanWorktrees, findThreadByRef, flattenTurnInput, forkChatTab, forkMessageSlice, forkThreadWorktree, formatAgentInstructions, formatArtifactDirective, formatBrightsyFetchError, formatGhLandError, formatIpcInvokeError, formatMessagesAsTranscript, formatRateLimitResetHint, formatRenameBranchDirective, formatTranscriptMarkdown, formatWorkspaceInventory, formatWorktreeDirective, getAdapter, getAgentSetupInfo, getBrightsySession, getDefaultAgent, getDefaultEffort, getDefaultFast, getDefaultModel, getDefaultRunScript, getDiff, getDiffSummary, getGitHubStatus, getIssueSource, getLinearApiKey, getOrchestrator, getPr, getPrChecks, getPrDetails, getPrMeta, getRepoSetupInfo, getRunMode, getRunScript, gh, ghHeadRef, ghRepoSelectArgs, git, globalAgentCwd, harnessEnvKey, hasConductorHook, hasCursorWorktreeSetup, hasRepoHook, hasWorkspaceHook, healOrchestrationSoccerTitles, importConductorWorkspace, importConductorWorkspaceAsync, initializeGitRepository, inspectGitWorktree, installAgent, isBrightsyConnected, isBrightsyNdjsonLine, isCloudCoordinatorThread, isCursorAutoModel, isDirty, isGhRateLimitError, isGlobalRepoPath, isGlobalThread, isImageFilePath, isLinearConnected, isOrchestratorThread, isPidAlive, isPlaceholderBranch, isThinkingEffort, listAgentSetupInfo, listBranchCommits, listBranches, listBrightsyAccounts, listBrightsyChatTargets, listCodexModels, listConductorWorkspaces, listConnectedBrightsyTeams, listCursorModels, listGitHubIssues, listGlobalThreads, listIssues, listLinearIssues, listLinearIssuesDirect, listOpencodeModels, listPrs, listRunScripts, listThreads, listWorkspaces, listWorktreeFiles, listWorktrees, loadAgentInstructions, loadAppSettings, loadBrightsyConfig, loadConductorSettings, loadRepoSettings, loadWorkspaceSettings, locksDir, loginAgent, lookupSoccerTeam, maxConcurrentAgents, maybeCompactContext, mcpAllowTools, mcpAuthWarnings, mergePr, mergeUsage, nextPastedTextName, nextThinkingEffort, normalizeParseResult, normalizeThinkingEffort, normalizeThread, normalizeTurnInput, normalizeWorktreePath, openInSystemTerminal, opencodeAdapter, orchestrationTitleNeedsSoccerNickname, orchestratorSessionPoisonedByBuiltins, originGhRepoEnv, parseCursorRunnerLine, parseForceStopMessage, parseGithubSlugFromRemoteUrl, parseMcpList, partsToAssistantText, pastedTextStats, permissionMode, previewLand, pushBranch, readExistingReviewRequestFile, readSkillBody, readThread, readWorktreeFile, readWorktreeFileForUpload, readWorktreeInclude, refreshGitHubAuth, removeWorkspace, removeWorktree, repoSlug, requestReview, requireAgent, resolveClaudeExecutable, resolveConductorCursorAgentId, resolveCursorModelId, resolveDefaultBranch, resolveDiffBaseRef, resolveEffectiveIssueSource, resolveFilesToCopy, resolveGithubRepoSlug, resolvePrSelector, resolveRepoRoot, resolveThreadDefaults, resolveThreadEffort, resolveWorktreeStartPoint, run, runArchiveScript, runCloudConnect, runCursorWorktreeSetup, runSetupScript, sameWorktreePath, sanitizeMcpServerName, saveAppSettings, setStatus, settingsSourceLabel, shouldAttachPastedText, shouldCompactContext, shouldRunWorktreeCleanup, sideboardHomeDir, sideboardReposDir, sideboardWorkspacesDir, slugify, spawnAgentTurn, splitForCompaction, stageAbsolutePathsAsAttachments, stageBuffersAsAttachments, startDevServer, startMcpServer, startOrchestration, stripBrightsyNdjsonNoise, suggestSlug, summarizeConversation, switchBrightsyAccount, syncWorkspacesFromThreads, takenTeamSlugsForChatTab, takenTeamSlugsForOrchestration, taskMessageText, thinkingEffortBars, thinkingEffortLabel, threadDisplayLabel, threadFilePath, threadLockPath, threadsDir, threadsSharingWorktree, toolDescription, toolDetail, toolFilePath, totalTokens, updateAdvancedSettings, updateAppEnvironment, updateBrightsySettings, updateClaudeSettings, updateDefaultsSettings, updateIntegrationsSettings, updateThread, validateLinearApiKey, withAgentInstructions, withThreadLock, workspaceSettingsSourceLabel, worktreeCleanupSettings, worktreeDisplayLabel, worktreeDisplayLabelForGroup, worktreeNameFromPath, worktreesRoot, writeInjectedMcpConfig, writeThread, writeWorktreeFile };
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,9 @@ import {
|
|
|
4
4
|
CONTEXT_KEEP_RECENT_MESSAGES,
|
|
5
5
|
CONTEXT_MIN_MESSAGES,
|
|
6
6
|
Orchestrator,
|
|
7
|
+
REVIEW_REQUEST_NAME,
|
|
8
|
+
REVIEW_REQUEST_PATH,
|
|
9
|
+
REVIEW_REQUEST_PREFILL,
|
|
7
10
|
adoptThread,
|
|
8
11
|
allocatePort,
|
|
9
12
|
allocatePortRange,
|
|
@@ -14,6 +17,7 @@ import {
|
|
|
14
17
|
attachmentsFromBuffers,
|
|
15
18
|
attachmentsFromWorktreePaths,
|
|
16
19
|
buildForkTranscriptAttachment,
|
|
20
|
+
buildReviewRequestAttachment,
|
|
17
21
|
buildSessionSeed,
|
|
18
22
|
buildWorkspaceScriptEnv,
|
|
19
23
|
captureLoginEnv,
|
|
@@ -70,10 +74,12 @@ import {
|
|
|
70
74
|
normalizeParseResult,
|
|
71
75
|
partsToAssistantText,
|
|
72
76
|
previewLand,
|
|
77
|
+
readExistingReviewRequestFile,
|
|
73
78
|
readSkillBody,
|
|
74
79
|
readWorktreeFile,
|
|
75
80
|
readWorktreeFileForUpload,
|
|
76
81
|
readWorktreeInclude,
|
|
82
|
+
requestReview,
|
|
77
83
|
requireAgent,
|
|
78
84
|
resolveConductorCursorAgentId,
|
|
79
85
|
resolveFilesToCopy,
|
|
@@ -102,14 +108,14 @@ import {
|
|
|
102
108
|
withAgentInstructions,
|
|
103
109
|
worktreeCleanupSettings,
|
|
104
110
|
writeWorktreeFile
|
|
105
|
-
} from "./chunk-
|
|
111
|
+
} from "./chunk-V3S4NF5F.js";
|
|
106
112
|
import {
|
|
107
113
|
addWorkspace,
|
|
108
114
|
ensureWorkspace,
|
|
109
115
|
listWorkspaces,
|
|
110
116
|
removeWorkspace,
|
|
111
117
|
syncWorkspacesFromThreads
|
|
112
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-TXFJEXFB.js";
|
|
113
119
|
import {
|
|
114
120
|
CLOUD_COORDINATOR_BUSY_REPLY,
|
|
115
121
|
CLOUD_COORDINATOR_STOPPED_REPLY,
|
|
@@ -129,7 +135,7 @@ import {
|
|
|
129
135
|
orchestratorSessionPoisonedByBuiltins,
|
|
130
136
|
parseForceStopMessage,
|
|
131
137
|
takenTeamSlugsForOrchestration
|
|
132
|
-
} from "./chunk-
|
|
138
|
+
} from "./chunk-I3PKMLFW.js";
|
|
133
139
|
import {
|
|
134
140
|
COORDINATOR_TOOL_PLAYBOOK,
|
|
135
141
|
coordinatorSystemPrompt,
|
|
@@ -137,7 +143,7 @@ import {
|
|
|
137
143
|
enrichWorkspacesWithGithub,
|
|
138
144
|
ensureGlobalCoordinatorCwd,
|
|
139
145
|
formatWorkspaceInventory
|
|
140
|
-
} from "./chunk-
|
|
146
|
+
} from "./chunk-JM2TVGNW.js";
|
|
141
147
|
import {
|
|
142
148
|
BRIGHTSY_MCP_ALLOWED_TOOLS,
|
|
143
149
|
MAX_ANTHROPIC_CACHE_CONTROL_BLOCKS,
|
|
@@ -177,7 +183,7 @@ import {
|
|
|
177
183
|
resolveCursorModelId,
|
|
178
184
|
sanitizeMcpServerName,
|
|
179
185
|
writeInjectedMcpConfig
|
|
180
|
-
} from "./chunk-
|
|
186
|
+
} from "./chunk-XX26NCB6.js";
|
|
181
187
|
import {
|
|
182
188
|
brightsyConfigPath,
|
|
183
189
|
brightsyMcpServerName,
|
|
@@ -807,6 +813,9 @@ export {
|
|
|
807
813
|
PASTE_ATTACH_MIN_CHARS,
|
|
808
814
|
PASTE_ATTACH_MIN_LINES,
|
|
809
815
|
PLAN_MODE_INSTRUCTION,
|
|
816
|
+
REVIEW_REQUEST_NAME,
|
|
817
|
+
REVIEW_REQUEST_PATH,
|
|
818
|
+
REVIEW_REQUEST_PREFILL,
|
|
810
819
|
SIDEBOARD_FORCE_STOP,
|
|
811
820
|
SIDEBOARD_MCP_ALLOWED_TOOLS,
|
|
812
821
|
THINKING_EFFORTS,
|
|
@@ -842,6 +851,7 @@ export {
|
|
|
842
851
|
buildDiffCommentAttachment,
|
|
843
852
|
buildForkTranscriptAttachment,
|
|
844
853
|
buildPastedTextAttachment,
|
|
854
|
+
buildReviewRequestAttachment,
|
|
845
855
|
buildSessionSeed,
|
|
846
856
|
buildWorkspaceScriptEnv,
|
|
847
857
|
caffeinateWhileCloudConnectEnabled,
|
|
@@ -1020,6 +1030,7 @@ export {
|
|
|
1020
1030
|
permissionMode,
|
|
1021
1031
|
previewLand,
|
|
1022
1032
|
pushBranch,
|
|
1033
|
+
readExistingReviewRequestFile,
|
|
1023
1034
|
readSkillBody,
|
|
1024
1035
|
readThread,
|
|
1025
1036
|
readWorktreeFile,
|
|
@@ -1029,6 +1040,7 @@ export {
|
|
|
1029
1040
|
removeWorkspace,
|
|
1030
1041
|
removeWorktree,
|
|
1031
1042
|
repoSlug,
|
|
1043
|
+
requestReview,
|
|
1032
1044
|
requireAgent,
|
|
1033
1045
|
resolveClaudeExecutable,
|
|
1034
1046
|
resolveConductorCursorAgentId,
|