sensorium-mcp 2.16.124 → 2.16.125
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/package.json
CHANGED
|
@@ -43,11 +43,11 @@ send_message_to_thread(
|
|
|
43
43
|
- Save button persists changes
|
|
44
44
|
|
|
45
45
|
⚠️ IMPORTANT: When complete, report your results back to thread <ORCHESTRATOR_THREAD_ID> using:
|
|
46
|
-
send_message_to_thread(threadId=<ORCHESTRATOR_THREAD_ID>, message='...')"
|
|
46
|
+
send_message_to_thread(threadId=<ORCHESTRATOR_THREAD_ID>, message='...', mode='reply')"
|
|
47
47
|
)
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
**CRITICAL**: The task message MUST include the orchestrator's thread ID so the worker knows where to send results.
|
|
50
|
+
**CRITICAL**: The task message MUST include the orchestrator's thread ID so the worker knows where to send results. Tasks sent TO workers use mode `"one-shot"` or `"manager-worker"`, but RESULTS sent BACK use mode `"reply"` for clean delivery.
|
|
51
51
|
|
|
52
52
|
#### Step 3 — Wait for results (do NOT duplicate the work)
|
|
53
53
|
```
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
For tasks, load relevant skill via get_skill first. Load orchestrator skill always before. When all work is done, call `remote_copilot_wait_for_instructions` immediately. Never summarize or stop.
|
|
1
|
+
For tasks, load relevant skill via get_skill first. Load orchestrator skill always before doing any task. When all work is done, call `remote_copilot_wait_for_instructions` immediately. Never summarize or stop.
|
|
2
2
|
threadId={{THREAD_ID}} | {{TIME}} | uptime: {{UPTIME}}
|