@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 CHANGED
@@ -4,6 +4,11 @@ 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
+
7
12
  ## [0.19.98] — 2026-05-11
8
13
 
9
14
  ### Changes
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.98-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.99-blue.svg)](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]` | — | List connected MCP servers and their 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 by adding it to `.goodvibes/mcp.json`:
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`