orchestrating 0.1.12 → 0.1.13

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 +1 -6
  2. package/package.json +1 -1
package/bin/orch CHANGED
@@ -321,12 +321,7 @@ if (adapter) {
321
321
  promptParts.push(arg);
322
322
  }
323
323
  }
324
- const prompt = promptParts.join(" ");
325
- if (!prompt) {
326
- console.error(`Usage: orch ${command} "your prompt here"`);
327
- console.error(` orch ${command} -c "follow up" # continue with message`);
328
- process.exit(1);
329
- }
324
+ const prompt = promptParts.join(" ") || (adapterFlags.continue ? "continue" : "hello");
330
325
 
331
326
  // Confirmation-type tools — these need "yes" response, not permission grants
332
327
  const CONFIRMATION_TOOLS = new Set(["ExitPlanMode", "EnterPlanMode"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrating",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Stream terminal sessions to the orchestrat.ing dashboard",
5
5
  "type": "module",
6
6
  "bin": {