@pellux/goodvibes-tui 0.19.96 → 0.19.99
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 +15 -0
- package/README.md +23 -3
- package/docs/foundation-artifacts/operator-contract.json +1376 -290
- package/package.json +2 -2
- package/src/input/command-registry.ts +6 -1
- package/src/input/commands/mcp-runtime.ts +237 -7
- package/src/input/commands/shell-core.ts +18 -1
- package/src/input/feed-context-factory.ts +3 -0
- package/src/input/handler-command-route.ts +27 -0
- package/src/input/handler-content-actions.ts +36 -4
- package/src/input/handler-feed.ts +13 -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 +17 -1
- package/src/input/mcp-workspace.ts +554 -0
- package/src/main.ts +1 -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/runtime/bootstrap-command-parts.ts +2 -4
- package/src/runtime/bootstrap.ts +26 -2
- 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,21 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.99] — 2026-05-12
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- 5ab6689a feat: add fullscreen MCP workspace
|
|
11
|
+
|
|
12
|
+
## [0.19.98] — 2026-05-11
|
|
13
|
+
|
|
14
|
+
### Changes
|
|
15
|
+
- 6fa4c84b fix: pass owned project root to command paste
|
|
16
|
+
|
|
17
|
+
## [0.19.97] — 2026-05-11
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
- 256454c2 fix: support explicit clipboard image paste
|
|
21
|
+
|
|
7
22
|
## [0.19.96] — 2026-05-11
|
|
8
23
|
|
|
9
24
|
### 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
|
|
|
@@ -1278,13 +1278,14 @@ Those pieces cover conversation-noise routing, panel-health/performance budgets,
|
|
|
1278
1278
|
| `/keybindings` | `/kb` | List current keyboard bindings and their config file path |
|
|
1279
1279
|
| `/schedule [action]` | `/sched` | Manage scheduled agent tasks (cron): add, list, remove, enable, disable, run |
|
|
1280
1280
|
| `/image <path>` | `/img` | Attach an image file to the next message |
|
|
1281
|
+
| `/paste` | `/clip` | Pull supported text or image data directly from the system clipboard into the prompt |
|
|
1281
1282
|
| `/refresh-models` | — | Refresh model catalog, benchmarks, and token limits |
|
|
1282
1283
|
| `/notify [action]` | `/ntf` | Manage webhook notifications (ntfy.sh): add, remove, list, clear, test |
|
|
1283
1284
|
| `/voice [action]` | — | Review optional voice posture and export/inspect voice bundles |
|
|
1284
1285
|
| `/tts <prompt>` | — | Submit a normal prompt and play the assistant response through live TTS |
|
|
1285
1286
|
| `/cloudflare [action]` | `/cf` | Configure optional Cloudflare Workers/Queues batch and remote control-plane provisioning |
|
|
1286
1287
|
| `/diff [target]` | `/d` | Show unified diff: session, head, working, staged, or a git ref |
|
|
1287
|
-
| `/mcp [tools]` | — |
|
|
1288
|
+
| `/mcp [add\|remove\|reload\|tools]` | — | Manage MCP servers at runtime and list connected tools |
|
|
1288
1289
|
| `/help [command]` | `/h`, `/?` | Show available commands and keyboard shortcuts |
|
|
1289
1290
|
| `/quit` | `/q`, `/:q` | Exit the application |
|
|
1290
1291
|
|
|
@@ -1480,7 +1481,21 @@ Hook properties: `match`, `type`, `command`/`prompt`/`url`/`path`, `async`, `onc
|
|
|
1480
1481
|
|
|
1481
1482
|
## MCP Integration
|
|
1482
1483
|
|
|
1483
|
-
Connect to any MCP-compatible server
|
|
1484
|
+
Connect to any MCP-compatible server from inside the running TUI:
|
|
1485
|
+
|
|
1486
|
+
```text
|
|
1487
|
+
/mcp add filesystem npx -y @modelcontextprotocol/server-filesystem . --scope project --role filesystem --trust constrained
|
|
1488
|
+
/mcp tools
|
|
1489
|
+
```
|
|
1490
|
+
|
|
1491
|
+
Run `/mcp` without arguments for the fullscreen MCP workspace. The TUI writes
|
|
1492
|
+
project-scoped servers to `.goodvibes/mcp.json` or global servers to
|
|
1493
|
+
`~/.config/mcp/mcp.json`, reloads the live MCP registry, and makes new tools
|
|
1494
|
+
available without restarting. Use `/mcp remove <server> [--scope project|global]`
|
|
1495
|
+
to remove a writable config entry and `/mcp reload` if you edited MCP config
|
|
1496
|
+
outside the TUI.
|
|
1497
|
+
|
|
1498
|
+
You can also edit `.goodvibes/mcp.json` directly:
|
|
1484
1499
|
|
|
1485
1500
|
```json
|
|
1486
1501
|
{
|
|
@@ -1516,6 +1531,11 @@ Current MCP product loops also include:
|
|
|
1516
1531
|
Useful commands:
|
|
1517
1532
|
|
|
1518
1533
|
- `/mcp`
|
|
1534
|
+
- `/mcp add <name> <command> [args...] [--scope project|global] [--role <role>] [--trust <mode>] [--env KEY=VALUE] [--path <path>] [--host <host>]`
|
|
1535
|
+
- `/mcp remove <server> [--scope project|global]`
|
|
1536
|
+
- `/mcp reload`
|
|
1537
|
+
- `/mcp config`
|
|
1538
|
+
- `/mcp tools [server]`
|
|
1519
1539
|
- `/mcp review`
|
|
1520
1540
|
- `/mcp auth-review`
|
|
1521
1541
|
- `/mcp repair`
|