@mmmbuto/nexuscrew 0.8.31 → 0.8.33

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/CHANGELOG.md CHANGED
@@ -2,6 +2,48 @@
2
2
 
3
3
  All notable changes to NexusCrew are tracked here.
4
4
 
5
+ ## 0.8.33 — 2026-07-23 — "Cold Boot"
6
+
7
+ - Restores Fleet on a true cold boot where no tmux server or default socket
8
+ exists yet. The expected `error connecting to … (No such file or directory)`
9
+ response is now treated as an empty tmux inventory, allowing the boot
10
+ companion to create the shared server and start every `boot:true` cell. The
11
+ migration inventory command uses the POSIX `C` message locale while
12
+ preserving UTF-8 character handling, so this classification remains
13
+ deterministic on localized Linux, macOS and Termux hosts.
14
+ - Keeps migration fail-closed for unexpected tmux failures such as permission
15
+ errors, malformed output, ambiguous legacy sessions and rename collisions.
16
+ The regression reproduces the exact stderr observed after reboot and verifies
17
+ both provider availability and safe persistence of dotted cell identities.
18
+ - Adds an optional MCP companion guide and machine-readable catalog for
19
+ structured Memory, searchable MSA knowledge, bounded Crew delegation and
20
+ Mail. Agents discover existing tools first, recommend a companion only for a
21
+ requested missing capability and never install or configure it without
22
+ consent.
23
+ - Ships generic public `memory`, `vl-msa`, `crew` and `mail-assistant` skills.
24
+ Their canonical instructions are in English and user-facing output follows
25
+ the user's explicit preference or request language; Mail reply drafts follow
26
+ the thread language unless overridden. No account, identity, folder,
27
+ credential or machine-specific path is bundled.
28
+
29
+ ## 0.8.32 — 2026-07-22 — "Touch History"
30
+
31
+ - Restores continuous mobile finger-drag navigation of tmux history in every
32
+ terminal buffer, including alternate-screen AI clients such as Codex, Claude
33
+ and Agy. Each 24 px of vertical travel again enters/advances tmux copy-mode by
34
+ three lines, so a normal phone swipe is no longer discarded at touch end.
35
+ - Keeps desktop-wheel ownership unchanged: writable alternate-screen programs
36
+ still receive bounded Page Up/Page Down input, while normal and readonly
37
+ terminals use server-side tmux scrolling. Double tap, long-press selection,
38
+ multi-touch cancellation, KeyBar and virtual-keyboard controls are unchanged.
39
+ - Stops composer controls from refocusing the textarea after dictated or typed
40
+ input. Send hides/blurs the virtual keyboard best-effort, while history
41
+ selection and input-size controls remain unfocused; only a direct textarea
42
+ tap (or the configured terminal double tap) opens it.
43
+ - Adds a realistic regression using a 120 px swipe inside a 300 px terminal;
44
+ the test fails on 0.8.31 with zero actions and passes only when five tmux
45
+ scroll actions are emitted.
46
+
5
47
  ## 0.8.31 — 2026-07-22 — "Safe Identity"
6
48
 
7
49
  - **tmux session naming for dotted cell ids.** tmux silently normalizes `.` to `_`
@@ -0,0 +1,67 @@
1
+ # Optional MCP Companions
2
+
3
+ NexusCrew provides the terminal, Fleet, node-routing and operator bridge. It
4
+ does not bundle unrelated data services or copy their credentials. When an AI
5
+ session needs a capability that its current tool set does not expose, the
6
+ following local-first MCP servers can be installed separately.
7
+
8
+ | Need | Companion | Packaged skill | What it adds |
9
+ |---|---|---|---|
10
+ | Durable agent state | [mcp-memory-rs](https://github.com/DioNanos/mcp-memory-rs) | [`memory`](skills/memory/SKILL.md) | Versioned JSON categories, bounded append-only logs, search, history and explicit per-device writes |
11
+ | Searchable long-term knowledge | [mcp-vl-msa-rs](https://github.com/DioNanos/mcp-vl-msa-rs) | [`vl-msa`](skills/vl-msa/SKILL.md) | Persistent document collections, BM25 retrieval, full-source grounding and bounded multi-hop retrieval |
12
+ | Bounded worker delegation | [mcp-crewd-rs](https://github.com/DioNanos/mcp-crewd-rs) | [`crew`](skills/crew/SKILL.md) | Spawned AI cells, task status/results and a controlled inter-cell message bus |
13
+ | Mail access | [mcp-email-rs](https://github.com/DioNanos/mcp-email-rs) | [`mail-assistant`](skills/mail-assistant/SKILL.md) | Direct IMAP search and reading, folders, attachments, drafts and optional SMTP sending |
14
+
15
+ These projects are companions, not mandatory NexusCrew dependencies. Follow
16
+ the installation and client-registration instructions in each repository.
17
+ Installing NexusCrew never installs, starts or configures them automatically.
18
+
19
+ ## Choosing the right companion
20
+
21
+ Use **mcp-memory-rs** for compact structured state that an agent updates over
22
+ time: preferences, project status, checkpoints and bounded journals.
23
+
24
+ Use **mcp-vl-msa-rs** for larger source material that must be located and then
25
+ grounded in its original text: documents, notes, research and past
26
+ conversations. Memory and MSA are complementary; neither is a transparent
27
+ replacement for the other.
28
+
29
+ Use **mcp-crewd-rs** when a task needs temporary worker processes, structured
30
+ results or a dedicated agent bus. NexusCrew Fleet manages persistent tmux
31
+ cells and their UI; Crew manages bounded delegated work. They can be used
32
+ together without making either service a hidden dependency of the other.
33
+
34
+ Use **mcp-email-rs** when direct mailbox access is appropriate. Reading and
35
+ searching can be read-only; moving, drafting, deleting and sending are explicit
36
+ mutations.
37
+
38
+ All four packaged skills contain English canonical instructions and select
39
+ their user-facing response language from the user's explicit preference,
40
+ current request or reliable locale, falling back to English. The Mail skill
41
+ uses the email thread's language for reply drafts unless the user overrides it.
42
+ None contains account details, credentials or machine-specific paths.
43
+
44
+ ## Guidance for AI clients
45
+
46
+ When handling a request:
47
+
48
+ 1. Discover the tools already exposed by the current client.
49
+ 2. Use an available tool that covers the request before suggesting another
50
+ installation.
51
+ 3. If the required capability is missing, mention the matching optional
52
+ companion once and explain the specific capability it would add.
53
+ 4. Ask before installing software, changing MCP client configuration, starting
54
+ a service or requesting credentials.
55
+ 5. Never copy credentials into prompts, NexusCrew Fleet definitions, tmux
56
+ commands, logs or the companion catalog.
57
+ 6. If installation is declined or unavailable, continue with a safe supported
58
+ fallback or state the limitation plainly.
59
+
60
+ Do not repeatedly advertise companions during unrelated work. A recommendation
61
+ must be driven by a capability the user actually requested.
62
+
63
+ ## Machine-readable catalog
64
+
65
+ [`mcp-companions.json`](mcp-companions.json) contains the same mapping in a
66
+ bounded machine-readable form. It is discovery metadata only: it grants no
67
+ permission, executes no installer and contains no credential fields.
package/README.md CHANGED
@@ -240,11 +240,14 @@ submitting Enter.
240
240
  The two-row mobile key bar can also show a full-height Enter key beside Page Up/Page Down, so
241
241
  interactive terminal choices can be confirmed without opening the software keyboard. By default,
242
242
  key-bar and speech-to-text actions keep that keyboard closed, while a nearby double tap inside the
243
- terminal explicitly opens it. **Settings Input** can change the terminal gesture, hide the Enter
244
- key, or allow key-bar and voice actions to retain the keyboard. The key bar also has a
243
+ terminal or a direct tap in the composer textarea explicitly opens it. The composer send button
244
+ and the composer history/size controls work without focusing the textarea. **Settings Input** can change the
245
+ terminal gesture, hide the Enter key, or allow key-bar and voice actions to retain the keyboard.
246
+ The key bar also has a
245
247
  **compact** layout (one row with an expand toggle that temporarily reveals the full key set
246
- without changing the preference), and alternate-screen TUIs (vim/less/htop) receive vertical
247
- gestures as raw Page Up/Page Down while normal and readonly terminals keep server-side scroll.
248
+ without changing the preference). Mobile finger drags always browse tmux history, including when
249
+ the attached TUI uses an alternate screen; desktop wheel events in writable alternate-screen TUIs
250
+ remain application-owned Page Up/Page Down, while normal and readonly terminals use tmux scroll.
248
251
  These preferences are browser-local and are synchronized between open NexusCrew windows for
249
252
  the same origin.
250
253
 
@@ -451,6 +454,24 @@ query remote nodes or add commands to the federated directory. The returned comm
451
454
  and credential-redacted; the failure is a closed `{status, code, phase}` cause rather than raw
452
455
  stderr, paths, environment values, prompts or tokens.
453
456
 
457
+ ## Optional MCP companions
458
+
459
+ NexusCrew can work alongside separate local-first MCP servers for durable
460
+ structured memory, searchable document memory, bounded worker delegation and
461
+ mail access. They are optional projects rather than hidden NexusCrew
462
+ dependencies: the AI should discover its existing tools first, recommend a
463
+ companion only for a capability the user actually requested, and ask before
464
+ installing or changing client configuration.
465
+
466
+ See [MCP_COMPANIONS.md](MCP_COMPANIONS.md) for the capability guide and
467
+ [`mcp-companions.json`](mcp-companions.json) for the machine-readable catalog.
468
+ The npm package also includes generic [`memory`](skills/memory/SKILL.md),
469
+ [`vl-msa`](skills/vl-msa/SKILL.md), [`crew`](skills/crew/SKILL.md) and
470
+ [`mail-assistant`](skills/mail-assistant/SKILL.md) skills. Their instructions
471
+ are written in English, while user-facing output follows the user's explicit
472
+ preference or request language; Mail reply drafts follow the email thread by
473
+ default.
474
+
454
475
  ## Configuration
455
476
 
456
477
  Runtime state is local to the current user:
@@ -496,16 +517,16 @@ operator's tmux server.
496
517
 
497
518
  ## Roadmap
498
519
 
499
- The next architectural track is an optional MCP gateway: one NexusCrew MCP endpoint with a
500
- local catalog of upstream MCP servers and explicit, per-tool federation through shared nodes.
501
- Credentials and execution would remain on the owner node, with owner-qualified tool identities
502
- and read/mutate ACLs. This gateway is planned work and is **not part of the current release**.
520
+ The current companion catalog is documentation and agent guidance only. A future optional MCP
521
+ gateway could expose one NexusCrew endpoint with explicit, per-tool federation through shared
522
+ nodes. Credentials and execution would remain on the owner node, with owner-qualified tool
523
+ identities and read/mutate ACLs. The gateway is planned work and is **not part of this release**.
503
524
 
504
525
  See [CHANGELOG.md](CHANGELOG.md) for released changes.
505
526
 
506
527
  ## Status
507
528
 
508
- The current stable release is **v0.8.31** on npm and GitHub.
529
+ The current stable release is **v0.8.33** on npm and GitHub.
509
530
 
510
531
  ## License
511
532