@pellux/goodvibes-agent 0.1.69 → 0.1.70
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,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GoodVibes Agent will be recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.70 - 2026-05-31
|
|
6
|
+
|
|
7
|
+
- Removed copied TUI coding, runtime lifecycle, and developer-maintenance slash commands from the visible Agent command registry.
|
|
8
|
+
- Focused `/help` on Agent operator workflows instead of conversation branching, templates, tool inspection, or blocked TUI exit commands.
|
|
9
|
+
- Added regression coverage so copied TUI commands stay hidden while Agent knowledge, memory, skills, personas, routines, delegation, schedule, secrets, and work-plan commands remain available.
|
|
10
|
+
|
|
5
11
|
## 0.1.69 - 2026-05-31
|
|
6
12
|
|
|
7
13
|
- Made the first-run onboarding detail area wrap selected-row guidance across multiple lines instead of hiding setup context behind single-line truncation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.70",
|
|
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",
|
|
@@ -8,7 +8,7 @@ export function registerGuidanceRuntimeCommands(registry: CommandRegistry): void
|
|
|
8
8
|
registry.register({
|
|
9
9
|
name: 'welcome',
|
|
10
10
|
aliases: ['guide'],
|
|
11
|
-
description: 'Open the
|
|
11
|
+
description: 'Open the Agent setup workspace',
|
|
12
12
|
usage: '[open|print]',
|
|
13
13
|
handler(args, ctx) {
|
|
14
14
|
const sub = args[0] ?? 'open';
|
|
@@ -22,14 +22,15 @@ export function registerGuidanceRuntimeCommands(registry: CommandRegistry): void
|
|
|
22
22
|
}
|
|
23
23
|
if (sub === 'print') {
|
|
24
24
|
ctx.print([
|
|
25
|
-
'Welcome To GoodVibes',
|
|
25
|
+
'Welcome To GoodVibes Agent',
|
|
26
26
|
' /onboarding - open the onboarding wizard with current settings preloaded',
|
|
27
|
-
' /
|
|
28
|
-
' /
|
|
29
|
-
' /
|
|
30
|
-
' /
|
|
31
|
-
' /
|
|
32
|
-
' /
|
|
27
|
+
' /agent - open the Agent operator workspace',
|
|
28
|
+
' /knowledge - inspect isolated Agent Knowledge status, ask, and search',
|
|
29
|
+
' /memory - manage local Agent memory',
|
|
30
|
+
' /personas - manage local Agent personas',
|
|
31
|
+
' /agent-skills - manage reusable local Agent skills',
|
|
32
|
+
' /routines - manage local Agent routines',
|
|
33
|
+
' /delegate - explicitly hand build/fix/review work to GoodVibes TUI',
|
|
33
34
|
].join('\n'));
|
|
34
35
|
return;
|
|
35
36
|
}
|
|
@@ -151,20 +151,12 @@ export function registerShellCoreCommands(registry: CommandRegistry): void {
|
|
|
151
151
|
{ id: '/undo', label: '/undo', detail: 'Remove last turn', category: 'Conversation' },
|
|
152
152
|
{ id: '/redo', label: '/redo', detail: 'Restore undone turn', category: 'Conversation' },
|
|
153
153
|
{ id: '/retry', label: '/retry [text]', detail: 'Re-send last message', category: 'Conversation' },
|
|
154
|
-
{ id: '/fork', label: '/fork [name]', detail: 'Snapshot conversation as a named branch', category: 'Conversation' },
|
|
155
|
-
{ id: '/branch', label: '/branch [name]', detail: 'List branches or switch to one', category: 'Conversation' },
|
|
156
|
-
{ id: '/merge', label: '/merge <name>', detail: 'Append messages from a branch', category: 'Conversation' },
|
|
157
|
-
{ id: '/template', label: '/template', detail: 'Browse templates', category: 'Templates' },
|
|
158
|
-
{ id: '/template save', label: '/template save <name> --yes', detail: 'Save prompt as template', category: 'Templates' },
|
|
159
|
-
{ id: '/template use', label: '/template use <name>', detail: 'Execute template', category: 'Templates' },
|
|
160
|
-
{ id: '/tools', label: '/tools', detail: 'List available tools', category: 'Tools & System' },
|
|
161
154
|
{ id: '/paste', label: '/paste', detail: 'Insert clipboard text or image into the prompt', category: 'Tools & System' },
|
|
162
155
|
{ id: '/shortcuts', label: '/shortcuts', detail: 'View keyboard shortcuts reference', category: 'Tools & System' },
|
|
163
156
|
{ id: '/commands', label: '/commands', detail: 'Browse all commands in a scrollable list', category: 'Tools & System' },
|
|
164
157
|
{ id: '/secrets', label: '/secrets set|link|get|test|list|delete', detail: 'Manage encrypted and provider-backed secrets', category: 'Tools & System' },
|
|
165
158
|
{ id: '/help', label: '/help', detail: 'This help', category: 'Tools & System' },
|
|
166
159
|
{ id: '/quit', label: '/quit', detail: 'Exit', category: 'Tools & System' },
|
|
167
|
-
{ id: '/wq', label: '/wq', detail: 'Blocked in Agent; git commit/exit belongs to GoodVibes TUI', category: 'Tools & System' },
|
|
168
160
|
];
|
|
169
161
|
ctx.openSelection('Help — Commands', items, { allowSearch: true }, (result) => {
|
|
170
162
|
if (!result) return;
|
|
@@ -178,7 +170,7 @@ export function registerShellCoreCommands(registry: CommandRegistry): void {
|
|
|
178
170
|
});
|
|
179
171
|
return;
|
|
180
172
|
}
|
|
181
|
-
ctx.print('Use /help to open the help modal. Commands: /agent, /
|
|
173
|
+
ctx.print('Use /help to open the help modal. Commands: /agent, /knowledge, /memory, /personas, /agent-skills, /routines, /delegate, /model, /provider, /config, /paste, /sessions, /bookmarks, /save, /load, /undo, /redo, /retry, /clear, /reset, /compact, /export, /title, /effort, /expand, /collapse, /quit');
|
|
182
174
|
},
|
|
183
175
|
});
|
|
184
176
|
|
package/src/input/commands.ts
CHANGED
|
@@ -55,6 +55,55 @@ import { registerPersonasRuntimeCommands } from './commands/personas-runtime.ts'
|
|
|
55
55
|
import { registerAgentSkillsRuntimeCommands } from './commands/agent-skills-runtime.ts';
|
|
56
56
|
import { registerRoutinesRuntimeCommands } from './commands/routines-runtime.ts';
|
|
57
57
|
|
|
58
|
+
const HIDDEN_COPIED_TUI_COMMANDS = [
|
|
59
|
+
'bootstrap',
|
|
60
|
+
'branch',
|
|
61
|
+
'bridge',
|
|
62
|
+
'cockpit',
|
|
63
|
+
'communication',
|
|
64
|
+
'deeplink',
|
|
65
|
+
'forensics',
|
|
66
|
+
'fork',
|
|
67
|
+
'guidance',
|
|
68
|
+
'handoff',
|
|
69
|
+
'helpers',
|
|
70
|
+
'hooks',
|
|
71
|
+
'incident',
|
|
72
|
+
'incident-review',
|
|
73
|
+
'install',
|
|
74
|
+
'managed',
|
|
75
|
+
'marketplace',
|
|
76
|
+
'merge',
|
|
77
|
+
'memory-review',
|
|
78
|
+
'memory-sync',
|
|
79
|
+
'ops',
|
|
80
|
+
'orchestration',
|
|
81
|
+
'panel',
|
|
82
|
+
'plugin',
|
|
83
|
+
'profilesync',
|
|
84
|
+
'provider-opt',
|
|
85
|
+
'remote',
|
|
86
|
+
'remote-env',
|
|
87
|
+
'remote-setup',
|
|
88
|
+
'replay',
|
|
89
|
+
'scan',
|
|
90
|
+
'services',
|
|
91
|
+
'setup',
|
|
92
|
+
'settingssync',
|
|
93
|
+
'share',
|
|
94
|
+
'skills',
|
|
95
|
+
'storage',
|
|
96
|
+
'team-memory',
|
|
97
|
+
'teleport',
|
|
98
|
+
'template',
|
|
99
|
+
'tools',
|
|
100
|
+
'tunnel',
|
|
101
|
+
'update',
|
|
102
|
+
'worker-pool',
|
|
103
|
+
'wrfc',
|
|
104
|
+
'wq',
|
|
105
|
+
] as const;
|
|
106
|
+
|
|
58
107
|
/**
|
|
59
108
|
* registerBuiltinCommands - Register all built-in slash commands into the registry.
|
|
60
109
|
* Call once during application startup.
|
|
@@ -126,4 +175,7 @@ export function registerBuiltinCommands(registry: CommandRegistry): void {
|
|
|
126
175
|
// ── /knowledge ───────────────────────────────────────────────────────────
|
|
127
176
|
registry.register(knowledgeCommand);
|
|
128
177
|
|
|
178
|
+
for (const commandName of HIDDEN_COPIED_TUI_COMMANDS) {
|
|
179
|
+
registry.unregister(commandName);
|
|
180
|
+
}
|
|
129
181
|
}
|
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.70';
|
|
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 {
|