forked from sanbuphy/learn-coding-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspawnMultiAgent.ts
More file actions
1093 lines (982 loc) · 34.7 KB
/
spawnMultiAgent.ts
File metadata and controls
1093 lines (982 loc) · 34.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Shared spawn module for teammate creation.
* Extracted from TeammateTool to allow reuse by AgentTool.
*/
import React from 'react'
import {
getChromeFlagOverride,
getFlagSettingsPath,
getInlinePlugins,
getMainLoopModelOverride,
getSessionBypassPermissionsMode,
getSessionId,
} from '../../bootstrap/state.js'
import type { AppState } from '../../state/AppState.js'
import { createTaskStateBase, generateTaskId } from '../../Task.js'
import type { ToolUseContext } from '../../Tool.js'
import type { InProcessTeammateTaskState } from '../../tasks/InProcessTeammateTask/types.js'
import { formatAgentId } from '../../utils/agentId.js'
import { quote } from '../../utils/bash/shellQuote.js'
import { isInBundledMode } from '../../utils/bundledMode.js'
import { getGlobalConfig } from '../../utils/config.js'
import { getCwd } from '../../utils/cwd.js'
import { logForDebugging } from '../../utils/debug.js'
import { errorMessage } from '../../utils/errors.js'
import { execFileNoThrow } from '../../utils/execFileNoThrow.js'
import { parseUserSpecifiedModel } from '../../utils/model/model.js'
import type { PermissionMode } from '../../utils/permissions/PermissionMode.js'
import { isTmuxAvailable } from '../../utils/swarm/backends/detection.js'
import {
detectAndGetBackend,
getBackendByType,
isInProcessEnabled,
markInProcessFallback,
resetBackendDetection,
} from '../../utils/swarm/backends/registry.js'
import { getTeammateModeFromSnapshot } from '../../utils/swarm/backends/teammateModeSnapshot.js'
import type { BackendType } from '../../utils/swarm/backends/types.js'
import { isPaneBackend } from '../../utils/swarm/backends/types.js'
import {
SWARM_SESSION_NAME,
TEAM_LEAD_NAME,
TEAMMATE_COMMAND_ENV_VAR,
TMUX_COMMAND,
} from '../../utils/swarm/constants.js'
import { It2SetupPrompt } from '../../utils/swarm/It2SetupPrompt.js'
import { startInProcessTeammate } from '../../utils/swarm/inProcessRunner.js'
import {
type InProcessSpawnConfig,
spawnInProcessTeammate,
} from '../../utils/swarm/spawnInProcess.js'
import { buildInheritedEnvVars } from '../../utils/swarm/spawnUtils.js'
import {
readTeamFileAsync,
sanitizeAgentName,
sanitizeName,
writeTeamFileAsync,
} from '../../utils/swarm/teamHelpers.js'
import {
assignTeammateColor,
createTeammatePaneInSwarmView,
enablePaneBorderStatus,
isInsideTmux,
sendCommandToPane,
} from '../../utils/swarm/teammateLayoutManager.js'
import { getHardcodedTeammateModelFallback } from '../../utils/swarm/teammateModel.js'
import { registerTask } from '../../utils/task/framework.js'
import { writeToMailbox } from '../../utils/teammateMailbox.js'
import type { CustomAgentDefinition } from '../AgentTool/loadAgentsDir.js'
import { isCustomAgent } from '../AgentTool/loadAgentsDir.js'
function getDefaultTeammateModel(leaderModel: string | null): string {
const configured = getGlobalConfig().teammateDefaultModel
if (configured === null) {
// User picked "Default" in the /config picker — follow the leader.
return leaderModel ?? getHardcodedTeammateModelFallback()
}
if (configured !== undefined) {
return parseUserSpecifiedModel(configured)
}
return getHardcodedTeammateModelFallback()
}
/**
* Resolve a teammate model value. Handles the 'inherit' alias (from agent
* frontmatter) by substituting the leader's model. gh-31069: 'inherit' was
* passed literally to --model, producing "It may not exist or you may not
* have access". If leader model is null (not yet set), falls through to the
* default.
*
* Exported for testing.
*/
export function resolveTeammateModel(
inputModel: string | undefined,
leaderModel: string | null,
): string {
if (inputModel === 'inherit') {
return leaderModel ?? getDefaultTeammateModel(leaderModel)
}
return inputModel ?? getDefaultTeammateModel(leaderModel)
}
// ============================================================================
// Types
// ============================================================================
export type SpawnOutput = {
teammate_id: string
agent_id: string
agent_type?: string
model?: string
name: string
color?: string
tmux_session_name: string
tmux_window_name: string
tmux_pane_id: string
team_name?: string
is_splitpane?: boolean
plan_mode_required?: boolean
}
export type SpawnTeammateConfig = {
name: string
prompt: string
team_name?: string
cwd?: string
use_splitpane?: boolean
plan_mode_required?: boolean
model?: string
agent_type?: string
description?: string
/** request_id of the API call whose response contained the tool_use that
* spawned this teammate. Threaded through to TeammateAgentContext for
* lineage tracing on tengu_api_* events. */
invokingRequestId?: string
}
// Internal input type matching TeammateTool's spawn parameters
type SpawnInput = {
name: string
prompt: string
team_name?: string
cwd?: string
use_splitpane?: boolean
plan_mode_required?: boolean
model?: string
agent_type?: string
description?: string
invokingRequestId?: string
}
// ============================================================================
// Helper Functions
// ============================================================================
/**
* Checks if a tmux session exists
*/
async function hasSession(sessionName: string): Promise<boolean> {
const result = await execFileNoThrow(TMUX_COMMAND, [
'has-session',
'-t',
sessionName,
])
return result.code === 0
}
/**
* Creates a new tmux session if it doesn't exist
*/
async function ensureSession(sessionName: string): Promise<void> {
const exists = await hasSession(sessionName)
if (!exists) {
const result = await execFileNoThrow(TMUX_COMMAND, [
'new-session',
'-d',
'-s',
sessionName,
])
if (result.code !== 0) {
throw new Error(
`Failed to create tmux session '${sessionName}': ${result.stderr || 'Unknown error'}`,
)
}
}
}
/**
* Gets the command to spawn a teammate.
* For native builds (compiled binaries), use process.execPath.
* For non-native (node/bun running a script), use process.argv[1].
*/
function getTeammateCommand(): string {
if (process.env[TEAMMATE_COMMAND_ENV_VAR]) {
return process.env[TEAMMATE_COMMAND_ENV_VAR]
}
return isInBundledMode() ? process.execPath : process.argv[1]!
}
/**
* Builds CLI flags to propagate from the current session to spawned teammates.
* This ensures teammates inherit important settings like permission mode,
* model selection, and plugin configuration from their parent.
*
* @param options.planModeRequired - If true, don't inherit bypass permissions (plan mode takes precedence)
* @param options.permissionMode - Permission mode to propagate
*/
function buildInheritedCliFlags(options?: {
planModeRequired?: boolean
permissionMode?: PermissionMode
}): string {
const flags: string[] = []
const { planModeRequired, permissionMode } = options || {}
// Propagate permission mode to teammates, but NOT if plan mode is required
// Plan mode takes precedence over bypass permissions for safety
if (planModeRequired) {
// Don't inherit bypass permissions when plan mode is required
} else if (
permissionMode === 'bypassPermissions' ||
getSessionBypassPermissionsMode()
) {
flags.push('--dangerously-skip-permissions')
} else if (permissionMode === 'acceptEdits') {
flags.push('--permission-mode acceptEdits')
} else if (permissionMode === 'auto') {
// Teammates inherit auto mode so the classifier auto-approves their tool
// calls too. The teammate's own startup (permissionSetup.ts) handles
// GrowthBook gate checks and setAutoModeActive(true) independently.
flags.push('--permission-mode auto')
}
// Propagate --model if explicitly set via CLI
const modelOverride = getMainLoopModelOverride()
if (modelOverride) {
flags.push(`--model ${quote([modelOverride])}`)
}
// Propagate --settings if set via CLI
const settingsPath = getFlagSettingsPath()
if (settingsPath) {
flags.push(`--settings ${quote([settingsPath])}`)
}
// Propagate --plugin-dir for each inline plugin
const inlinePlugins = getInlinePlugins()
for (const pluginDir of inlinePlugins) {
flags.push(`--plugin-dir ${quote([pluginDir])}`)
}
// Propagate --chrome / --no-chrome if explicitly set on the CLI
const chromeFlagOverride = getChromeFlagOverride()
if (chromeFlagOverride === true) {
flags.push('--chrome')
} else if (chromeFlagOverride === false) {
flags.push('--no-chrome')
}
return flags.join(' ')
}
/**
* Generates a unique teammate name by checking existing team members.
* If the name already exists, appends a numeric suffix (e.g., tester-2, tester-3).
* @internal Exported for testing
*/
export async function generateUniqueTeammateName(
baseName: string,
teamName: string | undefined,
): Promise<string> {
if (!teamName) {
return baseName
}
const teamFile = await readTeamFileAsync(teamName)
if (!teamFile) {
return baseName
}
const existingNames = new Set(teamFile.members.map(m => m.name.toLowerCase()))
// If the base name doesn't exist, use it as-is
if (!existingNames.has(baseName.toLowerCase())) {
return baseName
}
// Find the next available suffix
let suffix = 2
while (existingNames.has(`${baseName}-${suffix}`.toLowerCase())) {
suffix++
}
return `${baseName}-${suffix}`
}
// ============================================================================
// Spawn Handlers
// ============================================================================
/**
* Handle spawn operation using split-pane view (default).
* When inside tmux: Creates teammates in a shared window with leader on left, teammates on right.
* When outside tmux: Creates a claude-swarm session with all teammates in a tiled layout.
*/
async function handleSpawnSplitPane(
input: SpawnInput,
context: ToolUseContext,
): Promise<{ data: SpawnOutput }> {
const { setAppState, getAppState } = context
const { name, prompt, agent_type, cwd, plan_mode_required } = input
// Resolve model: 'inherit' → leader's model; undefined → default Opus
const model = resolveTeammateModel(input.model, getAppState().mainLoopModel)
if (!name || !prompt) {
throw new Error('name and prompt are required for spawn operation')
}
// Get team name from input or inherit from leader's team context
const appState = getAppState()
const teamName = input.team_name || appState.teamContext?.teamName
if (!teamName) {
throw new Error(
'team_name is required for spawn operation. Either provide team_name in input or call spawnTeam first to establish team context.',
)
}
// Generate unique name if duplicate exists in team
const uniqueName = await generateUniqueTeammateName(name, teamName)
// Sanitize the name to prevent @ in agent IDs (would break agentName@teamName format)
const sanitizedName = sanitizeAgentName(uniqueName)
// Generate deterministic agent ID from name and team
const teammateId = formatAgentId(sanitizedName, teamName)
const workingDir = cwd || getCwd()
// Detect the appropriate backend and check if setup is needed
let detectionResult = await detectAndGetBackend()
// If in iTerm2 but it2 isn't set up, prompt the user
if (detectionResult.needsIt2Setup && context.setToolJSX) {
const tmuxAvailable = await isTmuxAvailable()
// Show the setup prompt and wait for user decision
const setupResult = await new Promise<
'installed' | 'use-tmux' | 'cancelled'
>(resolve => {
context.setToolJSX!({
jsx: React.createElement(It2SetupPrompt, {
onDone: resolve,
tmuxAvailable,
}),
shouldHidePromptInput: true,
})
})
// Clear the JSX
context.setToolJSX(null)
if (setupResult === 'cancelled') {
throw new Error('Teammate spawn cancelled - iTerm2 setup required')
}
// If they installed it2 or chose tmux, clear cached detection and re-fetch
// so the local detectionResult matches the backend that will actually
// spawn the pane.
// - 'installed': re-detect to pick up the ITermBackend (it2 is now available)
// - 'use-tmux': re-detect so needsIt2Setup is false (preferTmux is now saved)
// and subsequent spawns skip this prompt
if (setupResult === 'installed' || setupResult === 'use-tmux') {
resetBackendDetection()
detectionResult = await detectAndGetBackend()
}
}
// Check if we're inside tmux to determine session naming
const insideTmux = await isInsideTmux()
// Assign a unique color to this teammate
const teammateColor = assignTeammateColor(teammateId)
// Create a pane in the swarm view
// - Inside tmux: splits current window (leader on left, teammates on right)
// - In iTerm2 with it2: uses native iTerm2 split panes
// - Outside both: creates claude-swarm session with tiled teammates
const { paneId, isFirstTeammate } = await createTeammatePaneInSwarmView(
sanitizedName,
teammateColor,
)
// Enable pane border status on first teammate when inside tmux
// (outside tmux, this is handled in createTeammatePaneInSwarmView)
if (isFirstTeammate && insideTmux) {
await enablePaneBorderStatus()
}
// Build the command to spawn Claude Code with teammate identity
// Note: We spawn without a prompt - initial instructions are sent via mailbox
const binaryPath = getTeammateCommand()
// Build teammate identity CLI args (replaces CLAUDE_CODE_* env vars)
const teammateArgs = [
`--agent-id ${quote([teammateId])}`,
`--agent-name ${quote([sanitizedName])}`,
`--team-name ${quote([teamName])}`,
`--agent-color ${quote([teammateColor])}`,
`--parent-session-id ${quote([getSessionId()])}`,
plan_mode_required ? '--plan-mode-required' : '',
agent_type ? `--agent-type ${quote([agent_type])}` : '',
]
.filter(Boolean)
.join(' ')
// Build CLI flags to propagate to teammate
// Pass plan_mode_required to prevent inheriting bypass permissions
let inheritedFlags = buildInheritedCliFlags({
planModeRequired: plan_mode_required,
permissionMode: appState.toolPermissionContext.mode,
})
// If teammate has a custom model, add --model flag (or replace inherited one)
if (model) {
// Remove any inherited --model flag first
inheritedFlags = inheritedFlags
.split(' ')
.filter((flag, i, arr) => flag !== '--model' && arr[i - 1] !== '--model')
.join(' ')
// Add the teammate's model
inheritedFlags = inheritedFlags
? `${inheritedFlags} --model ${quote([model])}`
: `--model ${quote([model])}`
}
const flagsStr = inheritedFlags ? ` ${inheritedFlags}` : ''
// Propagate env vars that teammates need but may not inherit from tmux split-window shells.
// Includes CLAUDECODE, CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS, and API provider vars.
const envStr = buildInheritedEnvVars()
const spawnCommand = `cd ${quote([workingDir])} && env ${envStr} ${quote([binaryPath])} ${teammateArgs}${flagsStr}`
// Send the command to the new pane
// Use swarm socket when running outside tmux (external swarm session)
await sendCommandToPane(paneId, spawnCommand, !insideTmux)
// Determine session/window names for output
const sessionName = insideTmux ? 'current' : SWARM_SESSION_NAME
const windowName = insideTmux ? 'current' : 'swarm-view'
// Track the teammate in AppState's teamContext with color
// If spawning without spawnTeam, set up the leader as team lead
setAppState(prev => ({
...prev,
teamContext: {
...prev.teamContext,
teamName: teamName ?? prev.teamContext?.teamName ?? 'default',
teamFilePath: prev.teamContext?.teamFilePath ?? '',
leadAgentId: prev.teamContext?.leadAgentId ?? '',
teammates: {
...(prev.teamContext?.teammates || {}),
[teammateId]: {
name: sanitizedName,
agentType: agent_type,
color: teammateColor,
tmuxSessionName: sessionName,
tmuxPaneId: paneId,
cwd: workingDir,
spawnedAt: Date.now(),
},
},
},
}))
// Register background task so teammates appear in the tasks pill/dialog
registerOutOfProcessTeammateTask(setAppState, {
teammateId,
sanitizedName,
teamName,
teammateColor,
prompt,
plan_mode_required,
paneId,
insideTmux,
backendType: detectionResult.backend.type,
toolUseId: context.toolUseId,
})
// Register agent in the team file
const teamFile = await readTeamFileAsync(teamName)
if (!teamFile) {
throw new Error(
`Team "${teamName}" does not exist. Call spawnTeam first to create the team.`,
)
}
teamFile.members.push({
agentId: teammateId,
name: sanitizedName,
agentType: agent_type,
model,
prompt,
color: teammateColor,
planModeRequired: plan_mode_required,
joinedAt: Date.now(),
tmuxPaneId: paneId,
cwd: workingDir,
subscriptions: [],
backendType: detectionResult.backend.type,
})
await writeTeamFileAsync(teamName, teamFile)
// Send initial instructions to teammate via mailbox
// The teammate's inbox poller will pick this up and submit it as their first turn
await writeToMailbox(
sanitizedName,
{
from: TEAM_LEAD_NAME,
text: prompt,
timestamp: new Date().toISOString(),
},
teamName,
)
return {
data: {
teammate_id: teammateId,
agent_id: teammateId,
agent_type,
model,
name: sanitizedName,
color: teammateColor,
tmux_session_name: sessionName,
tmux_window_name: windowName,
tmux_pane_id: paneId,
team_name: teamName,
is_splitpane: true,
plan_mode_required,
},
}
}
/**
* Handle spawn operation using separate windows (legacy behavior).
* Creates each teammate in its own tmux window.
*/
async function handleSpawnSeparateWindow(
input: SpawnInput,
context: ToolUseContext,
): Promise<{ data: SpawnOutput }> {
const { setAppState, getAppState } = context
const { name, prompt, agent_type, cwd, plan_mode_required } = input
// Resolve model: 'inherit' → leader's model; undefined → default Opus
const model = resolveTeammateModel(input.model, getAppState().mainLoopModel)
if (!name || !prompt) {
throw new Error('name and prompt are required for spawn operation')
}
// Get team name from input or inherit from leader's team context
const appState = getAppState()
const teamName = input.team_name || appState.teamContext?.teamName
if (!teamName) {
throw new Error(
'team_name is required for spawn operation. Either provide team_name in input or call spawnTeam first to establish team context.',
)
}
// Generate unique name if duplicate exists in team
const uniqueName = await generateUniqueTeammateName(name, teamName)
// Sanitize the name to prevent @ in agent IDs (would break agentName@teamName format)
const sanitizedName = sanitizeAgentName(uniqueName)
// Generate deterministic agent ID from name and team
const teammateId = formatAgentId(sanitizedName, teamName)
const windowName = `teammate-${sanitizeName(sanitizedName)}`
const workingDir = cwd || getCwd()
// Ensure the swarm session exists
await ensureSession(SWARM_SESSION_NAME)
// Assign a unique color to this teammate
const teammateColor = assignTeammateColor(teammateId)
// Create a new window for this teammate
const createWindowResult = await execFileNoThrow(TMUX_COMMAND, [
'new-window',
'-t',
SWARM_SESSION_NAME,
'-n',
windowName,
'-P',
'-F',
'#{pane_id}',
])
if (createWindowResult.code !== 0) {
throw new Error(
`Failed to create tmux window: ${createWindowResult.stderr}`,
)
}
const paneId = createWindowResult.stdout.trim()
// Build the command to spawn Claude Code with teammate identity
// Note: We spawn without a prompt - initial instructions are sent via mailbox
const binaryPath = getTeammateCommand()
// Build teammate identity CLI args (replaces CLAUDE_CODE_* env vars)
const teammateArgs = [
`--agent-id ${quote([teammateId])}`,
`--agent-name ${quote([sanitizedName])}`,
`--team-name ${quote([teamName])}`,
`--agent-color ${quote([teammateColor])}`,
`--parent-session-id ${quote([getSessionId()])}`,
plan_mode_required ? '--plan-mode-required' : '',
agent_type ? `--agent-type ${quote([agent_type])}` : '',
]
.filter(Boolean)
.join(' ')
// Build CLI flags to propagate to teammate
// Pass plan_mode_required to prevent inheriting bypass permissions
let inheritedFlags = buildInheritedCliFlags({
planModeRequired: plan_mode_required,
permissionMode: appState.toolPermissionContext.mode,
})
// If teammate has a custom model, add --model flag (or replace inherited one)
if (model) {
// Remove any inherited --model flag first
inheritedFlags = inheritedFlags
.split(' ')
.filter((flag, i, arr) => flag !== '--model' && arr[i - 1] !== '--model')
.join(' ')
// Add the teammate's model
inheritedFlags = inheritedFlags
? `${inheritedFlags} --model ${quote([model])}`
: `--model ${quote([model])}`
}
const flagsStr = inheritedFlags ? ` ${inheritedFlags}` : ''
// Propagate env vars that teammates need but may not inherit from tmux split-window shells.
// Includes CLAUDECODE, CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS, and API provider vars.
const envStr = buildInheritedEnvVars()
const spawnCommand = `cd ${quote([workingDir])} && env ${envStr} ${quote([binaryPath])} ${teammateArgs}${flagsStr}`
// Send the command to the new window
const sendKeysResult = await execFileNoThrow(TMUX_COMMAND, [
'send-keys',
'-t',
`${SWARM_SESSION_NAME}:${windowName}`,
spawnCommand,
'Enter',
])
if (sendKeysResult.code !== 0) {
throw new Error(
`Failed to send command to tmux window: ${sendKeysResult.stderr}`,
)
}
// Track the teammate in AppState's teamContext
setAppState(prev => ({
...prev,
teamContext: {
...prev.teamContext,
teamName: teamName ?? prev.teamContext?.teamName ?? 'default',
teamFilePath: prev.teamContext?.teamFilePath ?? '',
leadAgentId: prev.teamContext?.leadAgentId ?? '',
teammates: {
...(prev.teamContext?.teammates || {}),
[teammateId]: {
name: sanitizedName,
agentType: agent_type,
color: teammateColor,
tmuxSessionName: SWARM_SESSION_NAME,
tmuxPaneId: paneId,
cwd: workingDir,
spawnedAt: Date.now(),
},
},
},
}))
// Register background task so tmux teammates appear in the tasks pill/dialog
// Separate window spawns are always outside tmux (external swarm session)
registerOutOfProcessTeammateTask(setAppState, {
teammateId,
sanitizedName,
teamName,
teammateColor,
prompt,
plan_mode_required,
paneId,
insideTmux: false,
backendType: 'tmux',
toolUseId: context.toolUseId,
})
// Register agent in the team file
const teamFile = await readTeamFileAsync(teamName)
if (!teamFile) {
throw new Error(
`Team "${teamName}" does not exist. Call spawnTeam first to create the team.`,
)
}
teamFile.members.push({
agentId: teammateId,
name: sanitizedName,
agentType: agent_type,
model,
prompt,
color: teammateColor,
planModeRequired: plan_mode_required,
joinedAt: Date.now(),
tmuxPaneId: paneId,
cwd: workingDir,
subscriptions: [],
backendType: 'tmux', // This handler always uses tmux directly
})
await writeTeamFileAsync(teamName, teamFile)
// Send initial instructions to teammate via mailbox
// The teammate's inbox poller will pick this up and submit it as their first turn
await writeToMailbox(
sanitizedName,
{
from: TEAM_LEAD_NAME,
text: prompt,
timestamp: new Date().toISOString(),
},
teamName,
)
return {
data: {
teammate_id: teammateId,
agent_id: teammateId,
agent_type,
model,
name: sanitizedName,
color: teammateColor,
tmux_session_name: SWARM_SESSION_NAME,
tmux_window_name: windowName,
tmux_pane_id: paneId,
team_name: teamName,
is_splitpane: false,
plan_mode_required,
},
}
}
/**
* Register a background task entry for an out-of-process (tmux/iTerm2) teammate.
* This makes tmux teammates visible in the background tasks pill and dialog,
* matching how in-process teammates are tracked.
*/
function registerOutOfProcessTeammateTask(
setAppState: (updater: (prev: AppState) => AppState) => void,
{
teammateId,
sanitizedName,
teamName,
teammateColor,
prompt,
plan_mode_required,
paneId,
insideTmux,
backendType,
toolUseId,
}: {
teammateId: string
sanitizedName: string
teamName: string
teammateColor: string
prompt: string
plan_mode_required?: boolean
paneId: string
insideTmux: boolean
backendType: BackendType
toolUseId?: string
},
): void {
const taskId = generateTaskId('in_process_teammate')
const description = `${sanitizedName}: ${prompt.substring(0, 50)}${prompt.length > 50 ? '...' : ''}`
const abortController = new AbortController()
const taskState: InProcessTeammateTaskState = {
...createTaskStateBase(
taskId,
'in_process_teammate',
description,
toolUseId,
),
type: 'in_process_teammate',
status: 'running',
identity: {
agentId: teammateId,
agentName: sanitizedName,
teamName,
color: teammateColor,
planModeRequired: plan_mode_required ?? false,
parentSessionId: getSessionId(),
},
prompt,
abortController,
awaitingPlanApproval: false,
permissionMode: plan_mode_required ? 'plan' : 'default',
isIdle: false,
shutdownRequested: false,
lastReportedToolCount: 0,
lastReportedTokenCount: 0,
pendingUserMessages: [],
}
registerTask(taskState, setAppState)
// When abort is signaled, kill the pane using the backend that created it
// (tmux kill-pane for tmux panes, it2 session close for iTerm2 native panes).
// SDK task_notification bookend is emitted by killInProcessTeammate (the
// sole abort trigger for this controller).
abortController.signal.addEventListener(
'abort',
() => {
if (isPaneBackend(backendType)) {
void getBackendByType(backendType).killPane(paneId, !insideTmux)
}
},
{ once: true },
)
}
/**
* Handle spawn operation for in-process teammates.
* In-process teammates run in the same Node.js process using AsyncLocalStorage.
*/
async function handleSpawnInProcess(
input: SpawnInput,
context: ToolUseContext,
): Promise<{ data: SpawnOutput }> {
const { setAppState, getAppState } = context
const { name, prompt, agent_type, plan_mode_required } = input
// Resolve model: 'inherit' → leader's model; undefined → default Opus
const model = resolveTeammateModel(input.model, getAppState().mainLoopModel)
if (!name || !prompt) {
throw new Error('name and prompt are required for spawn operation')
}
// Get team name from input or inherit from leader's team context
const appState = getAppState()
const teamName = input.team_name || appState.teamContext?.teamName
if (!teamName) {
throw new Error(
'team_name is required for spawn operation. Either provide team_name in input or call spawnTeam first to establish team context.',
)
}
// Generate unique name if duplicate exists in team
const uniqueName = await generateUniqueTeammateName(name, teamName)
// Sanitize the name to prevent @ in agent IDs
const sanitizedName = sanitizeAgentName(uniqueName)
// Generate deterministic agent ID from name and team
const teammateId = formatAgentId(sanitizedName, teamName)
// Assign a unique color to this teammate
const teammateColor = assignTeammateColor(teammateId)
// Look up custom agent definition if agent_type is provided
let agentDefinition: CustomAgentDefinition | undefined
if (agent_type) {
const allAgents = context.options.agentDefinitions.activeAgents
const foundAgent = allAgents.find(a => a.agentType === agent_type)
if (foundAgent && isCustomAgent(foundAgent)) {
agentDefinition = foundAgent
}
logForDebugging(
`[handleSpawnInProcess] agent_type=${agent_type}, found=${!!agentDefinition}`,
)
}
// Spawn in-process teammate
const config: InProcessSpawnConfig = {
name: sanitizedName,
teamName,
prompt,
color: teammateColor,
planModeRequired: plan_mode_required ?? false,
model,
}
const result = await spawnInProcessTeammate(config, context)
if (!result.success) {
throw new Error(result.error ?? 'Failed to spawn in-process teammate')
}
// Debug: log what spawn returned
logForDebugging(
`[handleSpawnInProcess] spawn result: taskId=${result.taskId}, hasContext=${!!result.teammateContext}, hasAbort=${!!result.abortController}`,
)
// Start the agent execution loop (fire-and-forget)
if (result.taskId && result.teammateContext && result.abortController) {
startInProcessTeammate({
identity: {
agentId: teammateId,
agentName: sanitizedName,
teamName,
color: teammateColor,
planModeRequired: plan_mode_required ?? false,
parentSessionId: result.teammateContext.parentSessionId,
},
taskId: result.taskId,
prompt,
description: input.description,
model,
agentDefinition,
teammateContext: result.teammateContext,
// Strip messages: the teammate never reads toolUseContext.messages
// (it builds its own history via allMessages in inProcessRunner).
// Passing the parent's full conversation here would pin it for the
// teammate's lifetime, surviving /clear and auto-compact.
toolUseContext: { ...context, messages: [] },
abortController: result.abortController,
invokingRequestId: input.invokingRequestId,
})
logForDebugging(
`[handleSpawnInProcess] Started agent execution for ${teammateId}`,
)
}
// Track the teammate in AppState's teamContext
// Auto-register leader if spawning without prior spawnTeam call
setAppState(prev => {
const needsLeaderSetup = !prev.teamContext?.leadAgentId
const leadAgentId = needsLeaderSetup
? formatAgentId(TEAM_LEAD_NAME, teamName)
: prev.teamContext!.leadAgentId
// Build teammates map, including leader if needed for inbox polling
const existingTeammates = prev.teamContext?.teammates || {}
const leadEntry = needsLeaderSetup
? {
[leadAgentId]: {
name: TEAM_LEAD_NAME,
agentType: TEAM_LEAD_NAME,
color: assignTeammateColor(leadAgentId),
tmuxSessionName: 'in-process',
tmuxPaneId: 'leader',
cwd: getCwd(),
spawnedAt: Date.now(),
},
}
: {}
return {
...prev,
teamContext: {
...prev.teamContext,
teamName: teamName ?? prev.teamContext?.teamName ?? 'default',
teamFilePath: prev.teamContext?.teamFilePath ?? '',
leadAgentId,
teammates: {
...existingTeammates,
...leadEntry,
[teammateId]: {
name: sanitizedName,
agentType: agent_type,
color: teammateColor,
tmuxSessionName: 'in-process',
tmuxPaneId: 'in-process',
cwd: getCwd(),
spawnedAt: Date.now(),
},
},
},
}
})
// Register agent in the team file
const teamFile = await readTeamFileAsync(teamName)
if (!teamFile) {
throw new Error(
`Team "${teamName}" does not exist. Call spawnTeam first to create the team.`,
)
}
teamFile.members.push({
agentId: teammateId,
name: sanitizedName,
agentType: agent_type,
model,
prompt,