@vincentwei1021/synapse-openclaw-plugin 0.5.5 → 0.5.6
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 +1 -1
- package/src/event-router.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincentwei1021/synapse-openclaw-plugin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "OpenClaw plugin for Synapse research orchestration — SSE notifications, MCP tools, experiment lifecycle, autonomous loop",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/event-router.ts
CHANGED
|
@@ -341,7 +341,7 @@ Proposed experiments will enter "pending_review" status and require human approv
|
|
|
341
341
|
? `${basePrompt}\n\nAdditional instructions from the user:\n${n.message}`
|
|
342
342
|
: basePrompt;
|
|
343
343
|
|
|
344
|
-
this.triggerAgent(prompt, { notificationUuid: n.uuid, action: "deep_research_requested", entityUuid: n.entityUuid, projectUuid });
|
|
344
|
+
this.triggerAgent(prompt, { notificationUuid: n.uuid, action: "deep_research_requested", entityUuid: n.entityUuid, projectUuid, timeoutSeconds: 1800 });
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
private handleAutoSearchTriggered(n: NotificationDetail): void {
|
|
@@ -362,7 +362,7 @@ Search for academic papers related to this research project:
|
|
|
362
362
|
? `${basePrompt}\n\nAdditional instructions from the user:\n${n.message}`
|
|
363
363
|
: basePrompt;
|
|
364
364
|
|
|
365
|
-
this.triggerAgent(prompt, { notificationUuid: n.uuid, action: "auto_search_triggered", entityUuid: n.entityUuid, projectUuid });
|
|
365
|
+
this.triggerAgent(prompt, { notificationUuid: n.uuid, action: "auto_search_triggered", entityUuid: n.entityUuid, projectUuid, timeoutSeconds: 600 });
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
private handleExperimentReportRequested(n: NotificationDetail): void {
|