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.
Files changed (2) hide show
  1. package/bin/orch +8 -0
  2. 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"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrating",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Stream terminal sessions to the orchestrat.ing dashboard",
5
5
  "type": "module",
6
6
  "bin": {