orchestrating 0.1.8 → 0.1.9
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/bin/orch +8 -0
- package/package.json +1 -1
package/bin/orch
CHANGED
|
@@ -463,6 +463,14 @@ if (adapter) {
|
|
|
463
463
|
}
|
|
464
464
|
spawnClaude(initialArgs);
|
|
465
465
|
|
|
466
|
+
// Emit the initial prompt as a user message so the dashboard shows it
|
|
467
|
+
if (prompt) {
|
|
468
|
+
sendToServer({
|
|
469
|
+
type: "agent_event", sessionId,
|
|
470
|
+
event: { kind: "user_message", text: prompt },
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
|
|
466
474
|
// Respawn claude with -c to continue after permission grants or follow-up
|
|
467
475
|
function respawnWithContinue(prompt) {
|
|
468
476
|
const args = ["--output-format", "stream-json", "--verbose", "-c"];
|