chatroom-cli 1.0.75 → 1.0.79
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/index.js +17 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10922,21 +10922,23 @@ async function waitForTask(chatroomId, options) {
|
|
|
10922
10922
|
const connectedTime = new Date().toISOString().replace("T", " ").substring(0, 19);
|
|
10923
10923
|
console.log(`[${connectedTime}] ✅ Connected. Waiting for task...
|
|
10924
10924
|
`);
|
|
10925
|
-
|
|
10926
|
-
|
|
10927
|
-
|
|
10928
|
-
|
|
10929
|
-
|
|
10930
|
-
|
|
10931
|
-
|
|
10932
|
-
|
|
10933
|
-
|
|
10934
|
-
|
|
10935
|
-
|
|
10936
|
-
|
|
10937
|
-
|
|
10938
|
-
|
|
10939
|
-
|
|
10925
|
+
if (!initPromptResult.hasSystemPromptControl) {
|
|
10926
|
+
console.log("<!-- REFERENCE: Agent Initialization");
|
|
10927
|
+
console.log("");
|
|
10928
|
+
console.log("═".repeat(50));
|
|
10929
|
+
console.log("\uD83D\uDCCB AGENT INITIALIZATION PROMPT");
|
|
10930
|
+
console.log("═".repeat(50));
|
|
10931
|
+
console.log("");
|
|
10932
|
+
console.log(getWaitForTaskGuidance());
|
|
10933
|
+
console.log("");
|
|
10934
|
+
console.log("═".repeat(50));
|
|
10935
|
+
console.log("");
|
|
10936
|
+
console.log(initPromptResult.prompt);
|
|
10937
|
+
console.log("");
|
|
10938
|
+
console.log("═".repeat(50));
|
|
10939
|
+
console.log("-->");
|
|
10940
|
+
console.log("");
|
|
10941
|
+
}
|
|
10940
10942
|
}
|
|
10941
10943
|
} catch {}
|
|
10942
10944
|
let taskProcessed = false;
|