@pellux/goodvibes-agent 0.1.101 → 0.1.102
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.102",
|
|
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",
|
|
@@ -16,23 +16,6 @@
|
|
|
16
16
|
"!src/test",
|
|
17
17
|
"!src/**/*.test.ts",
|
|
18
18
|
"!src/**/__tests__",
|
|
19
|
-
"!src/panels/cockpit-panel.ts",
|
|
20
|
-
"!src/panels/communication-panel.ts",
|
|
21
|
-
"!src/panels/control-plane-panel.ts",
|
|
22
|
-
"!src/panels/forensics-panel.ts",
|
|
23
|
-
"!src/panels/hooks-panel.ts",
|
|
24
|
-
"!src/panels/incident-review-panel.ts",
|
|
25
|
-
"!src/panels/marketplace-panel.ts",
|
|
26
|
-
"!src/panels/ops-control-panel.ts",
|
|
27
|
-
"!src/panels/ops-strategy-panel.ts",
|
|
28
|
-
"!src/panels/orchestration-panel.ts",
|
|
29
|
-
"!src/panels/plugins-panel.ts",
|
|
30
|
-
"!src/panels/remote-panel.ts",
|
|
31
|
-
"!src/panels/routes-panel.ts",
|
|
32
|
-
"!src/panels/services-panel.ts",
|
|
33
|
-
"!src/panels/settings-sync-panel.ts",
|
|
34
|
-
"!src/panels/skills-panel.ts",
|
|
35
|
-
"!src/panels/watchers-panel.ts",
|
|
36
19
|
"!src/verification",
|
|
37
20
|
"tsconfig.json",
|
|
38
21
|
"README.md",
|
|
@@ -108,19 +108,11 @@ export interface CommandShellUiOpeners {
|
|
|
108
108
|
showPanel?: (panelId: string, pane?: 'top' | 'bottom') => void;
|
|
109
109
|
focusPanels?: () => void;
|
|
110
110
|
focusPrompt?: () => void;
|
|
111
|
-
openOpsPanel?: () => void;
|
|
112
|
-
openCockpitPanel?: () => void;
|
|
113
|
-
openOrchestrationPanel?: () => void;
|
|
114
|
-
openForensicsPanel?: () => void;
|
|
115
|
-
openIncidentPanel?: () => void;
|
|
116
111
|
openPolicyPanel?: () => void;
|
|
117
|
-
openHooksPanel?: () => void;
|
|
118
|
-
openCommunicationPanel?: () => void;
|
|
119
112
|
openMcpWorkspace?: () => void;
|
|
120
113
|
openAgentWorkspace?: () => void;
|
|
121
114
|
openSecurityPanel?: () => void;
|
|
122
115
|
openKnowledgePanel?: () => void;
|
|
123
|
-
openRemotePanel?: () => void;
|
|
124
116
|
openSubscriptionPanel?: () => void;
|
|
125
117
|
}
|
|
126
118
|
|
|
@@ -150,18 +150,11 @@ export function createBootstrapCommandActions(
|
|
|
150
150
|
| 'exit'
|
|
151
151
|
| 'reloadSystemPrompt'
|
|
152
152
|
| 'showPanel'
|
|
153
|
-
| 'openForensicsPanel'
|
|
154
|
-
| 'openIncidentPanel'
|
|
155
153
|
| 'openPolicyPanel'
|
|
156
|
-
| 'openHooksPanel'
|
|
157
|
-
| 'openCommunicationPanel'
|
|
158
|
-
| 'openOrchestrationPanel'
|
|
159
|
-
| 'openCockpitPanel'
|
|
160
154
|
| 'openMcpWorkspace'
|
|
161
155
|
| 'openAgentWorkspace'
|
|
162
156
|
| 'openSecurityPanel'
|
|
163
157
|
| 'openKnowledgePanel'
|
|
164
|
-
| 'openRemotePanel'
|
|
165
158
|
| 'openSubscriptionPanel'
|
|
166
159
|
> {
|
|
167
160
|
const {
|
|
@@ -244,27 +237,9 @@ export function createBootstrapCommandActions(
|
|
|
244
237
|
exit: () => unwiredShellAction('exit'),
|
|
245
238
|
reloadSystemPrompt: loadSystemPrompt,
|
|
246
239
|
showPanel,
|
|
247
|
-
openForensicsPanel: () => {
|
|
248
|
-
showPanel('forensics');
|
|
249
|
-
},
|
|
250
|
-
openIncidentPanel: () => {
|
|
251
|
-
showPanel('incident');
|
|
252
|
-
},
|
|
253
240
|
openPolicyPanel: () => {
|
|
254
241
|
showPanel('policy');
|
|
255
242
|
},
|
|
256
|
-
openHooksPanel: () => {
|
|
257
|
-
showPanel('hooks');
|
|
258
|
-
},
|
|
259
|
-
openCommunicationPanel: () => {
|
|
260
|
-
showPanel('communication');
|
|
261
|
-
},
|
|
262
|
-
openOrchestrationPanel: () => {
|
|
263
|
-
showPanel('orchestration');
|
|
264
|
-
},
|
|
265
|
-
openCockpitPanel: () => {
|
|
266
|
-
showPanel('cockpit');
|
|
267
|
-
},
|
|
268
243
|
openMcpWorkspace: () => unwiredShellAction('openMcpWorkspace'),
|
|
269
244
|
openAgentWorkspace: () => unwiredShellAction('openAgentWorkspace'),
|
|
270
245
|
openSecurityPanel: () => {
|
|
@@ -273,9 +248,6 @@ export function createBootstrapCommandActions(
|
|
|
273
248
|
openKnowledgePanel: () => {
|
|
274
249
|
showPanel('knowledge');
|
|
275
250
|
},
|
|
276
|
-
openRemotePanel: () => {
|
|
277
|
-
showPanel('remote');
|
|
278
|
-
},
|
|
279
251
|
openSubscriptionPanel: () => {
|
|
280
252
|
showPanel('subscription');
|
|
281
253
|
},
|
package/src/runtime/bootstrap.ts
CHANGED
|
@@ -553,19 +553,10 @@ export async function bootstrapRuntime(
|
|
|
553
553
|
};
|
|
554
554
|
|
|
555
555
|
// ── Phase 12b: Operator intervention wiring (feature-gated) ──────────────
|
|
556
|
-
//
|
|
557
|
-
//
|
|
558
|
-
//
|
|
556
|
+
// Keep the copied control-plane state internal. GoodVibes Agent does not
|
|
557
|
+
// expose the copied local ops-control panel; operator control is surfaced
|
|
558
|
+
// through Agent-owned status, approvals, automation, and delegation flows.
|
|
559
559
|
ctx.commandContext.ops.acpManager = acpManager;
|
|
560
|
-
if (opsControlPlane) {
|
|
561
|
-
ctx.commandContext.openOpsPanel = () => {
|
|
562
|
-
if (ctx.commandContext.showPanel) ctx.commandContext.showPanel('ops-control');
|
|
563
|
-
else {
|
|
564
|
-
panelManager.open('ops-control');
|
|
565
|
-
requestRender();
|
|
566
|
-
}
|
|
567
|
-
};
|
|
568
|
-
}
|
|
569
560
|
|
|
570
561
|
// Wire exit from options if provided; otherwise main.ts binds the shell bridge.
|
|
571
562
|
if (options?.exit) {
|
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.102';
|
|
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 {
|