@adhdev/daemon-standalone 0.9.77-rc.13 → 0.9.77-rc.15

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/public/index.html CHANGED
@@ -7,7 +7,7 @@
7
7
  <meta name="description" content="ADHDev self-hosted dashboard for controlling AI agents" />
8
8
  <link rel="icon" href="/otter-logo.png" />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
10
- <script type="module" crossorigin src="/assets/index-6WEc6L46.js"></script>
10
+ <script type="module" crossorigin src="/assets/index-CWWeDAva.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="/assets/vendor-CLec0455.js">
12
12
  <link rel="stylesheet" crossorigin href="/assets/index-DftJ2WZr.css">
13
13
  </head>
@@ -33701,7 +33701,7 @@ async function handleOpenPanel(h, args) {
33701
33701
  async function handlePtyInput(h, args) {
33702
33702
  const { cliType, data, targetSessionId } = args || {};
33703
33703
  if (!data) return { success: false, error: "data required" };
33704
- const cleanData = typeof data === "string" ? data.replace(/\x1b\[\?[0-9;]*c/g, "") : data;
33704
+ const cleanData = typeof data === "string" ? data.replace(/\x1b\[[?>][0-9;]*c/g, "") : data;
33705
33705
  if (!cleanData) return { success: true };
33706
33706
  const adapter = h.getCliAdapter(targetSessionId || cliType);
33707
33707
  if (!adapter || typeof adapter.writeRaw !== "function") {