@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.
- package/CHANGELOG.md +12 -0
- package/README.md +3 -3
- package/docs/getting-started.md +2 -2
- package/docs/release-and-publishing.md +1 -1
- package/package.json +1 -1
- package/src/cli/agent-knowledge-command.ts +1 -1
- package/src/cli/help.ts +3 -3
- package/src/cli/management-commands.ts +7 -7
- package/src/cli/profiles-command.ts +8 -8
- package/src/cli/routines-command.ts +1 -1
- package/src/cli/service-posture.ts +2 -2
- package/src/cli/status.ts +6 -6
- package/src/cli/surface-command.ts +1 -1
- package/src/input/agent-workspace-categories.ts +16 -17
- package/src/input/agent-workspace-setup.ts +4 -4
- package/src/input/agent-workspace.ts +1 -1
- package/src/input/commands/agent-runtime-profile-runtime.ts +10 -10
- package/src/input/commands/local-auth-runtime.ts +1 -1
- package/src/input/commands/operator-runtime.ts +2 -2
- package/src/input/commands/platform-access-runtime.ts +28 -15
- package/src/input/commands/remote-runtime-setup.ts +6 -6
- package/src/input/commands/routines-runtime.ts +1 -1
- package/src/input/onboarding/onboarding-wizard-steps.ts +3 -3
- package/src/panels/automation-control-panel.ts +2 -2
- package/src/panels/builtin/agent.ts +1 -1
- package/src/panels/builtin/operations.ts +5 -5
- package/src/panels/control-plane-panel.ts +10 -10
- package/src/panels/local-auth-panel.ts +1 -1
- package/src/panels/ops-control-panel.ts +3 -3
- package/src/panels/project-planning-panel.ts +2 -2
- package/src/panels/provider-health-domains.ts +2 -2
- package/src/panels/remote-panel.ts +2 -2
- package/src/panels/schedule-panel.ts +1 -1
- package/src/panels/watchers-panel.ts +1 -1
- package/src/renderer/agent-workspace.ts +9 -9
- package/src/renderer/settings-modal-helpers.ts +14 -14
- package/src/renderer/settings-modal.ts +4 -4
- package/src/runtime/bootstrap.ts +8 -8
- package/src/runtime/diagnostics/panels/ops.ts +1 -1
- package/src/runtime/index.ts +2 -2
- package/src/runtime/onboarding/derivation.ts +15 -15
- package/src/version.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* OpsPanel — diagnostic data provider for
|
|
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
|
package/src/runtime/index.ts
CHANGED
|
@@ -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
|
|
117
|
-
: 'GoodVibes Agent does not own
|
|
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
|
|
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-
|
|
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
|
|
265
|
-
: '
|
|
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
|
|
271
|
-
: '
|
|
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
|
|
277
|
-
: '
|
|
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 '
|
|
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
|
|
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
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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.
|
|
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 {
|