muuuuse 7.0.0 → 7.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "muuuuse",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "🔌Muuuuse relay protocol for long-horizon zero-drift agentic code loops. Any seat relays to any other with per-target signed trust and flow control.",
5
5
  "type": "commonjs",
6
6
  "bin": {
package/src/runtime.js CHANGED
@@ -548,7 +548,7 @@ async function sendTextAndEnter(child, text, shouldAbort = () => false) {
548
548
  }
549
549
 
550
550
  try {
551
- child.write("\r");
551
+ child.write("\n");
552
552
  } catch {
553
553
  return false;
554
554
  }
package/src/util.js CHANGED
@@ -9,7 +9,7 @@ const fs = require("node:fs");
9
9
  const os = require("node:os");
10
10
  const path = require("node:path");
11
11
 
12
- const BRAND = "🔌Muuuuse v7.0.0";
12
+ const BRAND = "🔌Muuuuse v7.0.1";
13
13
  const POLL_MS = 220;
14
14
  const MAX_RELAY_CHARS = 4000;
15
15
  const SESSION_MATCH_WINDOW_MS = 5 * 60 * 1000;