@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.
@@ -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 (ensures model always sees curl instructions)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucashca/claudecontrol",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "description": "AI Agent Dashboard — manage multiple Claude Code agents across projects",
5
5
  "type": "module",
6
6
  "bin": {
package/version.json CHANGED
@@ -1 +1 @@
1
- {"version":"0.3.27","build":"2026-04-03T23:24:27.772Z"}
1
+ {"version":"0.3.28","build":"2026-04-03T23:25:03.559Z"}