@pellux/goodvibes-tui 0.18.9 → 0.18.11
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 +63 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +1 -1
- package/package.json +2 -2
- package/src/tools/edit/core.ts +1 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,69 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.18.11] — 2026-04-15
|
|
8
|
+
|
|
9
|
+
### Version Boundary Cleanup
|
|
10
|
+
|
|
11
|
+
- Fixed the TUI foundation artifact export path so `docs/foundation-artifacts/operator-contract.json` is now built through the TUI contract wrapper instead of the raw SDK builder
|
|
12
|
+
- That keeps the checked-in operator artifact on the TUI product version instead of leaking the SDK package version into TUI-owned release artifacts
|
|
13
|
+
- Updated the release gate to enforce the same boundary, so future foundation artifact checks compare against the TUI contract surface instead of silently accepting SDK-version drift
|
|
14
|
+
- Moved the TUI version-surface sync and foundation-artifact generation behind a shared workspace lock so `prebuild`, artifact export, and package staging cannot race each other over release-owned files
|
|
15
|
+
- Made `publish:package` resync those surfaces before staging, so tarballs are built from the current TUI product version and current foundation artifacts instead of whatever happened to be on disk first
|
|
16
|
+
- Updated the release build job to run the same surface sync before compiling binaries, so fresh CI checkouts cannot embed stale contract/version files into release assets
|
|
17
|
+
|
|
18
|
+
### SDK `0.18.26` Update
|
|
19
|
+
|
|
20
|
+
- Updated `goodvibes-tui` to consume `@pellux/goodvibes-sdk@0.18.26`
|
|
21
|
+
- Pulled in the SDK fix that syncs the baked runtime version fallback from the package version and adds a workspace lock around build and staging so concurrent validate/release flows stop racing over `dist`
|
|
22
|
+
- This removes the stale embedded `0.18.14` SDK fallback string from rebuilt downstream binaries and closes the recurring pack/release race that was still showing up during SDK release validation
|
|
23
|
+
- Rebuilt the TUI against that SDK patch and confirmed the startup header now shows `v0.18.11` while the stale `0.18.14` leak is gone from the compiled binary
|
|
24
|
+
|
|
25
|
+
### Verification
|
|
26
|
+
|
|
27
|
+
- Foundation artifacts export passes: `bun run foundation:artifacts`
|
|
28
|
+
- Foundation artifact release gate passes
|
|
29
|
+
- Full typecheck passes: `bun x tsc --noEmit --pretty false`
|
|
30
|
+
- Full test runner passes: `bun run test`
|
|
31
|
+
- Architecture gate passes: `bun run architecture:check`
|
|
32
|
+
- Performance gate passes: `bun run perf:check`
|
|
33
|
+
- Eval gate passes: `bun run eval:gate`
|
|
34
|
+
- Build passes: `bun run build`
|
|
35
|
+
- Compiled binary startup passes: `./dist/goodvibes`
|
|
36
|
+
- Publish packaging check passes: `bun run publish:check`
|
|
37
|
+
- Staged npm package rehearsal passes: `bun run publish:dry-run`
|
|
38
|
+
- Staged GitHub Packages rehearsal passes: `bun run publish:dry-run:github`
|
|
39
|
+
- Diff hygiene passes: `git diff --check`
|
|
40
|
+
|
|
41
|
+
## [0.18.10] — 2026-04-15
|
|
42
|
+
|
|
43
|
+
### SDK `0.18.25` Startup Crash Fix
|
|
44
|
+
|
|
45
|
+
- Updated `goodvibes-tui` to consume the published canonical SDK line at `@pellux/goodvibes-sdk@0.18.25`
|
|
46
|
+
- Pulled in the SDK fix that removes startup-time top-level `@ast-grep/napi` imports from shared structural-find and `ast_pattern` edit paths
|
|
47
|
+
- 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
|
|
48
|
+
|
|
49
|
+
### Compiled Binary Revalidation
|
|
50
|
+
|
|
51
|
+
- Rebuilt the compiled TUI entrypoint against the published `0.18.25` SDK package instead of local SDK source
|
|
52
|
+
- Verified that `bun run build` followed by `./dist/goodvibes` now reaches a live running TUI session instead of dying during module initialization
|
|
53
|
+
- 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
|
|
54
|
+
|
|
55
|
+
### Verification
|
|
56
|
+
|
|
57
|
+
- Full typecheck passes: `bun x tsc --noEmit --pretty false`
|
|
58
|
+
- Full test runner passes: `bun run test`
|
|
59
|
+
- Architecture gate passes: `bun run architecture:check`
|
|
60
|
+
- Performance gate passes: `bun run perf:check`
|
|
61
|
+
- Eval gate passes: `bun run eval:gate`
|
|
62
|
+
- Foundation artifacts export passes: `bun run foundation:artifacts`
|
|
63
|
+
- Build passes: `bun run build`
|
|
64
|
+
- Compiled binary startup passes: `./dist/goodvibes`
|
|
65
|
+
- Publish packaging check passes: `bun run publish:check`
|
|
66
|
+
- Staged npm package rehearsal passes: `bun run publish:dry-run`
|
|
67
|
+
- Staged GitHub Packages rehearsal passes: `bun run publish:dry-run:github`
|
|
68
|
+
- Diff hygiene passes: `git diff --check`
|
|
69
|
+
|
|
7
70
|
## [0.18.9] — 2026-04-15
|
|
8
71
|
|
|
9
72
|
### SDK `0.18.24` Host-Boundary Cutover
|
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.11",
|
|
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.
|
|
91
|
+
"@pellux/goodvibes-sdk": "0.18.26",
|
|
92
92
|
"bash-language-server": "^5.6.0",
|
|
93
93
|
"fuse.js": "^7.1.0",
|
|
94
94
|
"graphql": "^16.13.2",
|
package/src/tools/edit/core.ts
CHANGED
|
@@ -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
|
+
let _version = '0.18.11';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|