@siftd/connect-agent 0.2.26 → 0.2.27
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/dist/orchestrator.js +1 -1
- package/dist/workers/manager.js +1 -0
- package/package.json +1 -1
package/dist/orchestrator.js
CHANGED
|
@@ -961,7 +961,7 @@ Be specific about what you want done.`,
|
|
|
961
961
|
prompt = `Context: ${context}\n\nTask: ${task}`;
|
|
962
962
|
}
|
|
963
963
|
// Add brief instruction
|
|
964
|
-
prompt += `\n\nBe concise. Output results directly.`;
|
|
964
|
+
prompt += `\n\nBe concise. Output results directly. Do NOT open browsers or start servers - just create files and report paths.`;
|
|
965
965
|
console.log(`[ORCHESTRATOR] Worker ${id} starting: ${task.slice(0, 80)}...`);
|
|
966
966
|
// Estimate task duration
|
|
967
967
|
const estimatedTime = this.estimateTaskDuration(task);
|
package/dist/workers/manager.js
CHANGED
|
@@ -154,6 +154,7 @@ IMPORTANT - Progress & Logging:
|
|
|
154
154
|
- Output findings as you go, don't wait until the end
|
|
155
155
|
- Print discoveries and insights immediately as you find them
|
|
156
156
|
- Report on each file/step before moving to the next
|
|
157
|
+
- Do NOT open browsers or start servers - just create files and report paths
|
|
157
158
|
|
|
158
159
|
REQUIRED - Log Export:
|
|
159
160
|
At the END of your work, create a final log file at: ${logFile}
|