@pellux/goodvibes-tui 0.19.98 → 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 +5 -0
- package/README.md +22 -3
- 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/mcp-runtime.ts +237 -7
- 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/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
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
|
|
|
@@ -1285,7 +1285,7 @@ Those pieces cover conversation-noise routing, panel-health/performance budgets,
|
|
|
1285
1285
|
| `/tts <prompt>` | — | Submit a normal prompt and play the assistant response through live TTS |
|
|
1286
1286
|
| `/cloudflare [action]` | `/cf` | Configure optional Cloudflare Workers/Queues batch and remote control-plane provisioning |
|
|
1287
1287
|
| `/diff [target]` | `/d` | Show unified diff: session, head, working, staged, or a git ref |
|
|
1288
|
-
| `/mcp [tools]` | — |
|
|
1288
|
+
| `/mcp [add\|remove\|reload\|tools]` | — | Manage MCP servers at runtime and list connected tools |
|
|
1289
1289
|
| `/help [command]` | `/h`, `/?` | Show available commands and keyboard shortcuts |
|
|
1290
1290
|
| `/quit` | `/q`, `/:q` | Exit the application |
|
|
1291
1291
|
|
|
@@ -1481,7 +1481,21 @@ Hook properties: `match`, `type`, `command`/`prompt`/`url`/`path`, `async`, `onc
|
|
|
1481
1481
|
|
|
1482
1482
|
## MCP Integration
|
|
1483
1483
|
|
|
1484
|
-
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:
|
|
1485
1499
|
|
|
1486
1500
|
```json
|
|
1487
1501
|
{
|
|
@@ -1517,6 +1531,11 @@ Current MCP product loops also include:
|
|
|
1517
1531
|
Useful commands:
|
|
1518
1532
|
|
|
1519
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]`
|
|
1520
1539
|
- `/mcp review`
|
|
1521
1540
|
- `/mcp auth-review`
|
|
1522
1541
|
- `/mcp repair`
|