#About thread binding of subagents and ACP

1 messages ยท Page 1 of 1 (latest)

atomic tigerBOT
summer glacierBOT
#

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.threadBindings are just:
    • enabled
    • idleHours
    • maxAgeHours
  • The spawn flags are channel-specific:
    • channels.discord.threadBindings.spawnSubagentSessions
    • channels.discord.threadBindings.spawnAcpSessions

So for Discord, you still want:

#
{
  session: {
    threadBindings: {
      enabled: true,
      idleHours: 24,
      maxAgeHours: 0,
    },
  },
  channels: {
    discord: {
      threadBindings: {
        spawnSubagentSessions: true,
        spawnAcpSessions: true,
      },
    },