@pellux/goodvibes-agent 0.1.63 → 0.1.65

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +3 -3
  3. package/docs/getting-started.md +2 -2
  4. package/docs/release-and-publishing.md +1 -1
  5. package/package.json +1 -1
  6. package/src/cli/agent-knowledge-command.ts +1 -1
  7. package/src/cli/help.ts +3 -3
  8. package/src/cli/management-commands.ts +7 -7
  9. package/src/cli/profiles-command.ts +8 -8
  10. package/src/cli/routines-command.ts +1 -1
  11. package/src/cli/service-posture.ts +2 -2
  12. package/src/cli/status.ts +6 -6
  13. package/src/cli/surface-command.ts +1 -1
  14. package/src/input/agent-workspace-categories.ts +16 -17
  15. package/src/input/agent-workspace-setup.ts +4 -4
  16. package/src/input/agent-workspace.ts +1 -1
  17. package/src/input/commands/agent-runtime-profile-runtime.ts +10 -10
  18. package/src/input/commands/local-auth-runtime.ts +1 -1
  19. package/src/input/commands/operator-runtime.ts +2 -2
  20. package/src/input/commands/platform-access-runtime.ts +28 -15
  21. package/src/input/commands/remote-runtime-setup.ts +6 -6
  22. package/src/input/commands/routines-runtime.ts +1 -1
  23. package/src/input/onboarding/onboarding-wizard-steps.ts +3 -3
  24. package/src/panels/automation-control-panel.ts +2 -2
  25. package/src/panels/builtin/agent.ts +1 -1
  26. package/src/panels/builtin/operations.ts +5 -5
  27. package/src/panels/control-plane-panel.ts +10 -10
  28. package/src/panels/local-auth-panel.ts +1 -1
  29. package/src/panels/ops-control-panel.ts +3 -3
  30. package/src/panels/project-planning-panel.ts +2 -2
  31. package/src/panels/provider-health-domains.ts +2 -2
  32. package/src/panels/remote-panel.ts +2 -2
  33. package/src/panels/schedule-panel.ts +1 -1
  34. package/src/panels/watchers-panel.ts +1 -1
  35. package/src/renderer/agent-workspace.ts +9 -9
  36. package/src/renderer/settings-modal-helpers.ts +14 -14
  37. package/src/renderer/settings-modal.ts +4 -4
  38. package/src/runtime/bootstrap.ts +8 -8
  39. package/src/runtime/diagnostics/panels/ops.ts +1 -1
  40. package/src/runtime/index.ts +2 -2
  41. package/src/runtime/onboarding/derivation.ts +15 -15
  42. package/src/version.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * OpsPanel — diagnostic data provider for the Operator Control Plane.
2
+ * OpsPanel — diagnostic data provider for operator interventions.
3
3
  *
4
4
  * Subscribes to OPS_AUDIT events from the UI-facing ops event feed and maintains a
5
5
  * bounded buffer of intervention records for display
@@ -113,8 +113,8 @@ function agentExternalHostStatus(
113
113
  port,
114
114
  baseUrl: `http://${host}:${port}`,
115
115
  reason: service === 'daemon'
116
- ? 'GoodVibes Agent connects to an externally managed GoodVibes daemon and does not start or restart it.'
117
- : 'GoodVibes Agent does not own the HTTP listener lifecycle.',
116
+ ? 'GoodVibes Agent connects to an externally managed GoodVibes runtime host and does not start or restart it.'
117
+ : 'GoodVibes Agent does not own external listener lifecycle.',
118
118
  };
119
119
  }
120
120
 
@@ -253,28 +253,28 @@ function hasExternalIntegrations(snapshot: OnboardingSnapshotState): boolean {
253
253
 
254
254
  function describeLocalTuiOnly(snapshot: OnboardingSnapshotState): string {
255
255
  if (!hasAnyServerEnabled(snapshot)) {
256
- return 'Use GoodVibes Agent in this terminal while connecting only to an externally managed daemon. Agent does not enable service mode, HTTP listeners, external app surfaces, or network setup.';
256
+ return 'Use GoodVibes Agent in this terminal while connecting to the existing GoodVibes runtime. Agent setup does not enable network services or extra entrypoints.';
257
257
  }
258
258
 
259
- return 'Keep Agent local-only by not requesting browser access, service posture changes, HTTP listeners, external app surfaces, or network setup from the daemon owner.';
259
+ return 'Keep Agent local-first by reviewing runtime connectivity separately from Agent-owned assistant setup.';
260
260
  }
261
261
 
262
262
  function describeBrowserAccess(snapshot: OnboardingSnapshotState): string {
263
263
  return snapshot.bindSettings.web.enabled
264
- ? 'Review the externally managed daemon web UI posture. Network reachability is controlled by the daemon owner.'
265
- : 'Review browser access requirements for the externally managed daemon. Agent records intent but does not start web services.';
264
+ ? 'Review browser access already exposed by the runtime owner. Agent records visibility but does not change network posture.'
265
+ : 'Browser access is optional. Agent can stay terminal-first while the runtime owner controls any browser entrypoint.';
266
266
  }
267
267
 
268
268
  function describeRemoteDeviceAccess(snapshot: OnboardingSnapshotState): string {
269
269
  return hasRemoteDeviceAccess(snapshot)
270
- ? 'Review external daemon surfaces reachable from other devices on your LAN. Local authentication is required.'
271
- : 'Review the external daemon surfaces required for other-device LAN access. Local authentication is required.';
270
+ ? 'Review runtime access reachable from other devices on your LAN. Local authentication is required.'
271
+ : 'Other-device access is optional and remains controlled by the runtime owner.';
272
272
  }
273
273
 
274
274
  function describeWebhookIngress(snapshot: OnboardingSnapshotState): string {
275
275
  return hasWebhookOrEventIngress(snapshot)
276
- ? 'Review the external HTTP listener used for incoming webhooks, callbacks, and automation events.'
277
- : 'Review the external HTTP listener required for incoming webhooks, callbacks, and automation events.';
276
+ ? 'Review incoming webhook, callback, and automation-event routes exposed by the runtime owner.'
277
+ : 'Incoming webhook and callback routes are optional; Agent onboarding does not create them.';
278
278
  }
279
279
 
280
280
  function describeExternalIntegrations(snapshot: OnboardingSnapshotState): string {
@@ -284,10 +284,10 @@ function describeExternalIntegrations(snapshot: OnboardingSnapshotState): string
284
284
  ]).size;
285
285
 
286
286
  if (integrationCount === 0) {
287
- return 'Enable setup screens for Slack, Discord, Telegram, Teams, Matrix, and other app surfaces you choose.';
287
+ return 'Connect only the channels you want the assistant to use, then review delivery safety before sending externally.';
288
288
  }
289
289
 
290
- return `Review and configure ${integrationCount} detected external app, service, or surface integration signal(s).`;
290
+ return `Review ${integrationCount} detected channel or integration signal(s) before allowing external delivery.`;
291
291
  }
292
292
 
293
293
  function getAcknowledgementAccepted(
@@ -330,31 +330,31 @@ export function deriveStep1Capabilities(
330
330
  return [
331
331
  {
332
332
  id: 'local-tui-only',
333
- label: 'Agent Local Only (External Daemon)',
333
+ label: 'Agent Terminal First',
334
334
  selected: !hasAnyServerEnabled(snapshot),
335
335
  detail: describeLocalTuiOnly(snapshot),
336
336
  },
337
337
  {
338
338
  id: 'browser-access',
339
- label: 'Open GoodVibes in a Browser',
339
+ label: 'Optional Browser Access',
340
340
  selected: hasBrowserAccess(snapshot),
341
341
  detail: describeBrowserAccess(snapshot),
342
342
  },
343
343
  {
344
344
  id: 'network-access',
345
- label: 'Let other devices use GoodVibes',
345
+ label: 'Optional Other-Device Access',
346
346
  selected: hasRemoteDeviceAccess(snapshot),
347
347
  detail: describeRemoteDeviceAccess(snapshot),
348
348
  },
349
349
  {
350
350
  id: 'webhook-events',
351
- label: 'Receive webhooks or events from other tools',
351
+ label: 'Optional Incoming Events',
352
352
  selected: hasWebhookOrEventIngress(snapshot),
353
353
  detail: describeWebhookIngress(snapshot),
354
354
  },
355
355
  {
356
356
  id: 'external-integrations',
357
- label: 'Connect GoodVibes to external apps and services',
357
+ label: 'Channels and Integrations',
358
358
  selected: hasExternalIntegrations(snapshot),
359
359
  detail: describeExternalIntegrations(snapshot),
360
360
  },
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.63';
9
+ let _version = '0.1.65';
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 {