@pellux/goodvibes-tui 0.24.0 → 0.24.1

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,15 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.24.1] — 2026-06-17
8
+
9
+ ### Changes
10
+ - 1813b36d test: align suite with goodvibes-sdk 0.33.38 behavior
11
+ - 0ee3b615 chore: bump @pellux/goodvibes-sdk to 0.33.38
12
+ - 32a813e4 chore: untrack internal deep-dive notes (moved to .goodvibes/deepdives/)
13
+ - c73a3fcb docs: refresh README — version badge 0.24.0, SDK-extracted tools, test count
14
+ - ca262d5e docs: handoff updated — 0.24.0 confirmed live on npm
15
+
7
16
  ## [0.24.0] — 2026-06-12
8
17
 
9
18
  Fourth best-in-class program release: the engineering-task backlog closed, crash durability made real, and the composer brought to readline parity. Every change passed independent review before commit.
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.24.0-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.24.1-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
 
@@ -1616,7 +1616,7 @@ src/
1616
1616
  ├── renderer/ / panels/ — raw ANSI UI, overlays, control rooms, panel workspaces
1617
1617
  ├── input/ — slash commands, keybindings, prompt/input routing
1618
1618
  ├── providers/ — native providers, compat providers, discovery, synthetic failover, model catalog
1619
- ├── tools/ — built-in tool implementations and schemas
1619
+ ├── tools/ — re-export of SDK-provided built-in tools plus TUI-local tool guards
1620
1620
  ├── agents/ — in-process agents, WRFC, archetypes, worktrees, reports
1621
1621
  ├── automation/ — schedules, routes, job persistence, managed automation runtime
1622
1622
  ├── channels/ / adapters/ — channel plugins, reply pipeline, delivery routing, webhook adapters
@@ -1664,7 +1664,7 @@ bun run dev
1664
1664
  bun test
1665
1665
  ```
1666
1666
 
1667
- 6,900+ tests across contract, security, release gate, runtime, renderer, panel, integration, and UX anti-regression suites. Performance budget gate runs as part of CI — the build fails if any of the 5 perf budgets (store update latency, event dispatch latency, tool execution overhead, compaction duration, startup time) are exceeded.
1667
+ 8,500+ tests across contract, security, release gate, runtime, renderer, panel, integration, and UX anti-regression suites. Performance budget gate runs as part of CI — the build fails if any of the 5 perf budgets (store update latency, event dispatch latency, tool execution overhead, compaction duration, startup time) are exceeded.
1668
1668
 
1669
1669
  ### Build standalone binary
1670
1670
 
@@ -1675,8 +1675,7 @@ bun run build
1675
1675
 
1676
1676
  ### Project structure conventions
1677
1677
 
1678
- - Tool implementations live in `src/tools/<name>/index.ts`
1679
- - Tool parameter schemas live in `src/tools/<name>/schema.ts`
1678
+ - Built-in tool implementations and parameter schemas live in the extracted `@pellux/goodvibes-sdk` package (`@pellux/goodvibes-sdk/platform/tools`); `src/tools/` re-exports `registerAllTools` and keeps only TUI-local pieces such as the WRFC agent guard
1680
1679
  - Tests mirror the source tree under `src/test/`
1681
1680
  - Project runtime data such as sessions, hooks, MCP config, artifacts, and local state lives under `.goodvibes/` in the working directory
1682
1681
  - Global TUI settings live in `~/.goodvibes/tui/settings.json`; project overrides live in `.goodvibes/tui/settings.json`