@lucashca/claudecontrol 0.3.27 → 0.3.28
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/backend/agents/lifecycle.ts +2 -2
- package/package.json +1 -1
- package/version.json +1 -1
|
@@ -261,8 +261,8 @@ export async function sendToAgent(id: string, message: string, attachments?: Att
|
|
|
261
261
|
const subagents = (isOrchestrator && runtime.enableSubagents) ? buildSubagents(cwd, session.role) : {};
|
|
262
262
|
const hasAttachments = attachments && attachments.length > 0;
|
|
263
263
|
|
|
264
|
-
// Inject pool context as message prefix
|
|
265
|
-
const poolMsgContext = !skipPoolContext && !runtime.enableSubagents
|
|
264
|
+
// Inject pool context as message prefix only for orchestrators
|
|
265
|
+
const poolMsgContext = !skipPoolContext && !runtime.enableSubagents && isOrchestrator
|
|
266
266
|
? buildPoolContext(session.workspaceId, session.id)
|
|
267
267
|
: '';
|
|
268
268
|
const messageWithContext = poolMsgContext
|
package/package.json
CHANGED
package/version.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.3.
|
|
1
|
+
{"version":"0.3.28","build":"2026-04-03T23:25:03.559Z"}
|