@pellux/goodvibes-tui 0.19.79 → 0.19.81
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,16 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.81] — 2026-05-08
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
- 42dab2d7 Update SDK to 0.33.18
|
|
11
|
+
|
|
12
|
+
## [0.19.80] — 2026-05-08
|
|
13
|
+
|
|
14
|
+
### Changes
|
|
15
|
+
- 2b40d30e Fix Bun global trust command
|
|
16
|
+
|
|
7
17
|
## [0.19.79] — 2026-05-08
|
|
8
18
|
|
|
9
19
|
### Changes
|
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
|
|
|
@@ -18,7 +18,7 @@ GoodVibes is a Bun program. Install Bun first and make sure `bun` is on `PATH`,
|
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
20
|
bun add -g @pellux/goodvibes-tui
|
|
21
|
-
bun pm -g
|
|
21
|
+
bun pm trust -g @pellux/goodvibes-tui core-js tree-sitter-css tree-sitter-javascript tree-sitter-json tree-sitter-python tree-sitter-typescript
|
|
22
22
|
goodvibes
|
|
23
23
|
```
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-tui",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.81",
|
|
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",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@anthropic-ai/vertex-sdk": "^0.16.0",
|
|
98
98
|
"@ast-grep/napi": "^0.42.0",
|
|
99
99
|
"@aws/bedrock-token-generator": "^1.1.0",
|
|
100
|
-
"@pellux/goodvibes-sdk": "0.33.
|
|
100
|
+
"@pellux/goodvibes-sdk": "0.33.18",
|
|
101
101
|
"bash-language-server": "^5.6.0",
|
|
102
102
|
"fuse.js": "^7.1.0",
|
|
103
103
|
"graphql": "^16.13.2",
|
package/src/panels/wrfc-panel.ts
CHANGED
|
@@ -269,14 +269,12 @@ export class WrfcPanel extends BasePanel {
|
|
|
269
269
|
const total = selectedChain.constraints.length;
|
|
270
270
|
const findings = selectedChain.reviewerReport?.constraintFindings;
|
|
271
271
|
const satisfied = findings ? findings.filter(f => f.satisfied).length : 0;
|
|
272
|
-
const inherited = selectedChain.constraints.filter(c => c.source === 'inherited').length;
|
|
273
|
-
const inheritedPart = inherited > 0 ? ` (${inherited} inherited)` : '';
|
|
274
272
|
const satFg = !findings || findings.length === 0
|
|
275
273
|
? DEFAULT_PANEL_PALETTE.dim
|
|
276
274
|
: satisfied === total ? C.constraintSat : C.constraintUnsat;
|
|
277
275
|
return [
|
|
278
276
|
[' Constraints ', DEFAULT_PANEL_PALETTE.label],
|
|
279
|
-
[`${satisfied} sat / ${total} total
|
|
277
|
+
[`${satisfied} sat / ${total} total`, satFg],
|
|
280
278
|
] as Array<[string, string]>;
|
|
281
279
|
})()),
|
|
282
280
|
] : []),
|
|
@@ -452,8 +450,7 @@ export class WrfcPanel extends BasePanel {
|
|
|
452
450
|
for (const constraint of displayed) {
|
|
453
451
|
if (lines.length >= maxLines) break;
|
|
454
452
|
const marker = constraintStatusMarker(constraint, findings);
|
|
455
|
-
const
|
|
456
|
-
const statusTag = `${marker.tag}${inheritedMark}`;
|
|
453
|
+
const statusTag = marker.tag;
|
|
457
454
|
const rowPrefix = `${indent} ${statusTag} `;
|
|
458
455
|
const textMax = Math.max(8, width - rowPrefix.length);
|
|
459
456
|
const constraintText = truncate(constraint.text, textMax);
|
|
@@ -199,11 +199,10 @@ export function renderAgentDetailModal(
|
|
|
199
199
|
style: { dim: true },
|
|
200
200
|
});
|
|
201
201
|
for (const c of chain.constraints) {
|
|
202
|
-
const src = c.source === 'inherited' ? ' [inherited]' : '';
|
|
203
202
|
const text = c.text.length > 80 ? c.text.slice(0, 77) + '…' : c.text;
|
|
204
203
|
sections.push({
|
|
205
204
|
type: 'text',
|
|
206
|
-
content: ` [${c.id}]
|
|
205
|
+
content: ` [${c.id}] ${text}`,
|
|
207
206
|
style: { fg: '246' },
|
|
208
207
|
});
|
|
209
208
|
}
|
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.19.
|
|
9
|
+
let _version = '0.19.81';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|