@pellux/goodvibes-agent 0.1.93 → 0.1.94

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.94 - 2026-06-01
6
+
7
+ - ae6fa3e Polish Agent runtime status labels
8
+
5
9
  ## 0.1.93 - 2026-06-01
6
10
 
7
11
  - 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.93",
3
+ "version": "0.1.94",
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
- 'External Runtime Ownership:',
396
- ` owner: external GoodVibes runtime host`,
397
- ` hostConfigEnabled: ${yesNo(serviceEnabled)}`,
398
- ` hostAutostart: ${yesNo(serviceAutostart)}`,
399
- ` hostRestartOnFailure: ${yesNo(restartOnFailure)}`,
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 Endpoints:',
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.93';
9
+ let _version = '0.1.94';
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 {