@sideboard-ai/core 0.1.132 → 0.1.133
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/abletime-DDTV7WO3.js +36 -0
- package/dist/abletime-VTP4JR63.js +37 -0
- package/dist/{agents-LGJLZMM3.js → agents-NHS6P25H.js} +8 -7
- package/dist/{agents-CI6NGKRO.js → agents-SOU5GPWI.js} +8 -7
- package/dist/{app-settings-6RPALX4J.js → app-settings-U5RZKUXG.js} +11 -1
- package/dist/{app-settings-E7NEQY7D.js → app-settings-YQ7YX2CC.js} +11 -1
- package/dist/chunk-2XXAAIN3.js +463 -0
- package/dist/{chunk-VE22NWBD.js → chunk-3UVVWNHF.js} +2 -2
- package/dist/{chunk-MGYCQAZ6.js → chunk-4YAVXWFR.js} +6 -6
- package/dist/{chunk-RSFCB23A.js → chunk-6CRKPD4C.js} +4 -3
- package/dist/chunk-6GN5WPYZ.js +31 -0
- package/dist/{chunk-PK4PQUPU.js → chunk-AK7SWE2U.js} +6 -6
- package/dist/chunk-AT346U23.js +468 -0
- package/dist/{chunk-LLX3OMHU.js → chunk-ED4UPEJX.js} +1 -1
- package/dist/chunk-ELBYOGVA.js +32 -0
- package/dist/{chunk-HUYEU4GS.js → chunk-GJBHOJCZ.js} +83 -2
- package/dist/{chunk-ZND6XV6J.js → chunk-GKKHXZCT.js} +83 -2
- package/dist/{chunk-HZPO3SSZ.js → chunk-IM36S4HZ.js} +4 -3
- package/dist/{chunk-SIPDL62B.js → chunk-KBWND62T.js} +6 -6
- package/dist/{chunk-HULESWLI.js → chunk-LTP7GHIF.js} +3 -3
- package/dist/{chunk-AQESMTCZ.js → chunk-M267JPEA.js} +3 -29
- package/dist/{chunk-HRSBZIXS.js → chunk-Q6XQXCOM.js} +1 -1
- package/dist/{chunk-R7FGPBKL.js → chunk-S42XV45P.js} +3 -25
- package/dist/{chunk-VFXZTSAD.js → chunk-TG7YU2KG.js} +53 -29
- package/dist/{chunk-SMWJAE74.js → chunk-VSON7EJ6.js} +53 -29
- package/dist/{chunk-UDQI3N47.js → chunk-WEU5M7BW.js} +1 -1
- package/dist/{chunk-SYLTXDRF.js → chunk-Y645NFYN.js} +2 -2
- package/dist/{chunk-MNL4FSKY.js → chunk-YEIH7P7D.js} +3 -3
- package/dist/{connected-teams-S6E3D5C7.js → connected-teams-4A2AXDNN.js} +3 -2
- package/dist/{connected-teams-3BWNJIRY.js → connected-teams-IJUJQ7R6.js} +3 -2
- package/dist/{coordinator-prompt-SPJSGAQS.js → coordinator-prompt-DXHEDRRN.js} +3 -3
- package/dist/{coordinator-prompt-MEEUOEF2.js → coordinator-prompt-XF7LVOUN.js} +3 -3
- package/dist/{global-workspace-KNESLWKG.js → global-workspace-2LO5ATOH.js} +4 -4
- package/dist/{global-workspace-BMWP7YZC.js → global-workspace-MLQNULOU.js} +4 -4
- package/dist/index.cjs +1105 -340
- package/dist/index.d.cts +171 -13
- package/dist/index.d.ts +171 -13
- package/dist/index.js +432 -239
- package/dist/mcp/run-stdio.cjs +998 -287
- package/dist/mcp/run-stdio.js +338 -186
- package/dist/{oauth-FT7EL2PY.js → oauth-A7XXI2TM.js} +2 -1
- package/dist/{oauth-43NNH6C6.js → oauth-YJBAURIJ.js} +2 -1
- package/dist/{orchestrator-JA65XKB6.js → orchestrator-KR5RA5B7.js} +10 -9
- package/dist/{orchestrator-5TN2DJWO.js → orchestrator-P2SYHVLS.js} +10 -9
- package/dist/{workspaces-O4QZOASB.js → workspaces-ARWPZG6F.js} +5 -5
- package/dist/{workspaces-HSYRYJYV.js → workspaces-MINB764G.js} +5 -5
- package/dist/{worktree-ERHC7Q4F.js → worktree-EBZMUUAL.js} +2 -2
- package/dist/{worktree-JVGSLSLJ.js → worktree-S7MKMYAT.js} +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -779,6 +779,15 @@ interface IntegrationsSettings {
|
|
|
779
779
|
githubGitAuthMode?: GithubGitAuthMode;
|
|
780
780
|
/** Fine-grained or classic PAT when mode is `token` (vaulted). */
|
|
781
781
|
githubPat?: string;
|
|
782
|
+
/**
|
|
783
|
+
* AbleTime personal access token (`apt_…`) for hosted MCP
|
|
784
|
+
* (`POST {host}/api/public/v2/mcp`). Vaulted.
|
|
785
|
+
*/
|
|
786
|
+
abletimeAccessToken?: string;
|
|
787
|
+
/** AbleTime host (default https://track.abletime.com). */
|
|
788
|
+
abletimeHost?: string;
|
|
789
|
+
/** Display name of the connected AbleTime user (non-secret). */
|
|
790
|
+
abletimeViewerName?: string;
|
|
782
791
|
}
|
|
783
792
|
/**
|
|
784
793
|
* Conductor-inspired power-user preferences (Settings → Advanced).
|
|
@@ -878,7 +887,7 @@ interface AppSettings {
|
|
|
878
887
|
advanced: AdvancedAppSettings;
|
|
879
888
|
}
|
|
880
889
|
/** Integrations fields safe to send to the renderer (no token values). */
|
|
881
|
-
type PublicIntegrationsSettings = Omit<IntegrationsSettings, 'linearApiKey' | 'linearAccessToken' | 'linearRefreshToken' | 'linearClientSecret' | 'slackClientSecret' | 'slackAppToken' | 'githubPat'> & {
|
|
890
|
+
type PublicIntegrationsSettings = Omit<IntegrationsSettings, 'linearApiKey' | 'linearAccessToken' | 'linearRefreshToken' | 'linearClientSecret' | 'slackClientSecret' | 'slackAppToken' | 'githubPat' | 'abletimeAccessToken'> & {
|
|
882
891
|
/** True when Linear is connected (OAuth or API key). */
|
|
883
892
|
hasLinearApiKey: boolean;
|
|
884
893
|
hasLinearOAuth: boolean;
|
|
@@ -886,6 +895,8 @@ type PublicIntegrationsSettings = Omit<IntegrationsSettings, 'linearApiKey' | 'l
|
|
|
886
895
|
hasSlackAppToken: boolean;
|
|
887
896
|
/** True when a GitHub PAT is stored (token mode). */
|
|
888
897
|
hasGithubPat: boolean;
|
|
898
|
+
/** True when an AbleTime personal access token is stored. */
|
|
899
|
+
hasAbleTimeToken: boolean;
|
|
889
900
|
};
|
|
890
901
|
/** Settings payload for the desktop UI. Secret values are omitted. */
|
|
891
902
|
type PublicAppSettings = Omit<AppSettings, 'integrations'> & {
|
|
@@ -927,6 +938,9 @@ declare function updateIntegrationsSettings(patch: {
|
|
|
927
938
|
slackDeviceLabel?: string | null;
|
|
928
939
|
githubGitAuthMode?: GithubGitAuthMode | null;
|
|
929
940
|
githubPat?: string | null;
|
|
941
|
+
abletimeAccessToken?: string | null;
|
|
942
|
+
abletimeHost?: string | null;
|
|
943
|
+
abletimeViewerName?: string | null;
|
|
930
944
|
}): AppSettings;
|
|
931
945
|
declare function updateDefaultsSettings(patch: {
|
|
932
946
|
agent?: AgentKind | null;
|
|
@@ -978,6 +992,18 @@ declare function saveLinearOAuth(input: {
|
|
|
978
992
|
}): AppSettings;
|
|
979
993
|
/** Clear Linear OAuth tokens and API key. Does not revoke remotely. */
|
|
980
994
|
declare function disconnectLinearConnection(): AppSettings;
|
|
995
|
+
/** True when Sideboard has an AbleTime personal access token stored. */
|
|
996
|
+
declare function isAbleTimeConnected(settings?: AppSettings): boolean;
|
|
997
|
+
declare function getAbleTimeAccessToken(settings?: AppSettings): string | null;
|
|
998
|
+
declare function getAbleTimeHost(settings?: AppSettings): string;
|
|
999
|
+
/** Persist AbleTime PAT after a successful MCP orientation. */
|
|
1000
|
+
declare function saveAbleTimeConnection(input: {
|
|
1001
|
+
accessToken: string;
|
|
1002
|
+
host?: string | null;
|
|
1003
|
+
viewerName?: string | null;
|
|
1004
|
+
}): AppSettings;
|
|
1005
|
+
/** Clear AbleTime PAT and viewer. Does not revoke remotely. */
|
|
1006
|
+
declare function disconnectAbleTimeConnection(): AppSettings;
|
|
981
1007
|
/** Preferred issue source (default GitHub). */
|
|
982
1008
|
declare function getIssueSource(settings?: AppSettings): IssueSource;
|
|
983
1009
|
/** Declared GitHub git-auth mode (default `auto`). */
|
|
@@ -986,12 +1012,11 @@ declare function getGithubGitAuthMode(settings?: AppSettings): GithubGitAuthMode
|
|
|
986
1012
|
declare function getGithubPat(settings?: AppSettings): string | null;
|
|
987
1013
|
/**
|
|
988
1014
|
* Whether this preferred source can list issues today.
|
|
989
|
-
* AbleTime is typed for Home/Create/Settings but has no client yet.
|
|
990
1015
|
*/
|
|
991
1016
|
declare function isIssueSourceConnected(source: IssueSource, settings?: AppSettings): boolean;
|
|
992
1017
|
/**
|
|
993
1018
|
* Runtime issue source: honors preference, but falls back to GitHub when
|
|
994
|
-
* the preferred tracker is not connected
|
|
1019
|
+
* the preferred tracker is not connected.
|
|
995
1020
|
*/
|
|
996
1021
|
declare function resolveEffectiveIssueSource(settings?: AppSettings): IssueSource;
|
|
997
1022
|
declare function getLinearApiKey(settings?: AppSettings): string | null;
|
|
@@ -1874,11 +1899,125 @@ declare function startLinearOAuth(opts?: {
|
|
|
1874
1899
|
/** Revoke OAuth tokens (best-effort) and clear Linear credentials including API key. */
|
|
1875
1900
|
declare function disconnectLinear(): Promise<AppSettings>;
|
|
1876
1901
|
|
|
1902
|
+
interface AbleTimeTask {
|
|
1903
|
+
id: string;
|
|
1904
|
+
identifier: string;
|
|
1905
|
+
title: string;
|
|
1906
|
+
url: string;
|
|
1907
|
+
description?: string;
|
|
1908
|
+
state?: string;
|
|
1909
|
+
projectId?: string;
|
|
1910
|
+
categoryId?: string;
|
|
1911
|
+
assignee?: {
|
|
1912
|
+
id?: string;
|
|
1913
|
+
name: string;
|
|
1914
|
+
};
|
|
1915
|
+
labels: string[];
|
|
1916
|
+
}
|
|
1917
|
+
interface AbleTimeProject {
|
|
1918
|
+
id: string;
|
|
1919
|
+
name: string;
|
|
1920
|
+
categories: Array<{
|
|
1921
|
+
id: string;
|
|
1922
|
+
name: string;
|
|
1923
|
+
}>;
|
|
1924
|
+
}
|
|
1925
|
+
interface AbleTimeViewer {
|
|
1926
|
+
name?: string;
|
|
1927
|
+
id?: string;
|
|
1928
|
+
}
|
|
1929
|
+
interface AbleTimeOrientation {
|
|
1930
|
+
viewer: AbleTimeViewer;
|
|
1931
|
+
projects: AbleTimeProject[];
|
|
1932
|
+
tasks: AbleTimeTask[];
|
|
1933
|
+
raw: unknown;
|
|
1934
|
+
}
|
|
1935
|
+
declare function taskUrl(task: Pick<AbleTimeTask, 'id' | 'identifier'>, host?: string | null): string;
|
|
1936
|
+
declare function mapAbleTimeTask(raw: unknown, host?: string | null): AbleTimeTask | null;
|
|
1937
|
+
declare function toAbleTimeIssueInfo(task: AbleTimeTask): IssueInfo;
|
|
1938
|
+
declare function issueAttachmentForAbleTimeTask(task: AbleTimeTask): ThreadAttachment;
|
|
1939
|
+
declare function getAbleTimeOrientation(opts?: {
|
|
1940
|
+
token?: string | null;
|
|
1941
|
+
host?: string | null;
|
|
1942
|
+
}): Promise<AbleTimeOrientation>;
|
|
1943
|
+
declare function listAbleTimeProjects(opts?: {
|
|
1944
|
+
token?: string | null;
|
|
1945
|
+
host?: string | null;
|
|
1946
|
+
}): Promise<AbleTimeProject[]>;
|
|
1947
|
+
declare function listAbleTimeTasks(opts?: {
|
|
1948
|
+
token?: string | null;
|
|
1949
|
+
host?: string | null;
|
|
1950
|
+
projectId?: string;
|
|
1951
|
+
query?: string;
|
|
1952
|
+
includeClosed?: boolean;
|
|
1953
|
+
}): Promise<AbleTimeTask[]>;
|
|
1954
|
+
declare function searchAbleTimeTasks(query: string, opts?: {
|
|
1955
|
+
token?: string | null;
|
|
1956
|
+
host?: string | null;
|
|
1957
|
+
}): Promise<AbleTimeTask[]>;
|
|
1958
|
+
declare function getAbleTimeTask(id: string, opts?: {
|
|
1959
|
+
token?: string | null;
|
|
1960
|
+
host?: string | null;
|
|
1961
|
+
}): Promise<AbleTimeTask>;
|
|
1962
|
+
declare function createAbleTimeTask(input: {
|
|
1963
|
+
title: string;
|
|
1964
|
+
description?: string;
|
|
1965
|
+
projectId?: string;
|
|
1966
|
+
categoryId?: string;
|
|
1967
|
+
state?: 'backlog' | 'todo';
|
|
1968
|
+
}, opts?: {
|
|
1969
|
+
token?: string | null;
|
|
1970
|
+
host?: string | null;
|
|
1971
|
+
}): Promise<AbleTimeTask>;
|
|
1972
|
+
/**
|
|
1973
|
+
* Find an open AbleTime task for this work, or create one to track against.
|
|
1974
|
+
* Matches identifier or exact title before creating.
|
|
1975
|
+
*/
|
|
1976
|
+
declare function ensureAbleTimeTask(input: {
|
|
1977
|
+
title: string;
|
|
1978
|
+
description?: string;
|
|
1979
|
+
projectId?: string;
|
|
1980
|
+
categoryId?: string;
|
|
1981
|
+
}, opts?: {
|
|
1982
|
+
token?: string | null;
|
|
1983
|
+
host?: string | null;
|
|
1984
|
+
}): Promise<AbleTimeTask & {
|
|
1985
|
+
created: boolean;
|
|
1986
|
+
}>;
|
|
1987
|
+
type AbleTimeAssignedIssuesResult = {
|
|
1988
|
+
viewer: AbleTimeViewer;
|
|
1989
|
+
issues: IssueInfo[];
|
|
1990
|
+
};
|
|
1991
|
+
declare function listAbleTimeAssignedIssues(opts?: {
|
|
1992
|
+
token?: string | null;
|
|
1993
|
+
host?: string | null;
|
|
1994
|
+
}): Promise<AbleTimeAssignedIssuesResult>;
|
|
1995
|
+
declare function verifyAbleTimeConnection(input: {
|
|
1996
|
+
token: string;
|
|
1997
|
+
host?: string | null;
|
|
1998
|
+
}): Promise<AbleTimeViewer>;
|
|
1999
|
+
|
|
2000
|
+
declare const DEFAULT_ABLETIME_HOST = "https://track.abletime.com";
|
|
2001
|
+
declare const ABLETIME_MCP_PATH = "/api/public/v2/mcp";
|
|
2002
|
+
type AbleTimeMcpToolName = 'orientation' | 'upsert_entry' | 'update_entry' | 'list_entries' | 'delete_entry' | 'accept_entry' | 'get_project' | 'create_task' | 'update_task' | 'get_task' | 'list_tasks' | 'set_task_state' | 'create_comment' | 'description_schema' | 'search_tasks' | 'list_projects' | 'list_users' | 'tool_schema' | 'full_catalog';
|
|
2003
|
+
declare function normalizeAbleTimeHost(raw?: string | null): string;
|
|
2004
|
+
declare function abletimeMcpUrl(host?: string | null): string;
|
|
2005
|
+
declare function rewriteAbleTimeError(message: string): string;
|
|
2006
|
+
declare function abletimeMcpRequest(method: string, params?: unknown, opts?: {
|
|
2007
|
+
token?: string | null;
|
|
2008
|
+
host?: string | null;
|
|
2009
|
+
}): Promise<unknown>;
|
|
2010
|
+
declare function callAbleTimeTool<T = unknown>(name: AbleTimeMcpToolName, args?: Record<string, unknown>, opts?: {
|
|
2011
|
+
token?: string | null;
|
|
2012
|
+
host?: string | null;
|
|
2013
|
+
}): Promise<T>;
|
|
2014
|
+
|
|
1877
2015
|
interface ListIssuesResult {
|
|
1878
2016
|
source: IssueSource;
|
|
1879
|
-
/** Preference before fallback (useful for “Set up Linear” UI). */
|
|
2017
|
+
/** Preference before fallback (useful for “Set up Linear / AbleTime” UI). */
|
|
1880
2018
|
preferredSource: IssueSource;
|
|
1881
2019
|
linearConnected: boolean;
|
|
2020
|
+
abletimeConnected: boolean;
|
|
1882
2021
|
issues: IssueInfo[];
|
|
1883
2022
|
/** Linear viewer name or GitHub login — used for “assigned to me”. */
|
|
1884
2023
|
viewer?: {
|
|
@@ -1895,9 +2034,8 @@ declare function listGitHubIssues(repoPath: string, opts?: {
|
|
|
1895
2034
|
}): Promise<IssueInfo[]>;
|
|
1896
2035
|
/**
|
|
1897
2036
|
* Unified issue list for Create-from / Link issue / Home / MCP / CLI.
|
|
1898
|
-
* Uses Sideboard Account connections —
|
|
1899
|
-
*
|
|
1900
|
-
* (`resolveEffectiveIssueSource` falls back to GitHub).
|
|
2037
|
+
* Uses Sideboard Account connections — Linear GraphQL, AbleTime hosted MCP,
|
|
2038
|
+
* or GitHub Issues via `gh`.
|
|
1901
2039
|
*/
|
|
1902
2040
|
declare function listIssues(repoPath: string): Promise<ListIssuesResult>;
|
|
1903
2041
|
|
|
@@ -4030,6 +4168,8 @@ interface IpcApi {
|
|
|
4030
4168
|
slackDeviceLabel?: string | null;
|
|
4031
4169
|
githubGitAuthMode?: GithubGitAuthMode | null;
|
|
4032
4170
|
githubPat?: string | null;
|
|
4171
|
+
abletimeAccessToken?: string | null;
|
|
4172
|
+
abletimeHost?: string | null;
|
|
4033
4173
|
}): Promise<PublicAppSettings>;
|
|
4034
4174
|
updateDefaultsSettings(patch: {
|
|
4035
4175
|
agent?: AgentKind | null;
|
|
@@ -4054,6 +4194,24 @@ interface IpcApi {
|
|
|
4054
4194
|
cancelLinearOAuth(): Promise<void>;
|
|
4055
4195
|
/** Revoke Linear OAuth (best-effort) and clear stored Linear credentials. */
|
|
4056
4196
|
disconnectLinear(): Promise<PublicAppSettings>;
|
|
4197
|
+
/** Verify an AbleTime PAT via MCP orientation and store it. */
|
|
4198
|
+
connectAbleTime(input: {
|
|
4199
|
+
token: string;
|
|
4200
|
+
host?: string | null;
|
|
4201
|
+
}): Promise<PublicAppSettings>;
|
|
4202
|
+
/** Clear the stored AbleTime personal access token. */
|
|
4203
|
+
disconnectAbleTime(): Promise<PublicAppSettings>;
|
|
4204
|
+
/**
|
|
4205
|
+
* Find or create an AbleTime task to track work against
|
|
4206
|
+
* (hosted MCP create_task / search_tasks).
|
|
4207
|
+
*/
|
|
4208
|
+
ensureAbleTimeTask(input: {
|
|
4209
|
+
title: string;
|
|
4210
|
+
description?: string;
|
|
4211
|
+
projectId?: string;
|
|
4212
|
+
}): Promise<IssueInfo & {
|
|
4213
|
+
created: boolean;
|
|
4214
|
+
}>;
|
|
4057
4215
|
/** Sideboard Slack listen (DMs + @mentions → Global orchestrator). */
|
|
4058
4216
|
getSlackListenStatus(): Promise<SlackListenStatus>;
|
|
4059
4217
|
setSlackListen(opts: {
|
|
@@ -4068,8 +4226,8 @@ interface IpcApi {
|
|
|
4068
4226
|
appCaffeinated: boolean;
|
|
4069
4227
|
}) => void): () => void;
|
|
4070
4228
|
/**
|
|
4071
|
-
* Unified issues for Create-from / Link issue (Linear
|
|
4072
|
-
* based on Account preference with
|
|
4229
|
+
* Unified issues for Create-from / Link issue (Linear, AbleTime MCP, or
|
|
4230
|
+
* GitHub Issues, based on Account preference with GitHub fallback).
|
|
4073
4231
|
*/
|
|
4074
4232
|
listIssues(repoPath: string): Promise<ListIssuesResult>;
|
|
4075
4233
|
/**
|
|
@@ -4459,8 +4617,8 @@ type HomeBoardInputs = HomeBoardRemoteData;
|
|
|
4459
4617
|
/** Tests / Refresh: drop memory + disk snapshot. */
|
|
4460
4618
|
declare function clearHomeBoardCache(): void;
|
|
4461
4619
|
/**
|
|
4462
|
-
* Same ticket + PR fetch as desktop Home: Linear once, GitHub per
|
|
4463
|
-
* PRs per workspace. Failures are collected so a partial board still returns.
|
|
4620
|
+
* Same ticket + PR fetch as desktop Home: Linear/AbleTime once, GitHub per
|
|
4621
|
+
* workspace, PRs per workspace. Failures are collected so a partial board still returns.
|
|
4464
4622
|
*/
|
|
4465
4623
|
declare function loadHomeBoardInputs(workspaces: HomeBoardWorkspace[]): Promise<HomeBoardInputs>;
|
|
4466
4624
|
type GetHomeBoardInputsOptions = {
|
|
@@ -4468,7 +4626,7 @@ type GetHomeBoardInputsOptions = {
|
|
|
4468
4626
|
now?: number;
|
|
4469
4627
|
};
|
|
4470
4628
|
/**
|
|
4471
|
-
* Cached Home remote snapshot. Hits Linear/GitHub only on first load, after
|
|
4629
|
+
* Cached Home remote snapshot. Hits Linear/AbleTime/GitHub only on first load, after
|
|
4472
4630
|
* TTL (15m), when workspaces change, or when refresh is set. Memory and
|
|
4473
4631
|
* app-data JSON are shared so desktop Home and the orchestration MCP agree.
|
|
4474
4632
|
*/
|
|
@@ -5061,4 +5219,4 @@ declare function pollSlackOutboundWatches(opts?: {
|
|
|
5061
5219
|
now?: number;
|
|
5062
5220
|
}): Promise<void>;
|
|
5063
5221
|
|
|
5064
|
-
export { AGENT_GIT_ACTIONS, AGENT_RUNNER_MAX_OLD_SPACE_MB, ATTACHMENTS_DIR, type ActiveRun, type AddBoardPinInput, type AddStackLayerInput, type AdoptInput, type AdvancedAppSettings, type AgentAdapter, type AgentEvent, type AgentGitAction, type AgentInstructionFile, type AgentKind, type AgentModelCatalog, type AgentModelInfo, type AgentSetupActionResult, type AgentSetupInfo, type AgentSetupKind, type AgentStatus, type AgentTurnInput, type AnthropicCacheControl, type AppSettings, type ApplyIntoMainResult, type AttachCommand, type Autonomy, BAKED_SLACK_RELAY_URL, BRIGHTSY_MCP_ALLOWED_TOOLS, type BoardPin, type BranchInfo, type BrightsyAccount, type BrightsyChatTarget, type BrightsyChatTargets, type BrightsyCloudConnectAgent, type BrightsyHarnessSettings, type BrightsySession, BrightsySideboardApi, type BrightsyTeamTargets, CLAUDE_MODEL_CATALOG, 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, CONVENTION_SETUP_RELPATHS, COORDINATOR_TOOL_PLAYBOOK, type CaffeinateHoldState, type ClaudeHarnessSettings, type CleanupOrphansResult, type CliAgentKind, type CliExecutableSettings, type CloudConnectAgent, type CloudConnectOptions, type CloudConnectStatus, type CompactResult, type CompactThresholds, type ComposerFileBuffer, type ConductorSettings, type ConductorWorkspace, type ConnectedBrightsyTeamInfo, type ConventionSetupFile, type CowboyThreadFields, type CreateChatTabInput, type CreateGlobalChatOpts, type CreateScheduledTaskInput, type CreateStackInput, type CreateThreadInput, type CreateWorktreeResult, type CursorAgentUsageSnapshot, type CursorModelInfo, type CursorSdkStreamMessage, type CursorTurnRequest, type CursorUsageCost, type CursorWorktreesConfig, DEFAULT_WORKTREE_SORT, 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, GITHUB_GIT_AUTH_MODES, GLOBAL_WORKSPACE_ID, type GetDiffOptions, type GhStackStatus, type GitHubStatus, type GitWorktreeStatus, type GithubGitAuthMode, HARNESS_ENV_KEYS, HOME_BOARD_CACHE_TTL_MS, type HarnessId, type HomeBoardLoaded, type HomeBoardRemoteData, ISSUE_SOURCE_LABELS, type InitStackFromThreadInput, type IntegrationsSettings, type IpcApi, type IssueCycleInfo, type IssueInfo, type IssueSource, LEGACY_ATTACHMENTS_DIR, LEGACY_PLAN_FILE_REL, LEGACY_REVIEW_REQUEST_PATH, LINEAR_OAUTH_CANCELLED, LINEAR_OAUTH_PORT, LINEAR_OAUTH_REDIRECT, LINEAR_OAUTH_SCOPES, type LandPreview, type LandResult, type LinearAssignedIssuesResult, type LinearComment, type LinearIssue, LinearOAuthCancelledError, type LinearTeam, type LinearTeamsResult, type LinearWorkflowState, type ListIssuesResult, MAX_ANTHROPIC_CACHE_CONTROL_BLOCKS, type McpServerStatus, type MessagePart, ORCHESTRATOR_AGENT_KINDS, type OpenPrStackLayersInput, type OpenStackLayerInput, type OpenStackLayerResult, type OrchestrationQuotaOnLimit, Orchestrator, type OrchestratorAgentKind, type OrchestratorEvent, type OrchestratorRuntime, type OrphanWorktree, PASTE_ATTACH_MIN_CHARS, PASTE_ATTACH_MIN_LINES, PLAN_FILE_NAME, PLAN_FILE_REL, PLAN_MODE_INSTRUCTION, type PendingPlanQuestions, type PlanQuestion, type PlanQuestionAnswer, type PlanQuestionOption, type PlanToolPartLike, type PrActor, type PrCheckRun, type PrCommentInfo, type PrCommitInfo, type PrDetails, type PrInfo, type PrMeta, type PrReviewInfo, type PrStack, type PrStackLayer, type PresentedPlan, type PublicAppSettings, type PublicIntegrationsSettings, REPO_REVIEW_NAME, REPO_REVIEW_PATH, REVIEW_REQUEST_NAME, REVIEW_REQUEST_PATH, REVIEW_REQUEST_PREFILL, REVIEW_REQUEST_TEMPLATE, REVIEW_SKILL_NAME, REVIEW_SKILL_PATH, type RepoSettings, type RepoSetupInfo, type RequestReviewResult, type ResolvedReviewGuidelines, type ReviewGuidelinesSource, type RunMode, type RunScript, SESSION_RESET_OCCUPANCY_TOKENS, SIDEBOARD_FORCE_STOP, SIDEBOARD_MCP_ALLOWED_TOOLS, SIDEBOARD_MCP_PROFILE_ENV, SLACK_LISTEN_STOPPED_REPLY, SLACK_LISTEN_TIMEOUT_REPLY, SLACK_OAUTH_CANCELLED, SLACK_OAUTH_REDIRECT, SLACK_PROGRESS_DELAY_MS, SLACK_PROGRESS_EDIT_MS, SLACK_REPLY_FORMATTING, SLACK_SEEN_REACTION, type ScheduleCreatedBy, type ScheduleWhen, type ScheduledTask, type ScriptHandle, type SetupRunResult, type SideboardMcpProfile, type SkillInfo, type SlackInboundMessage, type SlackListenOptions, type SlackListenStatus, SlackOAuthCancelledError, type SlackOutboundReply, type SlackOutboundWatch, type SlackRelayClientMessage, type SlackRelayClientOptions, SlackRelayHub, type SlackRelayServerHandle, type SlackRelayServerMessage, type SlackRelayServerOptions, type SlackWorkspaceInfo, 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 ToolPartLike, type TranscriptToolDetail, type TurnCommand, type UpdateScheduledTaskPatch, type UsageScope, WORKTREE_MCP_TOOLS, type Workspace, type WorkspaceInventoryEntry, type WorkspaceScriptEnvOpts, type WorktreeSortMode, ackSlackInboundSeen, addBoardPin, addPrStackLayer, addStackLayerFromThread, addWorkspace, adoptThread, agentGitPrompt, allAdapters, allocatePort, allocatePortRange, allocateTeamName, allocateTeamSlug, appDataDir, appSettingsPath, appendIndexedGitConfig, appendMessage, applyAgentEvent, applyAgentRunnerHeapEnv, applyAppEnvironment, applyCompaction, applyGithubGitAuthEnv, applyPromptCacheTtlEnv, applyThreadIntoMain, applyTurnUsage, armSchedules, assertOrchestratorCapableAgent, attachmentFromAbsolutePath, attachmentsFromBuffers, attachmentsFromWorktreePaths, attachmentsGitignoreBody, autoArchiveOnMergeEnabled, autoCleanupOrphansEnabled, autoRenameBranchEnabled, autoRunAfterSetupEnabled, branchDisplayLabel, brightsyAccessTokenNeedsRefresh, brightsyAdapter, brightsyCloudConnectAgent, brightsyCloudConnectEnabled, brightsyConfigPath, brightsyInjectWorktreeMcpEnabled, brightsyMcpAllowedTools, brightsyMcpServerName, buildCachedUserContent, buildClaudeStreamJsonUserMessage, buildDiffCommentAttachment, buildForkTranscriptAttachment, buildPastedTextAttachment, buildReviewRequestAttachment, buildSessionSeed, buildWorkspaceScriptEnv, caffeinateHoldPath, caffeinateWhileCloudConnectEnabled, caffeinateWhileRunningEnabled, caffeinateWhileSchedulesEnabled, caffeinateWhileSlackListenEnabled, canonicalizeRepoPath, captureLoginEnv, captureTurnBaseline, checkoutPrStackLayer, childEnvWithAppSettings, claimDesktopHost, classifyWorktreeColumn, claudeAdapter, claudeChromeEnabled, claudeUserSettingsPath, cleanupOrphanWorktrees, clearBoardPins, clearHomeBoardCache, cloneRepoIntoSideboard, codexAdapter, codexSandboxWritableRootsArgs, codexUnattendedGitConfigArgs, coerceOrchestratorAgent, collectTakenTeamSlugs, commentLinearIssue, commitAll, computeNextRunAt, conductorBundledBinDir, conductorDbPath, confirmLand, connectBrightsyTeam, connectSlackToken, contextTokens, coordinatorSystemPrompt, coordinatorTurnReminder, copyConfiguredFiles, countCacheControlBlocks, cowboyModeEnabled, createChatTab, createEmptyThread, createExistingBranchWorktree, createGlobalChat, createLinearIssue, createLinearPkce, createOrUpdatePr, createPrStack, createSchedule, createThread, createThreadWorktree, currentBranch, cursorAdapter, cursorSdkMessageToEvents, decodeBrightsyTarget, defaultScheduleName, deleteBranchOnPurgeEnabled, deleteSchedule, deleteThreadRecord, desktopHostPidPath, detectAgents, detectGhStack, detectLocalMergeConflicts, disconnectBrightsyTeam, disconnectLinear, disconnectLinearConnection, disconnectSlackWorkspace, discoverSkills, dropCachedPrefixOnResume, encodeBrightsyTarget, enrichPathWithNpmGlobalBin, enrichWorkspacesWithGithub, ensureAgentPath, ensureBrightsyLocalConfigFresh, ensureCloudCoordinator, ensureConnectedBrightsyTeamTokens, ensureGhPreferOrigin, ensureGlobalCoordinatorCwd, ensureReviewRequestFile, ensureReviewSkillFile, ensureSlackCoordinator, ensureSlackDeviceIdentity, ensureWorkspace, estimateMessageChars, estimateThreadChars, expandComposerPrompt, extractGhErrorDetail, extractPendingPlanQuestions, extractPresentedPlan, extractiveSummary, fetchPrHead, finalizeParts, findConventionSetup, findInvalidCacheControlTtlOrder, findLiveThreadForCreate, findOrphanWorktrees, findSlackCoordinator, findThreadByRef, findThreadForStackLayer, fireSchedule, flattenTurnInput, forkChatTab, forkMessageSlice, forkThreadWorktree, formatAgentInstructions, formatArtifactDirective, formatBrightsyFetchError, formatFetchError, formatGhLandError, formatGitAuthModeDirective, formatIpcInvokeError, formatMergePrError, formatMessagesAsTranscript, formatPlanQuestionAnswers, formatPlanQuestionsForChat, formatProcessGuideDirective, formatRateLimitResetHint, formatRenameBranchDirective, formatScheduleWhen, formatScheduledPrompt, formatSlackExternalReplyPrompt, formatSlackInboundPrompt, formatSlackRepliesForTurn, formatSlackReplyContinuePrompt, formatSlackSignedReply, formatSlackWorkingText, formatTranscriptMarkdown, formatUiReminder, formatWorkspaceInventory, formatWorktreeDirective, formatWorktreeReminder, fromInclusiveInputUsage, getAdapter, getAgentSetupInfo, getBrightsySession, getCaffeinateHold, getDefaultAgent, getDefaultEffort, getDefaultFast, getDefaultModel, getDefaultRunScript, getDiff, getDiffSummary, getGitHubStatus, getGithubGitAuthMode, getGithubPat, getHomeBoardInputs, getIssueSource, getLinearApiKey, getLinearAuthToken, getLinearIssue, getOrchestrator, getPr, getPrChecks, getPrDetails, getPrForHeadBranch, getPrMeta, getPrStack, getRepoSetupInfo, getRunMode, getRunScript, getSchedule, getSlackWorkspace, gh, ghHeadRef, ghRepoSelectArgs, git, githubAgentGitEnv, globalAgentCwd, groupHomeBoardWorktrees, handleSlackInbound, harnessEnvKey, hasBakedLinearOAuth, hasBakedSlackOAuth, hasConductorHook, hasConventionSetup, hasCursorWorktreeSetup, hasEnabledSchedules, hasRepoHook, hasWorkspaceHook, healOrchestrationSoccerTitles, httpFetch, importConductorWorkspace, importConductorWorkspaceAsync, initPrStack, initStackFromThread, initializeGitRepository, inspectGitWorktree, installAgent, interruptSlackCoordinatorForInbound, isAskUserToolName, isBrightsyConnected, isBrightsyNdjsonLine, isCloudCoordinatorThread, isConductorBundledCli, isCowboyThread, isCursorAutoModel, isDefaultishSourceRef, isDesktopHostAlive, isDirty, isGhRateLimitError, isGlobalRepoPath, isGlobalThread, isHomeBoardThread, isImageFilePath, isInPrStack, isInboundForThisDesktop, isIssueSourceConnected, isLinearConnected, isLinearOAuthCancelled, isOrchestratorCapableAgent, isOrchestratorThread, isPidAlive, isPlaceholderBranch, isPollWrapperToolName, isPrNotMergeableError, isPresentPlanToolName, isPrimaryCheckoutThread, isSessionQuotaLimit, isShellToolName, isSideboardScratchPath, isSlackCoordinatorThread, isSlackExternalReplyPrompt, isSlackOAuthCancelled, isSubagentToolName, isThinkingEffort, isThisProcessDesktopHost, isThreadCaffeinated, isThreadRecordFile, isWorkspaceScratchPath, issueSourceLabel, lastRequestOccupancy, latestPendingPlanQuestions, linearAuthorizationHeader, linearCycleIsActive, linearGraphql, linearOAuthAuthorizeUrl, linearOAuthCredentials, listAgentSetupInfo, listBoardPins, listBranchCommits, listBranches, listBrightsyAccounts, listBrightsyChatTargets, listCodexModels, listConductorWorkspaces, listConnectedBrightsyTeams, listCursorModels, listGitHubIssues, listGlobalThreads, listIssues, listLinearAssignedIssues, listLinearIssues, listLinearIssuesDirect, listLinearTeams, listModelsForAgent, listOpencodeModels, listPrs, listRunScripts, listSchedules, listSlackOutboundWatches, listSlackWorkspaces, listThreads, listWorkspaces, listWorktreeFiles, listWorktrees, liveActivitySummary, loadAgentInstructions, loadAppSettings, loadBrightsyConfig, loadConductorSettings, loadHomeBoardInputs, loadRepoSettings, loadWorkspaceSettings, locksDir, loginAgent, lookupSoccerTeam, maxConcurrentAgents, maybeCompactContext, mcpAllowTools, mcpAuthWarnings, mergeAgentGitAuthEnv, mergePr, mergePrStack, mergeSideboardIntoMcpServersJson, mergeUsage, messagePartParentId, nextPastedTextName, nextThinkingEffort, nonInteractiveGitProcessEnv, normalizeParseResult, normalizeThinkingEffort, normalizeThread, normalizeTurnInput, normalizeWorktreePath, openInSystemTerminal, openPrStackLayers, openStackLayer, opencodeAdapter, orchestrationQuotaFallbackAgent, orchestrationQuotaOnLimit, orchestrationTitleNeedsSoccerNickname, orchestratorSessionPoisonedByBuiltins, originGhRepoEnv, parseCursorRunnerLine, parseDurationMs, parseForceStopMessage, parseGhStackViewJson, parseGithubSlugFromRemoteUrl, parseMcpList, parsePlanQuestionsInput, parseSessionQuotaResetAt, parseSlackRelayClientMessage, parseSlackRelayServerMessage, partsToAssistantText, pastedTextStats, pendingSlackExternalReplies, permissionMode, persistVaultKeyInKeychain, planFileAbs, planQuestionsSignature, pollSlackOutboundWatches, posixShellSingleQuote, preferredCursorCostCents, prepareTerminalCommand, previewLand, promptMentionsBrightsy, pushBranch, readExistingReviewRequestFile, readKeychainVaultKey, readPlanFile, readSkillBody, readThread, readWorktreeFile, readWorktreeFileForUpload, readWorktreeInclude, recordScheduleRun, recordSlackOutboundWatch, refreshBrightsyAccessToken, refreshGitHubAuth, registerPackagedUserMcpClients, releaseCaffeinateHoldForThread, releaseDesktopHost, removeBoardPin, removeWorkspace, removeWorktree, repoSlug, requestOccupancy, requestReview, requireAgent, resetGhStackDetectCache, resetGithubAgentTokenMemo, resolveAgentExecutable, resolveAgentGitAuthEnv, resolveClaudeExecutable, resolveCodexGitWritableRoots, resolveCommandBinarySync, resolveConductorCursorAgentId, resolveCursorModelId, resolveDefaultBranch, resolveDiffBaseRef, resolveEffectiveIssueSource, resolveFilesToCopy, resolveGhAuthToken, resolveGitDirsForLockRecovery, resolveGithubAgentToken, resolveGithubRepoSlug, resolveLinearState, resolveLinearTeam, resolveLoginCommand, resolveNewThreadOptions, resolvePlanMarkdown, resolvePrSelector, resolvePrSelectors, resolveQuotaFallbackAgent, resolveRepoRoot, resolveReviewGuidelines, resolveScheduleThreadId, resolveSlackListenMode, resolveThreadDefaults, resolveThreadEffort, resolveVaultKey, resolveWorktreeStartPoint, rewriteLinearError, run, runArchiveScript, runCloudConnect, runConventionSetup, runCursorWorktreeSetup, runSetupScript, runSlackListen, runSlackRelayClient, runWorkspaceSetup, sameWorktreePath, sanitizeMcpServerName, saveAppSettings, saveLinearOAuth, schedulesPath, scrubGithubTokensFromChildEnv, secureFileUnlocksWith, setCaffeinateHold, setHttpFetchImpl, setStatus, setVaultMasterKey, settingsSourceLabel, shouldAttachPastedText, shouldCompactContext, shouldInjectBrightsyMcp, shouldRefreshReviewRequestTemplate, shouldRemoveWorktreeOnTeardown, shouldResetSessionForOccupancy, shouldRunWorktreeCleanup, showCostEnabled, sideboardHomeDir, sideboardMcpProfile, sideboardReposDir, sideboardWorkspacesDir, slackAppLevelToken, slackArchiveUrl, slackCoordinatorSourceRef, slackListenEnabled, slackOAuthCredentials, slackOAuthResultUrl, slackRelayUrl, slugify, spawnAgentTurn, splitForCompaction, stackAgentDefaultsFrom, stackIdFrom, stackMergeReadiness, stageAbsolutePathsAsAttachments, stageBuffersAsAttachments, startDevServer, startLinearOAuth, startMcpServer, startOrchestration, startSlackOAuth, startSlackRelayServer, stripBrightsyNdjsonNoise, stripNestedElectronEnv, submitPrStack, suggestSlug, sumUsageList, summarizeConversation, switchBrightsyAccount, syncWorkspacesFromThreads, takenTeamSlugsForChatTab, takenTeamSlugsForOrchestration, taskMessageText, thinkingEffortBars, thinkingEffortLabel, thisProcessShouldDrainAgentQueues, threadDisplayLabel, threadFilePath, threadLivePath, threadLockPath, threadRequestsBrightsyMcp, threadsDir, threadsSharingWorktree, toPublicAppSettings, toolActivityLine, toolDescription, toolDetail, toolFilePath, totalTokens, turnCostUsdFromCursorUsage, updateAdvancedSettings, updateAgentExecutable, updateAppEnvironment, updateBrightsySettings, updateClaudeSettings, updateCodexSettings, updateDefaultsSettings, updateIntegrationsSettings, updateLinearIssue, updateOpencodeSettings, updateSchedule, updateThread, userClaudeMcpConfigPath, userCursorMcpConfigPath, validateLinearApiKey, waitForPidExit, warmGithubAgentAuth, withAgentInstructions, withEventParentId, withEventsParentId, withExportedPath, withMaxOldSpaceSize, withThreadLock, workspaceSettingsSourceLabel, worktreeBoardStatus, worktreeCleanupSettings, worktreeDisplayLabel, worktreeDisplayLabelForGroup, worktreeNameFromPath, worktreesRoot, wrapReviewSkillMarkdown, writeInjectedMcpConfig, writePlanFile, writeThread, writeWorktreeFile };
|
|
5222
|
+
export { ABLETIME_MCP_PATH, AGENT_GIT_ACTIONS, AGENT_RUNNER_MAX_OLD_SPACE_MB, ATTACHMENTS_DIR, type AbleTimeAssignedIssuesResult, type AbleTimeMcpToolName, type AbleTimeOrientation, type AbleTimeProject, type AbleTimeTask, type AbleTimeViewer, type ActiveRun, type AddBoardPinInput, type AddStackLayerInput, type AdoptInput, type AdvancedAppSettings, type AgentAdapter, type AgentEvent, type AgentGitAction, type AgentInstructionFile, type AgentKind, type AgentModelCatalog, type AgentModelInfo, type AgentSetupActionResult, type AgentSetupInfo, type AgentSetupKind, type AgentStatus, type AgentTurnInput, type AnthropicCacheControl, type AppSettings, type ApplyIntoMainResult, type AttachCommand, type Autonomy, BAKED_SLACK_RELAY_URL, BRIGHTSY_MCP_ALLOWED_TOOLS, type BoardPin, type BranchInfo, type BrightsyAccount, type BrightsyChatTarget, type BrightsyChatTargets, type BrightsyCloudConnectAgent, type BrightsyHarnessSettings, type BrightsySession, BrightsySideboardApi, type BrightsyTeamTargets, CLAUDE_MODEL_CATALOG, 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, CONVENTION_SETUP_RELPATHS, COORDINATOR_TOOL_PLAYBOOK, type CaffeinateHoldState, type ClaudeHarnessSettings, type CleanupOrphansResult, type CliAgentKind, type CliExecutableSettings, type CloudConnectAgent, type CloudConnectOptions, type CloudConnectStatus, type CompactResult, type CompactThresholds, type ComposerFileBuffer, type ConductorSettings, type ConductorWorkspace, type ConnectedBrightsyTeamInfo, type ConventionSetupFile, type CowboyThreadFields, type CreateChatTabInput, type CreateGlobalChatOpts, type CreateScheduledTaskInput, type CreateStackInput, type CreateThreadInput, type CreateWorktreeResult, type CursorAgentUsageSnapshot, type CursorModelInfo, type CursorSdkStreamMessage, type CursorTurnRequest, type CursorUsageCost, type CursorWorktreesConfig, DEFAULT_ABLETIME_HOST, DEFAULT_WORKTREE_SORT, 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, GITHUB_GIT_AUTH_MODES, GLOBAL_WORKSPACE_ID, type GetDiffOptions, type GhStackStatus, type GitHubStatus, type GitWorktreeStatus, type GithubGitAuthMode, HARNESS_ENV_KEYS, HOME_BOARD_CACHE_TTL_MS, type HarnessId, type HomeBoardLoaded, type HomeBoardRemoteData, ISSUE_SOURCE_LABELS, type InitStackFromThreadInput, type IntegrationsSettings, type IpcApi, type IssueCycleInfo, type IssueInfo, type IssueSource, LEGACY_ATTACHMENTS_DIR, LEGACY_PLAN_FILE_REL, LEGACY_REVIEW_REQUEST_PATH, LINEAR_OAUTH_CANCELLED, LINEAR_OAUTH_PORT, LINEAR_OAUTH_REDIRECT, LINEAR_OAUTH_SCOPES, type LandPreview, type LandResult, type LinearAssignedIssuesResult, type LinearComment, type LinearIssue, LinearOAuthCancelledError, type LinearTeam, type LinearTeamsResult, type LinearWorkflowState, type ListIssuesResult, MAX_ANTHROPIC_CACHE_CONTROL_BLOCKS, type McpServerStatus, type MessagePart, ORCHESTRATOR_AGENT_KINDS, type OpenPrStackLayersInput, type OpenStackLayerInput, type OpenStackLayerResult, type OrchestrationQuotaOnLimit, Orchestrator, type OrchestratorAgentKind, type OrchestratorEvent, type OrchestratorRuntime, type OrphanWorktree, PASTE_ATTACH_MIN_CHARS, PASTE_ATTACH_MIN_LINES, PLAN_FILE_NAME, PLAN_FILE_REL, PLAN_MODE_INSTRUCTION, type PendingPlanQuestions, type PlanQuestion, type PlanQuestionAnswer, type PlanQuestionOption, type PlanToolPartLike, type PrActor, type PrCheckRun, type PrCommentInfo, type PrCommitInfo, type PrDetails, type PrInfo, type PrMeta, type PrReviewInfo, type PrStack, type PrStackLayer, type PresentedPlan, type PublicAppSettings, type PublicIntegrationsSettings, REPO_REVIEW_NAME, REPO_REVIEW_PATH, REVIEW_REQUEST_NAME, REVIEW_REQUEST_PATH, REVIEW_REQUEST_PREFILL, REVIEW_REQUEST_TEMPLATE, REVIEW_SKILL_NAME, REVIEW_SKILL_PATH, type RepoSettings, type RepoSetupInfo, type RequestReviewResult, type ResolvedReviewGuidelines, type ReviewGuidelinesSource, type RunMode, type RunScript, SESSION_RESET_OCCUPANCY_TOKENS, SIDEBOARD_FORCE_STOP, SIDEBOARD_MCP_ALLOWED_TOOLS, SIDEBOARD_MCP_PROFILE_ENV, SLACK_LISTEN_STOPPED_REPLY, SLACK_LISTEN_TIMEOUT_REPLY, SLACK_OAUTH_CANCELLED, SLACK_OAUTH_REDIRECT, SLACK_PROGRESS_DELAY_MS, SLACK_PROGRESS_EDIT_MS, SLACK_REPLY_FORMATTING, SLACK_SEEN_REACTION, type ScheduleCreatedBy, type ScheduleWhen, type ScheduledTask, type ScriptHandle, type SetupRunResult, type SideboardMcpProfile, type SkillInfo, type SlackInboundMessage, type SlackListenOptions, type SlackListenStatus, SlackOAuthCancelledError, type SlackOutboundReply, type SlackOutboundWatch, type SlackRelayClientMessage, type SlackRelayClientOptions, SlackRelayHub, type SlackRelayServerHandle, type SlackRelayServerMessage, type SlackRelayServerOptions, type SlackWorkspaceInfo, 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 ToolPartLike, type TranscriptToolDetail, type TurnCommand, type UpdateScheduledTaskPatch, type UsageScope, WORKTREE_MCP_TOOLS, type Workspace, type WorkspaceInventoryEntry, type WorkspaceScriptEnvOpts, type WorktreeSortMode, abletimeMcpRequest, abletimeMcpUrl, ackSlackInboundSeen, addBoardPin, addPrStackLayer, addStackLayerFromThread, addWorkspace, adoptThread, agentGitPrompt, allAdapters, allocatePort, allocatePortRange, allocateTeamName, allocateTeamSlug, appDataDir, appSettingsPath, appendIndexedGitConfig, appendMessage, applyAgentEvent, applyAgentRunnerHeapEnv, applyAppEnvironment, applyCompaction, applyGithubGitAuthEnv, applyPromptCacheTtlEnv, applyThreadIntoMain, applyTurnUsage, armSchedules, assertOrchestratorCapableAgent, attachmentFromAbsolutePath, attachmentsFromBuffers, attachmentsFromWorktreePaths, attachmentsGitignoreBody, autoArchiveOnMergeEnabled, autoCleanupOrphansEnabled, autoRenameBranchEnabled, autoRunAfterSetupEnabled, branchDisplayLabel, brightsyAccessTokenNeedsRefresh, brightsyAdapter, brightsyCloudConnectAgent, brightsyCloudConnectEnabled, brightsyConfigPath, brightsyInjectWorktreeMcpEnabled, brightsyMcpAllowedTools, brightsyMcpServerName, buildCachedUserContent, buildClaudeStreamJsonUserMessage, buildDiffCommentAttachment, buildForkTranscriptAttachment, buildPastedTextAttachment, buildReviewRequestAttachment, buildSessionSeed, buildWorkspaceScriptEnv, caffeinateHoldPath, caffeinateWhileCloudConnectEnabled, caffeinateWhileRunningEnabled, caffeinateWhileSchedulesEnabled, caffeinateWhileSlackListenEnabled, callAbleTimeTool, canonicalizeRepoPath, captureLoginEnv, captureTurnBaseline, checkoutPrStackLayer, childEnvWithAppSettings, claimDesktopHost, classifyWorktreeColumn, claudeAdapter, claudeChromeEnabled, claudeUserSettingsPath, cleanupOrphanWorktrees, clearBoardPins, clearHomeBoardCache, cloneRepoIntoSideboard, codexAdapter, codexSandboxWritableRootsArgs, codexUnattendedGitConfigArgs, coerceOrchestratorAgent, collectTakenTeamSlugs, commentLinearIssue, commitAll, computeNextRunAt, conductorBundledBinDir, conductorDbPath, confirmLand, connectBrightsyTeam, connectSlackToken, contextTokens, coordinatorSystemPrompt, coordinatorTurnReminder, copyConfiguredFiles, countCacheControlBlocks, cowboyModeEnabled, createAbleTimeTask, createChatTab, createEmptyThread, createExistingBranchWorktree, createGlobalChat, createLinearIssue, createLinearPkce, createOrUpdatePr, createPrStack, createSchedule, createThread, createThreadWorktree, currentBranch, cursorAdapter, cursorSdkMessageToEvents, decodeBrightsyTarget, defaultScheduleName, deleteBranchOnPurgeEnabled, deleteSchedule, deleteThreadRecord, desktopHostPidPath, detectAgents, detectGhStack, detectLocalMergeConflicts, disconnectAbleTimeConnection, disconnectBrightsyTeam, disconnectLinear, disconnectLinearConnection, disconnectSlackWorkspace, discoverSkills, dropCachedPrefixOnResume, encodeBrightsyTarget, enrichPathWithNpmGlobalBin, enrichWorkspacesWithGithub, ensureAbleTimeTask, ensureAgentPath, ensureBrightsyLocalConfigFresh, ensureCloudCoordinator, ensureConnectedBrightsyTeamTokens, ensureGhPreferOrigin, ensureGlobalCoordinatorCwd, ensureReviewRequestFile, ensureReviewSkillFile, ensureSlackCoordinator, ensureSlackDeviceIdentity, ensureWorkspace, estimateMessageChars, estimateThreadChars, expandComposerPrompt, extractGhErrorDetail, extractPendingPlanQuestions, extractPresentedPlan, extractiveSummary, fetchPrHead, finalizeParts, findConventionSetup, findInvalidCacheControlTtlOrder, findLiveThreadForCreate, findOrphanWorktrees, findSlackCoordinator, findThreadByRef, findThreadForStackLayer, fireSchedule, flattenTurnInput, forkChatTab, forkMessageSlice, forkThreadWorktree, formatAgentInstructions, formatArtifactDirective, formatBrightsyFetchError, formatFetchError, formatGhLandError, formatGitAuthModeDirective, formatIpcInvokeError, formatMergePrError, formatMessagesAsTranscript, formatPlanQuestionAnswers, formatPlanQuestionsForChat, formatProcessGuideDirective, formatRateLimitResetHint, formatRenameBranchDirective, formatScheduleWhen, formatScheduledPrompt, formatSlackExternalReplyPrompt, formatSlackInboundPrompt, formatSlackRepliesForTurn, formatSlackReplyContinuePrompt, formatSlackSignedReply, formatSlackWorkingText, formatTranscriptMarkdown, formatUiReminder, formatWorkspaceInventory, formatWorktreeDirective, formatWorktreeReminder, fromInclusiveInputUsage, getAbleTimeAccessToken, getAbleTimeHost, getAbleTimeOrientation, getAbleTimeTask, getAdapter, getAgentSetupInfo, getBrightsySession, getCaffeinateHold, getDefaultAgent, getDefaultEffort, getDefaultFast, getDefaultModel, getDefaultRunScript, getDiff, getDiffSummary, getGitHubStatus, getGithubGitAuthMode, getGithubPat, getHomeBoardInputs, getIssueSource, getLinearApiKey, getLinearAuthToken, getLinearIssue, getOrchestrator, getPr, getPrChecks, getPrDetails, getPrForHeadBranch, getPrMeta, getPrStack, getRepoSetupInfo, getRunMode, getRunScript, getSchedule, getSlackWorkspace, gh, ghHeadRef, ghRepoSelectArgs, git, githubAgentGitEnv, globalAgentCwd, groupHomeBoardWorktrees, handleSlackInbound, harnessEnvKey, hasBakedLinearOAuth, hasBakedSlackOAuth, hasConductorHook, hasConventionSetup, hasCursorWorktreeSetup, hasEnabledSchedules, hasRepoHook, hasWorkspaceHook, healOrchestrationSoccerTitles, httpFetch, importConductorWorkspace, importConductorWorkspaceAsync, initPrStack, initStackFromThread, initializeGitRepository, inspectGitWorktree, installAgent, interruptSlackCoordinatorForInbound, isAbleTimeConnected, isAskUserToolName, isBrightsyConnected, isBrightsyNdjsonLine, isCloudCoordinatorThread, isConductorBundledCli, isCowboyThread, isCursorAutoModel, isDefaultishSourceRef, isDesktopHostAlive, isDirty, isGhRateLimitError, isGlobalRepoPath, isGlobalThread, isHomeBoardThread, isImageFilePath, isInPrStack, isInboundForThisDesktop, isIssueSourceConnected, isLinearConnected, isLinearOAuthCancelled, isOrchestratorCapableAgent, isOrchestratorThread, isPidAlive, isPlaceholderBranch, isPollWrapperToolName, isPrNotMergeableError, isPresentPlanToolName, isPrimaryCheckoutThread, isSessionQuotaLimit, isShellToolName, isSideboardScratchPath, isSlackCoordinatorThread, isSlackExternalReplyPrompt, isSlackOAuthCancelled, isSubagentToolName, isThinkingEffort, isThisProcessDesktopHost, isThreadCaffeinated, isThreadRecordFile, isWorkspaceScratchPath, issueAttachmentForAbleTimeTask, issueSourceLabel, lastRequestOccupancy, latestPendingPlanQuestions, linearAuthorizationHeader, linearCycleIsActive, linearGraphql, linearOAuthAuthorizeUrl, linearOAuthCredentials, listAbleTimeAssignedIssues, listAbleTimeProjects, listAbleTimeTasks, listAgentSetupInfo, listBoardPins, listBranchCommits, listBranches, listBrightsyAccounts, listBrightsyChatTargets, listCodexModels, listConductorWorkspaces, listConnectedBrightsyTeams, listCursorModels, listGitHubIssues, listGlobalThreads, listIssues, listLinearAssignedIssues, listLinearIssues, listLinearIssuesDirect, listLinearTeams, listModelsForAgent, listOpencodeModels, listPrs, listRunScripts, listSchedules, listSlackOutboundWatches, listSlackWorkspaces, listThreads, listWorkspaces, listWorktreeFiles, listWorktrees, liveActivitySummary, loadAgentInstructions, loadAppSettings, loadBrightsyConfig, loadConductorSettings, loadHomeBoardInputs, loadRepoSettings, loadWorkspaceSettings, locksDir, loginAgent, lookupSoccerTeam, mapAbleTimeTask, maxConcurrentAgents, maybeCompactContext, mcpAllowTools, mcpAuthWarnings, mergeAgentGitAuthEnv, mergePr, mergePrStack, mergeSideboardIntoMcpServersJson, mergeUsage, messagePartParentId, nextPastedTextName, nextThinkingEffort, nonInteractiveGitProcessEnv, normalizeAbleTimeHost, normalizeParseResult, normalizeThinkingEffort, normalizeThread, normalizeTurnInput, normalizeWorktreePath, openInSystemTerminal, openPrStackLayers, openStackLayer, opencodeAdapter, orchestrationQuotaFallbackAgent, orchestrationQuotaOnLimit, orchestrationTitleNeedsSoccerNickname, orchestratorSessionPoisonedByBuiltins, originGhRepoEnv, parseCursorRunnerLine, parseDurationMs, parseForceStopMessage, parseGhStackViewJson, parseGithubSlugFromRemoteUrl, parseMcpList, parsePlanQuestionsInput, parseSessionQuotaResetAt, parseSlackRelayClientMessage, parseSlackRelayServerMessage, partsToAssistantText, pastedTextStats, pendingSlackExternalReplies, permissionMode, persistVaultKeyInKeychain, planFileAbs, planQuestionsSignature, pollSlackOutboundWatches, posixShellSingleQuote, preferredCursorCostCents, prepareTerminalCommand, previewLand, promptMentionsBrightsy, pushBranch, readExistingReviewRequestFile, readKeychainVaultKey, readPlanFile, readSkillBody, readThread, readWorktreeFile, readWorktreeFileForUpload, readWorktreeInclude, recordScheduleRun, recordSlackOutboundWatch, refreshBrightsyAccessToken, refreshGitHubAuth, registerPackagedUserMcpClients, releaseCaffeinateHoldForThread, releaseDesktopHost, removeBoardPin, removeWorkspace, removeWorktree, repoSlug, requestOccupancy, requestReview, requireAgent, resetGhStackDetectCache, resetGithubAgentTokenMemo, resolveAgentExecutable, resolveAgentGitAuthEnv, resolveClaudeExecutable, resolveCodexGitWritableRoots, resolveCommandBinarySync, resolveConductorCursorAgentId, resolveCursorModelId, resolveDefaultBranch, resolveDiffBaseRef, resolveEffectiveIssueSource, resolveFilesToCopy, resolveGhAuthToken, resolveGitDirsForLockRecovery, resolveGithubAgentToken, resolveGithubRepoSlug, resolveLinearState, resolveLinearTeam, resolveLoginCommand, resolveNewThreadOptions, resolvePlanMarkdown, resolvePrSelector, resolvePrSelectors, resolveQuotaFallbackAgent, resolveRepoRoot, resolveReviewGuidelines, resolveScheduleThreadId, resolveSlackListenMode, resolveThreadDefaults, resolveThreadEffort, resolveVaultKey, resolveWorktreeStartPoint, rewriteAbleTimeError, rewriteLinearError, run, runArchiveScript, runCloudConnect, runConventionSetup, runCursorWorktreeSetup, runSetupScript, runSlackListen, runSlackRelayClient, runWorkspaceSetup, sameWorktreePath, sanitizeMcpServerName, saveAbleTimeConnection, saveAppSettings, saveLinearOAuth, schedulesPath, scrubGithubTokensFromChildEnv, searchAbleTimeTasks, secureFileUnlocksWith, setCaffeinateHold, setHttpFetchImpl, setStatus, setVaultMasterKey, settingsSourceLabel, shouldAttachPastedText, shouldCompactContext, shouldInjectBrightsyMcp, shouldRefreshReviewRequestTemplate, shouldRemoveWorktreeOnTeardown, shouldResetSessionForOccupancy, shouldRunWorktreeCleanup, showCostEnabled, sideboardHomeDir, sideboardMcpProfile, sideboardReposDir, sideboardWorkspacesDir, slackAppLevelToken, slackArchiveUrl, slackCoordinatorSourceRef, slackListenEnabled, slackOAuthCredentials, slackOAuthResultUrl, slackRelayUrl, slugify, spawnAgentTurn, splitForCompaction, stackAgentDefaultsFrom, stackIdFrom, stackMergeReadiness, stageAbsolutePathsAsAttachments, stageBuffersAsAttachments, startDevServer, startLinearOAuth, startMcpServer, startOrchestration, startSlackOAuth, startSlackRelayServer, stripBrightsyNdjsonNoise, stripNestedElectronEnv, submitPrStack, suggestSlug, sumUsageList, summarizeConversation, switchBrightsyAccount, syncWorkspacesFromThreads, takenTeamSlugsForChatTab, takenTeamSlugsForOrchestration, taskMessageText, taskUrl, thinkingEffortBars, thinkingEffortLabel, thisProcessShouldDrainAgentQueues, threadDisplayLabel, threadFilePath, threadLivePath, threadLockPath, threadRequestsBrightsyMcp, threadsDir, threadsSharingWorktree, toAbleTimeIssueInfo, toPublicAppSettings, toolActivityLine, toolDescription, toolDetail, toolFilePath, totalTokens, turnCostUsdFromCursorUsage, updateAdvancedSettings, updateAgentExecutable, updateAppEnvironment, updateBrightsySettings, updateClaudeSettings, updateCodexSettings, updateDefaultsSettings, updateIntegrationsSettings, updateLinearIssue, updateOpencodeSettings, updateSchedule, updateThread, userClaudeMcpConfigPath, userCursorMcpConfigPath, validateLinearApiKey, verifyAbleTimeConnection, waitForPidExit, warmGithubAgentAuth, withAgentInstructions, withEventParentId, withEventsParentId, withExportedPath, withMaxOldSpaceSize, withThreadLock, workspaceSettingsSourceLabel, worktreeBoardStatus, worktreeCleanupSettings, worktreeDisplayLabel, worktreeDisplayLabelForGroup, worktreeNameFromPath, worktreesRoot, wrapReviewSkillMarkdown, writeInjectedMcpConfig, writePlanFile, writeThread, writeWorktreeFile };
|