@pellux/goodvibes-tui 0.18.9 → 0.18.10

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,35 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.18.10] — 2026-04-15
8
+
9
+ ### SDK `0.18.25` Startup Crash Fix
10
+
11
+ - Updated `goodvibes-tui` to consume the published canonical SDK line at `@pellux/goodvibes-sdk@0.18.25`
12
+ - Pulled in the SDK fix that removes startup-time top-level `@ast-grep/napi` imports from shared structural-find and `ast_pattern` edit paths
13
+ - Closed the compiled-binary startup regression where `./dist/goodvibes` could crash before any AST-backed tool was used simply because the full tool surface is registered during host boot
14
+
15
+ ### Compiled Binary Revalidation
16
+
17
+ - Rebuilt the compiled TUI entrypoint against the published `0.18.25` SDK package instead of local SDK source
18
+ - Verified that `bun run build` followed by `./dist/goodvibes` now reaches a live running TUI session instead of dying during module initialization
19
+ - Kept the fix at the SDK boundary rather than adding a TUI-local workaround, so package consumers and future hosts get the same corrected startup behavior
20
+
21
+ ### Verification
22
+
23
+ - Full typecheck passes: `bun x tsc --noEmit --pretty false`
24
+ - Full test runner passes: `bun run test`
25
+ - Architecture gate passes: `bun run architecture:check`
26
+ - Performance gate passes: `bun run perf:check`
27
+ - Eval gate passes: `bun run eval:gate`
28
+ - Foundation artifacts export passes: `bun run foundation:artifacts`
29
+ - Build passes: `bun run build`
30
+ - Compiled binary startup passes: `./dist/goodvibes`
31
+ - Publish packaging check passes: `bun run publish:check`
32
+ - Staged npm package rehearsal passes: `bun run publish:dry-run`
33
+ - Staged GitHub Packages rehearsal passes: `bun run publish:dry-run:github`
34
+ - Diff hygiene passes: `git diff --check`
35
+
7
36
  ## [0.18.9] — 2026-04-15
8
37
 
9
38
  ### SDK `0.18.24` Host-Boundary Cutover
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.18.9-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.18.10-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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.18.9",
3
+ "version": "0.18.10",
4
4
  "description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
5
5
  "type": "module",
6
6
  "main": "src/main.ts",
@@ -88,7 +88,7 @@
88
88
  "@anthropic-ai/vertex-sdk": "^0.16.0",
89
89
  "@ast-grep/napi": "^0.42.0",
90
90
  "@aws/bedrock-token-generator": "^1.1.0",
91
- "@pellux/goodvibes-sdk": "0.18.24",
91
+ "@pellux/goodvibes-sdk": "0.18.25",
92
92
  "bash-language-server": "^5.6.0",
93
93
  "fuse.js": "^7.1.0",
94
94
  "graphql": "^16.13.2",
@@ -452,7 +452,7 @@ async function executeTextEdits(
452
452
 
453
453
  let editResult: { newContent: string; occurrencesReplaced: number; warning?: string } | { error: string; hint?: string };
454
454
  if (matchMode === 'ast_pattern') {
455
- editResult = computeAstPatternEdit(currentContent, item, resolvedPath);
455
+ editResult = await computeAstPatternEdit(currentContent, item, resolvedPath);
456
456
  } else if (matchMode === 'ast') {
457
457
  editResult = await computeAstEdit(currentContent, item, resolvedPath);
458
458
  } else {
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.18.9';
9
+ let _version = '0.18.10';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;