@pellux/goodvibes-agent 0.1.93 → 0.1.95
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 +8 -0
- package/package.json +1 -1
- package/src/cli/status.ts +8 -7
- package/src/version.ts +1 -1
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GoodVibes Agent will be recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.95 - 2026-06-01
|
|
6
|
+
|
|
7
|
+
- a3b0dea Remove copied foundation examples
|
|
8
|
+
|
|
9
|
+
## 0.1.94 - 2026-06-01
|
|
10
|
+
|
|
11
|
+
- ae6fa3e Polish Agent runtime status labels
|
|
12
|
+
|
|
5
13
|
## 0.1.93 - 2026-06-01
|
|
6
14
|
|
|
7
15
|
- 7f802e5 Add external runtime URL override
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.95",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "GoodVibes personal operator assistant TUI with a proactive Agent product brain, isolated Agent Knowledge, local profiles, routines, skills, personas, and explicit build delegation.",
|
|
6
6
|
"type": "module",
|
package/src/cli/status.ts
CHANGED
|
@@ -392,11 +392,12 @@ export function renderCliStatus(options: CliStatusOptions): string {
|
|
|
392
392
|
' live check: unavailable',
|
|
393
393
|
]),
|
|
394
394
|
'',
|
|
395
|
-
'
|
|
396
|
-
|
|
397
|
-
`
|
|
398
|
-
`
|
|
399
|
-
`
|
|
395
|
+
'Runtime Ownership:',
|
|
396
|
+
' Agent hosting: external only',
|
|
397
|
+
` Agent starts runtime: no`,
|
|
398
|
+
` legacy host config present: ${yesNo(serviceEnabled)}`,
|
|
399
|
+
` legacy host autostart: ${yesNo(serviceAutostart)}`,
|
|
400
|
+
` legacy host restart policy: ${yesNo(restartOnFailure)}`,
|
|
400
401
|
...(options.service ? [
|
|
401
402
|
` platform: ${options.service.managed.platform}`,
|
|
402
403
|
` installed: ${yesNo(options.service.managed.installed)}`,
|
|
@@ -405,7 +406,7 @@ export function renderCliStatus(options: CliStatusOptions): string {
|
|
|
405
406
|
` log: ${options.service.log.path ?? 'n/a'} (${options.service.log.exists ? 'present' : 'missing'})`,
|
|
406
407
|
] : []),
|
|
407
408
|
'',
|
|
408
|
-
'Runtime
|
|
409
|
+
'Runtime Endpoint Diagnostics:',
|
|
409
410
|
bindLine('runtimeApi', controlPlaneEnabled, controlPlaneBinding),
|
|
410
411
|
bindLine('incomingWebhook', listenerEnabled, httpListenerBinding),
|
|
411
412
|
bindLine('browserCompanion', webEnabled, webBinding),
|
|
@@ -438,7 +439,7 @@ export function renderCliStatus(options: CliStatusOptions): string {
|
|
|
438
439
|
export function renderOnboardingCliStatus(options: CliStatusOptions): string {
|
|
439
440
|
const marker = options.onboardingMarkers?.effective;
|
|
440
441
|
return [
|
|
441
|
-
'GoodVibes onboarding status',
|
|
442
|
+
'GoodVibes Agent onboarding status',
|
|
442
443
|
` checked: ${marker?.exists ? 'yes' : 'no'}`,
|
|
443
444
|
` scope: ${marker?.scope ?? 'none'}`,
|
|
444
445
|
` source: ${marker?.payload?.source ?? 'n/a'}`,
|
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.1.
|
|
9
|
+
let _version = '0.1.95';
|
|
10
10
|
let _sdkVersion = '0.33.35';
|
|
11
11
|
try {
|
|
12
12
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {
|