@pellux/goodvibes-tui 0.19.98 → 0.20.0
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 +14 -0
- package/README.md +31 -6
- package/docs/foundation-artifacts/operator-contract.json +1376 -290
- package/package.json +2 -2
- package/src/input/command-registry.ts +1 -1
- package/src/input/commands/local-setup-review.ts +4 -1
- package/src/input/commands/mcp-runtime.ts +237 -7
- package/src/input/commands/platform-sandbox-qemu.ts +17 -35
- package/src/input/commands/platform-sandbox-runtime.ts +4 -2
- package/src/input/feed-context-factory.ts +2 -0
- package/src/input/handler-feed.ts +3 -0
- package/src/input/handler-interactions.ts +1 -0
- package/src/input/handler-modal-stack.ts +3 -0
- package/src/input/handler-modal-token-routes.ts +11 -0
- package/src/input/handler-ui-state.ts +10 -0
- package/src/input/handler.ts +10 -0
- package/src/input/mcp-workspace.ts +554 -0
- package/src/mcp/runtime-reload.ts +81 -0
- package/src/panels/builtin/operations.ts +1 -11
- package/src/panels/builtin/shared.ts +2 -2
- package/src/panels/index.ts +0 -1
- package/src/renderer/conversation-overlays.ts +6 -0
- package/src/renderer/mcp-workspace.ts +297 -0
- package/src/renderer/settings-modal-helpers.ts +1 -0
- package/src/runtime/bootstrap-command-parts.ts +2 -4
- package/src/runtime/bootstrap.ts +26 -2
- package/src/runtime/sandbox-public-gaps.ts +158 -38
- package/src/runtime/sandbox-qemu-templates.ts +340 -0
- package/src/shell/ui-openers.ts +5 -0
- package/src/version.ts +1 -1
- package/src/panels/mcp-panel.ts +0 -215
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.20.0] — 2026-05-11
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- Updated `@pellux/goodvibes-sdk` to `0.33.30` for guest-side QEMU REPL execution and exec working-directory fixes.
|
|
11
|
+
- Added generated QEMU sandbox setup docs, runtime bootstrap scripts, cloud-init seed files, and guest runtime provisioning guidance.
|
|
12
|
+
- Wired `sandbox.replJavaScriptCommand` through generated QEMU setup manifests so JavaScript-family REPL snippets use the guest Bun runtime.
|
|
13
|
+
- Removed the obsolete `/sandbox qemu create-image` command in favor of the generated `create-image.sh` bootstrap workflow.
|
|
14
|
+
- Added focused coverage for QEMU setup scaffolding, command-level exec working directories, context auto-compaction thresholds, and retrospective setup-guide intent classification.
|
|
15
|
+
|
|
16
|
+
## [0.19.99] — 2026-05-12
|
|
17
|
+
|
|
18
|
+
### Changes
|
|
19
|
+
- 5ab6689a feat: add fullscreen MCP workspace
|
|
20
|
+
|
|
7
21
|
## [0.19.98] — 2026-05-11
|
|
8
22
|
|
|
9
23
|
### Changes
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://github.com/mgd34msu/goodvibes-tui)
|
|
6
6
|
|
|
7
7
|
A terminal-native AI coding, operations, automation, knowledge, and integration console with a typed runtime, omnichannel surfaces, structured memory/knowledge, and a raw ANSI renderer.
|
|
8
8
|
|
|
@@ -626,13 +626,16 @@ The QEMU path includes:
|
|
|
626
626
|
|
|
627
627
|
- setup bundle generation
|
|
628
628
|
- first-run bootstrap scaffolding
|
|
629
|
-
-
|
|
629
|
+
- Debian cloud-image download, mutable qcow2 clone, resize, and NoCloud ISO creation through the generated `create-image.sh`
|
|
630
630
|
- host-side wrapper generation
|
|
631
|
+
- guest cloud-init seed generation for the `goodvibes` sudo user, SSH key auth, `/workspace`, and `ens3` DHCP
|
|
631
632
|
- guest-test and wrapper-test validation
|
|
632
633
|
- session-backed command execution
|
|
633
634
|
- guest bundle export / inspect flows
|
|
634
635
|
- setup manifest export / apply flows
|
|
635
636
|
- `attach` and `launch-per-command` execution modes
|
|
637
|
+
- REPL/MCP-friendly guest bootstrap packages for Python, JavaScript, TypeScript, SQL, GraphQL, Bun, Deno, DuckDB, Go, Rust, Ruby, and common CLI build/search tools
|
|
638
|
+
- guest JavaScript-family REPL execution through `sandbox.replJavaScriptCommand`, defaulting the generated QEMU setup to `/home/goodvibes/.bun/bin/bun`
|
|
636
639
|
|
|
637
640
|
Key commands:
|
|
638
641
|
|
|
@@ -643,7 +646,6 @@ Key commands:
|
|
|
643
646
|
- `/sandbox probe`
|
|
644
647
|
- `/sandbox qemu setup <dir>`
|
|
645
648
|
- `/sandbox qemu bootstrap <dir> [size-gb]`
|
|
646
|
-
- `/sandbox qemu create-image <path> [size-gb]`
|
|
647
649
|
- `/sandbox qemu inspect-setup <manifest>`
|
|
648
650
|
- `/sandbox qemu apply-setup <manifest>`
|
|
649
651
|
- `/sandbox session ...`
|
|
@@ -654,10 +656,14 @@ Typical first-run path:
|
|
|
654
656
|
|
|
655
657
|
```sh
|
|
656
658
|
/sandbox qemu bootstrap .goodvibes/tui/sandbox 20
|
|
659
|
+
.goodvibes/tui/sandbox/create-image.sh .goodvibes/tui/sandbox/goodvibes-sandbox.qcow2 20G
|
|
660
|
+
GV_SANDBOX_SYNC_WORKSPACE=0 GV_SANDBOX_WRAPPER_MODE=launch-qemu-ssh .goodvibes/tui/sandbox/qemu-wrapper.sh bash -s < .goodvibes/tui/sandbox/guest-bootstrap.sh
|
|
657
661
|
/sandbox doctor
|
|
658
|
-
/sandbox guest-test eval-
|
|
662
|
+
/sandbox guest-test eval-py
|
|
659
663
|
```
|
|
660
664
|
|
|
665
|
+
See [QEMU sandbox bootstrapping](docs/qemu-sandbox.md) for host prerequisites, generated files, first-boot behavior, guest runtime packages, and troubleshooting logs.
|
|
666
|
+
|
|
661
667
|
---
|
|
662
668
|
|
|
663
669
|
## Remote, Local Services, And Integration Helpers
|
|
@@ -1285,7 +1291,7 @@ Those pieces cover conversation-noise routing, panel-health/performance budgets,
|
|
|
1285
1291
|
| `/tts <prompt>` | — | Submit a normal prompt and play the assistant response through live TTS |
|
|
1286
1292
|
| `/cloudflare [action]` | `/cf` | Configure optional Cloudflare Workers/Queues batch and remote control-plane provisioning |
|
|
1287
1293
|
| `/diff [target]` | `/d` | Show unified diff: session, head, working, staged, or a git ref |
|
|
1288
|
-
| `/mcp [tools]` | — |
|
|
1294
|
+
| `/mcp [add\|remove\|reload\|tools]` | — | Manage MCP servers at runtime and list connected tools |
|
|
1289
1295
|
| `/help [command]` | `/h`, `/?` | Show available commands and keyboard shortcuts |
|
|
1290
1296
|
| `/quit` | `/q`, `/:q` | Exit the application |
|
|
1291
1297
|
|
|
@@ -1481,7 +1487,21 @@ Hook properties: `match`, `type`, `command`/`prompt`/`url`/`path`, `async`, `onc
|
|
|
1481
1487
|
|
|
1482
1488
|
## MCP Integration
|
|
1483
1489
|
|
|
1484
|
-
Connect to any MCP-compatible server
|
|
1490
|
+
Connect to any MCP-compatible server from inside the running TUI:
|
|
1491
|
+
|
|
1492
|
+
```text
|
|
1493
|
+
/mcp add filesystem npx -y @modelcontextprotocol/server-filesystem . --scope project --role filesystem --trust constrained
|
|
1494
|
+
/mcp tools
|
|
1495
|
+
```
|
|
1496
|
+
|
|
1497
|
+
Run `/mcp` without arguments for the fullscreen MCP workspace. The TUI writes
|
|
1498
|
+
project-scoped servers to `.goodvibes/mcp.json` or global servers to
|
|
1499
|
+
`~/.config/mcp/mcp.json`, reloads the live MCP registry, and makes new tools
|
|
1500
|
+
available without restarting. Use `/mcp remove <server> [--scope project|global]`
|
|
1501
|
+
to remove a writable config entry and `/mcp reload` if you edited MCP config
|
|
1502
|
+
outside the TUI.
|
|
1503
|
+
|
|
1504
|
+
You can also edit `.goodvibes/mcp.json` directly:
|
|
1485
1505
|
|
|
1486
1506
|
```json
|
|
1487
1507
|
{
|
|
@@ -1517,6 +1537,11 @@ Current MCP product loops also include:
|
|
|
1517
1537
|
Useful commands:
|
|
1518
1538
|
|
|
1519
1539
|
- `/mcp`
|
|
1540
|
+
- `/mcp add <name> <command> [args...] [--scope project|global] [--role <role>] [--trust <mode>] [--env KEY=VALUE] [--path <path>] [--host <host>]`
|
|
1541
|
+
- `/mcp remove <server> [--scope project|global]`
|
|
1542
|
+
- `/mcp reload`
|
|
1543
|
+
- `/mcp config`
|
|
1544
|
+
- `/mcp tools [server]`
|
|
1520
1545
|
- `/mcp review`
|
|
1521
1546
|
- `/mcp auth-review`
|
|
1522
1547
|
- `/mcp repair`
|