Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/tool/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const createOperation = z.strictObject({
.min(1)
.optional()
.describe(
"Reuse a standing per-theme child: if a peer child already carries this topic, RELAY the task into it (enqueue+wake) instead of spawning; otherwise create a new child tagged with this topic. Avoids over-spawning sessions for the same theme.",
"Semantic key for session reuse: if a peer child already carries this exact topic, RELAY the task into it (enqueue+wake) instead of spawning a new child. When absent, a fresh session is always created — no auto-derivation or guessing. Use the same stable topic string across calls to consolidate same-theme work into one standing child.",
),
})

Expand Down
Loading