mu-harness 0.16.21 → 0.16.22

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.
@@ -717,6 +717,8 @@ export class ChatApp {
717
717
  return true;
718
718
  }
719
719
  deleteMention() {
720
+ if (this.pickerMention !== undefined)
721
+ return false;
720
722
  const value = this.editor.getValue();
721
723
  const cursor = this.editor.cursorPos;
722
724
  const re = /@[^\s]+/g;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mu-harness",
3
- "version": "0.16.21",
3
+ "version": "0.16.22",
4
4
  "description": "Agent harness: createHarness wires mu-core into a host — XDG paths, model registry, plugins, disk-loaded agents & skills, sub-agents, sessions (JSONL + SQLite catalog), slash commands, permission/approval hooks, an optional scheduler, and a composable TUI chat app",
5
5
  "license": "MIT",
6
6
  "main": "./script/index.js",
@@ -23,8 +23,8 @@
23
23
  "@swc/wasm-typescript": "^1.15.0",
24
24
  "cli-highlight": "^2.1.11",
25
25
  "croner": "^9.0.0",
26
- "mu-core": "^0.16.21",
27
- "mu-tui": "^0.16.21"
26
+ "mu-core": "^0.16.22",
27
+ "mu-tui": "^0.16.22"
28
28
  },
29
29
  "_generatedBy": "dnt@dev",
30
30
  "types": "./esm/index.d.ts"
@@ -720,6 +720,8 @@ class ChatApp {
720
720
  return true;
721
721
  }
722
722
  deleteMention() {
723
+ if (this.pickerMention !== undefined)
724
+ return false;
723
725
  const value = this.editor.getValue();
724
726
  const cursor = this.editor.cursorPos;
725
727
  const re = /@[^\s]+/g;