#About thread binding of subagents and ACP
1 messages ยท Page 1 of 1 (latest)
Short answer: no, not as a global session.threadBindings default.
Also, the key is session.threadBindings (singular session, plural threadBindings), not sessions.threadBinding.
What I found:
- Global defaults under
session.threadBindingsare just:enabledidleHoursmaxAgeHours
- The spawn flags are channel-specific:
channels.discord.threadBindings.spawnSubagentSessionschannels.discord.threadBindings.spawnAcpSessions
So for Discord, you still want:
{
session: {
threadBindings: {
enabled: true,
idleHours: 24,
maxAgeHours: 0,
},
},
channels: {
discord: {
threadBindings: {
spawnSubagentSessions: true,
spawnAcpSessions: true,
},
},