@pellux/goodvibes-agent 1.0.33 → 1.0.34
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 +22 -0
- package/README.md +71 -59
- package/dist/package/main.js +565 -420
- package/docs/README.md +25 -21
- package/docs/channels-remote-and-api.md +2 -2
- package/docs/connected-host.md +3 -3
- package/docs/getting-started.md +87 -86
- package/docs/providers-and-routing.md +3 -3
- package/docs/release-and-publishing.md +3 -3
- package/docs/tools-and-commands.md +149 -139
- package/docs/voice-and-live-tts.md +1 -1
- package/package.json +1 -1
- package/release/live-verification/live-verification.json +2 -2
- package/release/live-verification/live-verification.md +2 -2
- package/release/release-notes.md +6 -15
- package/release/release-readiness.json +4 -4
- package/src/agent/harness-control.ts +42 -3
- package/src/runtime/bootstrap.ts +10 -18
- package/src/tools/agent-analysis-registry-policy.ts +2 -9
- package/src/tools/agent-channel-send-tool.ts +1 -5
- package/src/tools/agent-context-policy.ts +1 -5
- package/src/tools/agent-find-policy.ts +1 -4
- package/src/tools/agent-harness-channel-metadata.ts +23 -23
- package/src/tools/agent-harness-cli-metadata.ts +4 -1
- package/src/tools/agent-harness-command-catalog.ts +10 -3
- package/src/tools/agent-harness-connected-host-status.ts +8 -2
- package/src/tools/agent-harness-delegation-posture.ts +5 -5
- package/src/tools/agent-harness-mcp-metadata.ts +30 -28
- package/src/tools/agent-harness-media-posture.ts +9 -9
- package/src/tools/agent-harness-metadata.ts +25 -7
- package/src/tools/agent-harness-model-routing.ts +14 -14
- package/src/tools/agent-harness-model-tool-catalog.ts +7 -2
- package/src/tools/agent-harness-notification-metadata.ts +17 -17
- package/src/tools/agent-harness-pairing-posture.ts +7 -7
- package/src/tools/agent-harness-panel-metadata.ts +26 -12
- package/src/tools/agent-harness-provider-account-metadata.ts +33 -31
- package/src/tools/agent-harness-security-posture.ts +9 -7
- package/src/tools/agent-harness-service-posture.ts +22 -16
- package/src/tools/agent-harness-session-metadata.ts +9 -7
- package/src/tools/agent-harness-setup-posture.ts +6 -6
- package/src/tools/agent-harness-tool-schema.ts +1 -0
- package/src/tools/agent-harness-tool.ts +79 -36
- package/src/tools/agent-harness-ui-surface-metadata.ts +19 -11
- package/src/tools/agent-harness-workspace-actions.ts +29 -1
- package/src/tools/agent-knowledge-ingest-tool.ts +1 -5
- package/src/tools/agent-knowledge-tool.ts +1 -5
- package/src/tools/agent-local-registry-tool.ts +1 -4
- package/src/tools/agent-media-generate-tool.ts +1 -5
- package/src/tools/agent-notify-tool.ts +1 -5
- package/src/tools/agent-operator-action-tool.ts +1 -5
- package/src/tools/agent-operator-briefing-tool.ts +1 -5
- package/src/tools/agent-read-policy.ts +1 -4
- package/src/tools/agent-reminder-schedule-tool.ts +1 -5
- package/src/tools/agent-tool-policy-guard.ts +7 -34
- package/src/tools/agent-web-search-policy.ts +1 -4
- package/src/tools/agent-work-plan-tool.ts +1 -5
- package/src/version.ts +1 -1
|
@@ -1,93 +1,174 @@
|
|
|
1
1
|
# Tools and Commands
|
|
2
2
|
|
|
3
|
-
GoodVibes Agent is
|
|
3
|
+
GoodVibes Agent is a TUI-first operator assistant. The workspace is the primary user surface; slash commands are power-user routes inside the TUI; CLI subcommands are scriptable mirrors.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Boundaries
|
|
6
6
|
|
|
7
7
|
- Normal chat stays in the main Agent conversation.
|
|
8
8
|
- Agent Knowledge uses only `/api/goodvibes-agent/knowledge/*`.
|
|
9
|
-
- Agent
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
- Code-building work is delegated to GoodVibes TUI through public shared-session/task contracts.
|
|
9
|
+
- Agent does not query default knowledge or other product knowledge spaces.
|
|
10
|
+
- Connected-host lifecycle is external. Agent reports and uses public routes, but does not start, stop, restart, install, expose, or mutate the host listener.
|
|
11
|
+
- Code-building work is explicit delegation to GoodVibes TUI. Delegated review is never the default reasoning path.
|
|
12
|
+
- External delivery, notifications, reminders, media generation, setting writes, keybinding writes, UI routing, slash-command execution, workspace-action execution, local destructive changes, and connected-host operator actions require explicit user request and confirmation.
|
|
14
13
|
|
|
15
|
-
##
|
|
14
|
+
## User-Facing Surfaces
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
High-signal TUI routes:
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
18
|
+
| Surface | Purpose |
|
|
19
|
+
| --- | --- |
|
|
20
|
+
| `/agent` | Open the fullscreen operator workspace. |
|
|
21
|
+
| `/help` and `/commands` | Discover registered slash commands. |
|
|
22
|
+
| `/health`, `/compat`, `/auth` | Inspect runtime, SDK, host, and auth posture. |
|
|
23
|
+
| `/model`, `/provider`, `/effort` | Inspect or change provider/model/reasoning routes. |
|
|
24
|
+
| `/knowledge` | Use isolated Agent Knowledge. |
|
|
25
|
+
| `/memory`, `/notes`, `/personas`, `/skills`, `/routines` | Manage Agent-local behavior libraries. |
|
|
26
|
+
| `/plan`, `/workplan` | Planning and durable visible work tracking. |
|
|
27
|
+
| `/approval`, `/automation`, `/schedule` | Read posture and run exact confirmed operator actions. |
|
|
28
|
+
| `/channels`, `/notify`, `/qrcode` | Pair companions, inspect channel readiness, and send confirmed messages. |
|
|
29
|
+
| `/media`, `/voice`, `/tts` | Inspect media/voice readiness, generate media, and run spoken turns. |
|
|
30
|
+
| `/mcp`, `/secrets`, `/settings`, `/config` | Inspect or update Agent-local configuration. |
|
|
31
|
+
| `/delegate` | Hand explicit build/fix/review work to GoodVibes TUI. |
|
|
32
|
+
|
|
33
|
+
## Model Tools
|
|
34
|
+
|
|
35
|
+
| Tool | Use |
|
|
36
|
+
| --- | --- |
|
|
37
|
+
| `agent_harness` | Discover and operate user-facing harness surfaces. |
|
|
38
|
+
| `agent_knowledge` | Read isolated Agent Knowledge: status, ask/search, lists, item, map, connectors. |
|
|
39
|
+
| `agent_knowledge_ingest` | Confirmed ingest into isolated Agent Knowledge. |
|
|
40
|
+
| `agent_local_registry` | Inspect or update Agent-local memory, notes, personas, skills, bundles, and routines. |
|
|
41
|
+
| `agent_work_plan` | Keep the visible Agent-local work plan current. |
|
|
42
|
+
| `agent_operator_briefing` | Read connected work, approvals, automation, schedules, and capacity posture. |
|
|
43
|
+
| `agent_operator_action` | Run exact confirmed approval/automation/schedule actions. |
|
|
44
|
+
| `agent_channel_send` | Send one confirmed channel message. |
|
|
45
|
+
| `agent_notify` | Send one confirmed notification through configured webhook targets. |
|
|
46
|
+
| `agent_reminder_schedule` | Create one confirmed connected reminder/schedule. |
|
|
47
|
+
| `agent_media_generate` | Generate one confirmed image/video artifact. |
|
|
45
48
|
|
|
46
|
-
|
|
47
|
-
- `agent_local_registry`: inspect and maintain Agent-local memory, notes, personas, skills, skill bundles, and routines. Deleting local records requires `confirm:true` and `explicitUserRequest`.
|
|
48
|
-
- `agent_knowledge` and `agent_knowledge_ingest`: inspect status, ask/search, list sources/nodes/issues, inspect items, inspect the map and connectors, and ingest into the isolated Agent Knowledge segment.
|
|
49
|
-
- `agent_operator_briefing` and `agent_operator_action`: inspect connected work/approval/automation posture, or run exact confirmed approval/automation actions.
|
|
50
|
-
- `agent_work_plan`: keep the visible Agent-local work plan current from the conversation.
|
|
51
|
-
- `agent_channel_send`, `agent_notify`, `agent_reminder_schedule`, and `agent_media_generate`: perform confirmed external delivery, notification, reminder, or media actions when the user explicitly asks.
|
|
49
|
+
## `agent_harness`
|
|
52
50
|
|
|
53
|
-
`agent_harness
|
|
51
|
+
Use `agent_harness mode:"summary"` first. Summary and plural catalog modes are compact by default. They return counts, ids, labels, state, and short route hints. Use `includeParameters:true` or a singular inspect mode when the model needs full schemas, policy detail, editor fields, redacted log tail, release artifact data, route hints, or tool parameters.
|
|
54
52
|
|
|
55
|
-
|
|
53
|
+
Discovery modes:
|
|
56
54
|
|
|
57
|
-
|
|
55
|
+
| Mode | What It Lists |
|
|
56
|
+
| --- | --- |
|
|
57
|
+
| `workspace`, `workspace_categories`, `workspace_actions` | Workspace categories and actions. |
|
|
58
|
+
| `commands`, `cli_commands` | Slash commands and top-level package CLI mirrors. |
|
|
59
|
+
| `panels`, `ui_surfaces` | Built-in panels and visible modal/overlay/picker/workspace surfaces. |
|
|
60
|
+
| `shortcuts`, `keybindings` | Fixed shortcuts and configurable keybindings. |
|
|
61
|
+
| `settings` | Compact Agent setting rows with category, prefix, query, hidden, and limit filters. |
|
|
62
|
+
| `tools` | First-class model tool definitions; schema details require `includeParameters:true` or `tool`. |
|
|
63
|
+
| `channels`, `notifications` | Channel readiness and redacted notification targets. |
|
|
64
|
+
| `provider_accounts`, `model_routing` | Provider auth and provider/model route posture. |
|
|
65
|
+
| `mcp_servers`, `setup_posture`, `pairing_posture`, `delegation_posture` | MCP, setup, pairing, and build-delegation posture. |
|
|
66
|
+
| `security_posture`, `support_bundles`, `media_posture`, `sessions` | Security, bundle route, voice/media, and session/bookmark posture. |
|
|
67
|
+
| `operator_methods` | Public operator and Agent Knowledge method catalog. |
|
|
68
|
+
| `service_posture`, `connected_host`, `daemon` | Endpoint, connected-host, and daemon alias posture. |
|
|
69
|
+
| `release_evidence`, `release_readiness` | Packaged release evidence and release-quality inventory. |
|
|
70
|
+
|
|
71
|
+
Single-item inspect modes:
|
|
72
|
+
|
|
73
|
+
| Mode | Lookup Fields |
|
|
74
|
+
| --- | --- |
|
|
75
|
+
| `workspace_action` | `actionId`, `command`, `target`, `query` |
|
|
76
|
+
| `command`, `cli_command` | `command`, `commandName`, `cliCommand`, `target`, `query` |
|
|
77
|
+
| `panel`, `ui_surface`, `keybinding`, `tool` | Exact id/name or `target`/`query` |
|
|
78
|
+
| `channel`, `notification_target`, `provider_account`, `mcp_server` | Exact id or `target`/`query` |
|
|
79
|
+
| `setup_item`, `model_route`, `pairing_route`, `delegation_route` | Exact id/model key or `target`/`query` |
|
|
80
|
+
| `security_finding`, `support_bundle`, `media_provider`, `session` | Exact id/path or `target`/`query` |
|
|
81
|
+
| `get_setting`, `service_endpoint`, `operator_method` | Exact key/id or `target`/`query` |
|
|
82
|
+
| `connected_host_capability` | `capabilityId`, `target`, `query` |
|
|
83
|
+
| `connected_host_status`, `daemon_status` | Live read-only status, no lookup required |
|
|
84
|
+
| `release_evidence_artifact`, `release_readiness_item` | `artifactId`/`itemId`, `target`, `query` |
|
|
85
|
+
|
|
86
|
+
Effect modes:
|
|
87
|
+
|
|
88
|
+
| Mode | Effect |
|
|
89
|
+
| --- | --- |
|
|
90
|
+
| `run_workspace_action` | Executes one resolved workspace action through the same editor/command/local bridge as the TUI. |
|
|
91
|
+
| `run_command` | Executes one resolved slash command through the shared command registry. |
|
|
92
|
+
| `open_panel`, `open_ui_surface` | Routes visible shell navigation. |
|
|
93
|
+
| `run_keybinding` | Runs supported shell-safe keybinding actions only. |
|
|
94
|
+
| `set_keybinding`, `reset_keybinding` | Writes the same Agent `keybindings.json` file exposed to the user. |
|
|
95
|
+
| `set_setting`, `reset_setting` | Writes Agent settings through the config/secret managers. |
|
|
58
96
|
|
|
59
|
-
|
|
97
|
+
Every effect mode requires `confirm:true` and `explicitUserRequest`. Ambiguous lookups return candidates before any effect runs.
|
|
60
98
|
|
|
61
|
-
|
|
99
|
+
## Workspace Action Execution
|
|
62
100
|
|
|
63
|
-
`
|
|
101
|
+
`workspace_action` inspection returns editor schemas and `modelExecution` detail. `workspace_actions` can include the same detail with `includeParameters:true`.
|
|
64
102
|
|
|
65
|
-
|
|
103
|
+
Execution routes:
|
|
66
104
|
|
|
67
|
-
|
|
105
|
+
- Local memory, notes, personas, skills, routines, and bundles dispatch through `agent_local_registry`.
|
|
106
|
+
- Confirmed Agent Knowledge URL/file/bookmark/browser-history/connector ingest dispatches through `agent_knowledge_ingest`.
|
|
107
|
+
- Command-backed editors dispatch through `run_command`.
|
|
108
|
+
- Learned-behavior and profile creation use the Agent-local or slash-command bridge.
|
|
109
|
+
- Web research/fetch forms return a main-conversation prompt instead of starting hidden nested work.
|
|
110
|
+
- Selection-based actions accept `recordId` so the model can use the same selected-record flows as the TUI.
|
|
68
111
|
|
|
69
|
-
|
|
112
|
+
## Settings And Keybindings
|
|
70
113
|
|
|
71
|
-
`
|
|
114
|
+
Settings discovery accepts `category`, `prefix`, `query`, `includeHidden:true`, and `limit`. It is compact by default; use `includeParameters:true` or `get_setting` for full descriptions/defaults. Single setting reads/writes resolve by `key`, `target`, or `query`; ambiguous matches are refused. Secret-backed setting writes store raw values through the secret manager and return redacted output. Connected-host lifecycle/listener settings are read-only in Agent.
|
|
72
115
|
|
|
73
|
-
|
|
116
|
+
Keybinding discovery returns fixed shortcuts plus the live resolved binding table. `run_keybinding` only executes actions with faithful current-shell routes. Prompt-editor-only shortcuts, terminal text selection, category cycling, and reserved shortcuts stay direct user interaction.
|
|
74
117
|
|
|
75
|
-
|
|
118
|
+
## Connected Host And Daemon
|
|
76
119
|
|
|
77
|
-
|
|
120
|
+
The connected host is external. Agent can inspect it through:
|
|
78
121
|
|
|
79
|
-
|
|
122
|
+
- `service_posture` and `service_endpoint` for endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
|
|
123
|
+
- `connected_host` and `daemon` for compact connected-host posture; use `includeParameters:true` for route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability.
|
|
124
|
+
- `connected_host_capability` for one allowed or blocked capability.
|
|
125
|
+
- `connected_host_status` and `daemon_status` for live read-only readiness checks.
|
|
126
|
+
- `operator_methods` and `operator_method` for the public method catalog.
|
|
80
127
|
|
|
81
|
-
|
|
128
|
+
None of those modes expose host start, stop, restart, install, expose-listener, account creation, arbitrary route mutation, default knowledge access, hidden background Agent jobs, or implicit delegated review.
|
|
82
129
|
|
|
83
|
-
|
|
130
|
+
## Agent Knowledge
|
|
84
131
|
|
|
85
|
-
|
|
132
|
+
Use the Knowledge workspace first. Scriptable mirrors:
|
|
133
|
+
|
|
134
|
+
```sh
|
|
135
|
+
goodvibes-agent ask "<query>"
|
|
136
|
+
goodvibes-agent search "<query>"
|
|
137
|
+
goodvibes-agent knowledge list --kind sources
|
|
138
|
+
goodvibes-agent knowledge get <id>
|
|
139
|
+
goodvibes-agent knowledge map
|
|
140
|
+
goodvibes-agent knowledge connectors
|
|
141
|
+
goodvibes-agent knowledge connector <connector-id>
|
|
142
|
+
goodvibes-agent knowledge connector-doctor <connector-id>
|
|
143
|
+
goodvibes-agent knowledge ingest-url <url> --yes
|
|
144
|
+
goodvibes-agent knowledge import-urls <path> --yes
|
|
145
|
+
goodvibes-agent knowledge import-bookmarks <path> --yes
|
|
146
|
+
goodvibes-agent knowledge reindex --yes
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Agent rejects route-selection flags that would target another knowledge space, including `--space`, `--knowledge-space`, `--knowledge-space-id`, and `--include-all-spaces`. Contaminated connected-host responses return `scope_contamination`.
|
|
150
|
+
|
|
151
|
+
## Approvals, Automation, And Schedules
|
|
152
|
+
|
|
153
|
+
Read views are safe by default. Mutations require exact target ids and confirmation:
|
|
154
|
+
|
|
155
|
+
```text
|
|
156
|
+
/approval approve <approval-id> [--note <text>] [--remember|--no-remember] --yes
|
|
157
|
+
/approval deny <approval-id> [--note <text>] [--remember|--no-remember] --yes
|
|
158
|
+
/approval cancel <approval-id> [--note <text>] [--remember|--no-remember] --yes
|
|
159
|
+
/automation job run <job-id> --yes
|
|
160
|
+
/automation job pause <job-id> --yes
|
|
161
|
+
/automation job resume <job-id> --yes
|
|
162
|
+
/automation run cancel <run-id> --yes
|
|
163
|
+
/automation run retry <run-id> --yes
|
|
164
|
+
/automation schedule run <schedule-id> --yes
|
|
165
|
+
/schedule run <schedule-id> --yes
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
Routine promotion is an explicit scheduling bridge. Local routines stay local until a user confirms promotion. Delivery targets are opt-in with explicit channel/route/webhook/link flags.
|
|
86
169
|
|
|
87
170
|
## Slash Command Catalog
|
|
88
171
|
|
|
89
|
-
Every registered slash-command root in the Agent TUI is listed here. Aliases resolve through the same command registry but are intentionally secondary to the canonical roots.
|
|
90
|
-
|
|
91
172
|
| Command | Purpose |
|
|
92
173
|
| --- | --- |
|
|
93
174
|
| `/accounts` | Review provider auth routes, subscription windows, and billing-path safety. |
|
|
@@ -116,7 +197,7 @@ Every registered slash-command root in the Agent TUI is listed here. Aliases res
|
|
|
116
197
|
| `/help` | Show available commands and keyboard shortcuts. |
|
|
117
198
|
| `/image` | Attach an image file to the next message. |
|
|
118
199
|
| `/keybindings` | List keyboard bindings and the config file path. |
|
|
119
|
-
| `/knowledge` | Use isolated Agent Knowledge
|
|
200
|
+
| `/knowledge` | Use isolated Agent Knowledge. |
|
|
120
201
|
| `/load` | Load a saved Agent session. |
|
|
121
202
|
| `/mcp` | Manage MCP servers, trust posture, and tool inventory. |
|
|
122
203
|
| `/media` | Inspect media providers or generate media through configured providers. |
|
|
@@ -141,7 +222,7 @@ Every registered slash-command root in the Agent TUI is listed here. Aliases res
|
|
|
141
222
|
| `/routines` | Manage Agent-local routines and explicit routine schedule promotion. |
|
|
142
223
|
| `/save` | Save the current session. |
|
|
143
224
|
| `/schedule` | Inspect schedules, create confirmed reminders, and promote routines to connected schedules. |
|
|
144
|
-
| `/secrets` | Manage
|
|
225
|
+
| `/secrets` | Manage secrets, external secret refs, and storage policy. |
|
|
145
226
|
| `/security` | Inspect security posture, attack paths, and review state. |
|
|
146
227
|
| `/session` | Inspect session continuity and cross-session graph state. |
|
|
147
228
|
| `/sessions` | List saved sessions. |
|
|
@@ -156,85 +237,14 @@ Every registered slash-command root in the Agent TUI is listed here. Aliases res
|
|
|
156
237
|
| `/tts` | Submit a normal prompt and play the assistant response through live TTS. |
|
|
157
238
|
| `/undo` | Undo the last conversation turn. |
|
|
158
239
|
| `/unpin` | Unpin a model from the favorites list. |
|
|
159
|
-
| `/voice` | Review voice posture and
|
|
240
|
+
| `/voice` | Review voice posture and portable voice metadata. |
|
|
160
241
|
| `/welcome` | Open or print the Agent setup guide. |
|
|
161
242
|
| `/workplan` | Track a persistent workspace-scoped work plan. |
|
|
162
243
|
|
|
163
|
-
## Agent Knowledge
|
|
164
|
-
|
|
165
|
-
`/knowledge ask <query>` asks the isolated Agent Knowledge environment for a source-backed answer through `/api/goodvibes-agent/knowledge/ask`.
|
|
166
|
-
|
|
167
|
-
`/knowledge search <query>` searches the same isolated Agent environment through `/api/goodvibes-agent/knowledge/search`.
|
|
168
|
-
|
|
169
|
-
`/knowledge ingest-url <url> --yes` ingests into Agent Knowledge through `/api/goodvibes-agent/knowledge/ingest/url`. Knowledge ingestion, imports, issue review, reindex, and consolidation are Agent-owned mutations and require `--yes`.
|
|
170
|
-
|
|
171
|
-
The Knowledge workspace exposes status, source/node/issue libraries, item lookup, map review, connector list/detail/doctor, ask, search, and confirmed ingest forms. Scriptable equivalents such as `goodvibes-agent knowledge list --kind sources|nodes|issues`, `goodvibes-agent knowledge get <id>`, `goodvibes-agent knowledge map`, `goodvibes-agent knowledge connectors`, `goodvibes-agent knowledge connector <connectorId>`, and `goodvibes-agent knowledge connector-doctor <connectorId>` are read-only CLI inspection paths over the same isolated Agent route family.
|
|
172
|
-
|
|
173
|
-
Workspace ingest forms are the primary user workflow. Scriptable equivalents such as `goodvibes-agent knowledge import-urls <path> --yes`, `goodvibes-agent knowledge import-bookmarks <path> --yes`, and `goodvibes-agent knowledge reindex --yes` are confirmed Agent Knowledge maintenance paths. They call only `/api/goodvibes-agent/knowledge/*`.
|
|
174
|
-
|
|
175
|
-
The Agent command layer rejects flags that would route knowledge work into another space, including `--space`, `--knowledge-space`, `--knowledge-space-id`, and `--include-all-spaces`. If Agent Knowledge is unavailable, the command fails closed instead of querying a default store.
|
|
176
|
-
|
|
177
|
-
Successful Agent Knowledge responses are also checked for scope contamination. If a connected host returns default-scope metadata or known non-Agent payload markers, the CLI and `agent_knowledge` model tool return a `scope_contamination` error instead of formatting the payload as Agent Knowledge.
|
|
178
|
-
|
|
179
|
-
## Media Artifacts
|
|
180
|
-
|
|
181
|
-
Agent Workspace -> Voice & Media is the primary media path. Use `Generate media` for a confirmed form that calls configured media providers and stores outputs as GoodVibes artifacts.
|
|
182
|
-
|
|
183
|
-
`/media providers` lists media provider readiness. `/media generate [--provider <id>] [--model <id>] [--mime <mime>] <prompt> --yes` is the power-user mirror for confirmed image/video generation. Media generation output returns artifact ids and metadata; it does not print inline base64 and does not write to default knowledge or non-Agent knowledge segments.
|
|
184
|
-
|
|
185
|
-
## Planning
|
|
186
|
-
|
|
187
|
-
`/plan` inspects or seeds Agent workspace planning state. The planning loop belongs to the main Agent conversation: the Agent asks focused questions, records decisions and gaps, and keeps execution separate until the user gives an explicit action.
|
|
188
|
-
|
|
189
|
-
The SDK planning service may expose a namespace such as `project:<projectId>` because that is the stable contract shape. In Agent UI and docs this is treated as a planning namespace, not as permission to query default knowledge or another product knowledge segment.
|
|
190
|
-
|
|
191
|
-
Use `/workplan` when the work already has concrete tasks and needs durable status tracking rather than another planning interview.
|
|
192
|
-
|
|
193
|
-
## Delegation
|
|
194
|
-
|
|
195
|
-
`/delegate` is for explicit build, fix, review, or implementation work. It sends a single delegated request to GoodVibes TUI/shared-session routes with the original user ask and execution intent. Agent does not create coding-role Agent jobs and does not run delegated review by default.
|
|
196
|
-
|
|
197
|
-
Use `/delegate --review` only when the user explicitly asks for review or when the delegated build/fix/review request explicitly calls for review.
|
|
198
|
-
|
|
199
|
-
## Approvals And Automation
|
|
200
|
-
|
|
201
|
-
Approvals and automation are safe by default:
|
|
202
|
-
|
|
203
|
-
- list/status views are read-only;
|
|
204
|
-
- mutating routes require exact commands and explicit confirmation such as `--yes`;
|
|
205
|
-
- no chat turn silently runs approval, schedule, or automation mutations;
|
|
206
|
-
- unavailable routes return structured errors rather than fallback behavior.
|
|
207
|
-
|
|
208
|
-
Workspace forms are the primary path for approval and automation actions:
|
|
209
|
-
|
|
210
|
-
- Agent Workspace -> Work & Approvals -> Approve request / Deny request / Cancel request
|
|
211
|
-
- Agent Workspace -> Automation -> Run job now / Pause job / Resume job
|
|
212
|
-
- Agent Workspace -> Automation -> Cancel run / Retry run / Run schedule now
|
|
213
|
-
|
|
214
|
-
Power-user slash mirrors are exact and confirmation-gated:
|
|
215
|
-
|
|
216
|
-
- `/approval approve <approval-id> [--note <text>] [--remember|--no-remember] --yes`
|
|
217
|
-
- `/approval deny <approval-id> [--note <text>] [--remember|--no-remember] --yes`
|
|
218
|
-
- `/approval cancel <approval-id> [--note <text>] [--remember|--no-remember] --yes`
|
|
219
|
-
- `/automation job run <job-id> --yes`
|
|
220
|
-
- `/automation job pause <job-id> --yes`
|
|
221
|
-
- `/automation job resume <job-id> --yes`
|
|
222
|
-
- `/automation run cancel <run-id> --yes`
|
|
223
|
-
- `/automation run retry <run-id> --yes`
|
|
224
|
-
- `/automation schedule run <schedule-id> --yes`
|
|
225
|
-
- `/schedule run <schedule-id> --yes`
|
|
226
|
-
|
|
227
|
-
Routine promotion is an explicit scheduling bridge: local routines stay local during normal use, and promotion creates a schedule only after a user runs the exact command with `--yes`. The generated scheduled prompt keeps Agent Knowledge isolated and forbids default knowledge or non-Agent knowledge fallback. Delivery is opt-in with explicit flags such as `--delivery-channel`, `--delivery-route`, `--delivery-webhook`, or `--delivery-link`; no delivery target is inferred from chat.
|
|
228
|
-
|
|
229
|
-
## Channels
|
|
230
|
-
|
|
231
|
-
Agent Workspace -> Channels is the primary channel path. It shows readiness, setup, account, policy, and status views without rendering secret values. `Send channel message` opens a confirmed form for one delivery target.
|
|
232
|
-
|
|
233
|
-
`/channels send --channel <surface[:route[:label]]> --message <text> --yes` sends one explicit message through configured delivery strategies. `--route`, `--webhook`, and `--link` are alternate one-target forms. Channel sends do not create routes, authorize accounts, manage connected-host hosting, use default knowledge, use non-Agent knowledge segments, create separate Agent jobs, or run delegated review.
|
|
234
|
-
|
|
235
244
|
## Related Docs
|
|
236
245
|
|
|
237
|
-
- [Getting
|
|
238
|
-
- [Connected
|
|
239
|
-
- [Knowledge,
|
|
240
|
-
- [
|
|
246
|
+
- [Getting Started](getting-started.md)
|
|
247
|
+
- [Connected Host](connected-host.md)
|
|
248
|
+
- [Knowledge, Artifacts, and Multimodal](knowledge-artifacts-and-multimodal.md)
|
|
249
|
+
- [Channels, Remote Access, and API](channels-remote-and-api.md)
|
|
250
|
+
- [Release And Publishing](release-and-publishing.md)
|
|
@@ -20,7 +20,7 @@ GoodVibes Agent supports spoken turns as an Agent TUI feature. Text output remai
|
|
|
20
20
|
|
|
21
21
|
`/config tts` opens the fullscreen configuration workspace for streaming provider, voice, and spoken-turn model routing.
|
|
22
22
|
|
|
23
|
-
The model can inspect the same settings through `agent_harness` settings modes, open the visible TTS provider or voice picker through `open_ui_surface`, and change Agent-owned TTS settings with explicit confirmation. Connected-host listener or lifecycle settings remain outside Agent ownership.
|
|
23
|
+
The model can inspect the same settings through `agent_harness` settings modes, open the visible TTS provider or voice picker through `open_ui_surface`, and change Agent-owned TTS settings with explicit confirmation. `media_posture` is compact by default; use `includeParameters:true` or `media_provider` for full provider readiness, generation route hints, picker routes, and media policy detail. Connected-host listener or lifecycle settings remain outside Agent ownership.
|
|
24
24
|
|
|
25
25
|
## Playback Requirements
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-agent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
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",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"title": "Agent CLI version command",
|
|
24
24
|
"status": "pass",
|
|
25
25
|
"summary": "Agent CLI version returned successfully.",
|
|
26
|
-
"detail": "goodvibes-agent 1.0.
|
|
26
|
+
"detail": "goodvibes-agent 1.0.33"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"id": "cli-status-json",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"title": "Agent CLI compatibility JSON command",
|
|
38
38
|
"status": "pass",
|
|
39
39
|
"summary": "Agent CLI compatibility returned parseable JSON.",
|
|
40
|
-
"detail": "{\n \"ok\": true,\n \"packageVersion\": \"1.0.
|
|
40
|
+
"detail": "{\n \"ok\": true,\n \"packageVersion\": \"1.0.33\",\n \"sdkPin\": \"0.33.36\",\n \"connectedHost\": {\n \"baseUrl\": \"http://127.0.0.1:37210\",\n \"status\": 200,\n \"version\": \"0.33.36\",\n \"reachable\": true,\n \"compatible\": true\n },\n \"auth\": {\n \"tokenPresent\": true,\n \"tokenPath\": \"env:GOODVIBES_CONNECTED_HOST_TOKEN\"\n },\n \"agentKnowledge\": {\n \"route\": \"/api/goodvibes-agent/knowledge/status\",\n \"ready\": true,\n \"kind\": \"ok\"\n }\n}"
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
43
|
"id": "cli-agent-knowledge-status",
|
|
@@ -45,7 +45,7 @@ Connected host: `http://127.0.0.1:37210`
|
|
|
45
45
|
### Agent CLI version command
|
|
46
46
|
|
|
47
47
|
```text
|
|
48
|
-
goodvibes-agent 1.0.
|
|
48
|
+
goodvibes-agent 1.0.33
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
### Agent CLI status JSON command
|
|
@@ -59,7 +59,7 @@ Status JSON command completed; provider/model identifiers omitted from release a
|
|
|
59
59
|
```text
|
|
60
60
|
{
|
|
61
61
|
"ok": true,
|
|
62
|
-
"packageVersion": "1.0.
|
|
62
|
+
"packageVersion": "1.0.33",
|
|
63
63
|
"sdkPin": "0.33.36",
|
|
64
64
|
"connectedHost": {
|
|
65
65
|
"baseUrl": "http://127.0.0.1:37210",
|
package/release/release-notes.md
CHANGED
|
@@ -4,21 +4,12 @@
|
|
|
4
4
|
- Completed connected-host operator integration without taking host lifecycle ownership: compatibility/status checks, authenticated health and model routes, channel readiness, provider-account posture, approvals, automation snapshots, schedules, work plans, media/voice readiness, pairing, and explicit public-route diagnostics are all visible from Agent.
|
|
5
5
|
- Completed explicit side-effect boundaries for personal operation: channel sends, notifications, routine schedule promotion, reminders, subscription/auth actions, memory bundle imports/exports, support bundles, MCP configuration, profile changes, and build delegation require explicit confirmation where they mutate state or call external routes.
|
|
6
6
|
- Completed package and release hardening for the release gate: Bun-only install/run instructions, package-facing text verification, package runtime bundling, packed global install smoke, blocked lifecycle command smoke, source/package boundary checks, architecture checks, recorded performance snapshot checks, verification ledger, strict live verification artifacts, and release-quality readiness inventory dimensions are now part of the validated release path.
|
|
7
|
-
- Completed the model-visible
|
|
8
|
-
- Completed
|
|
9
|
-
- Completed
|
|
10
|
-
- Completed the model-
|
|
11
|
-
- Completed the
|
|
12
|
-
- Completed
|
|
13
|
-
- Completed the model-visible setup/onboarding surface: `agent_harness` can now list onboarding snapshot posture, derived setup capability flags, setup marker state, provider route, local behavior discovery, channel/media/setup signals, and inspect one setup item, while setup apply and imports stay visible user flows.
|
|
14
|
-
- Completed the model-visible provider/model routing surface: `agent_harness` can now list current model route posture, selectable models, provider ids, pinned models, reasoning support, context windows, safe route setting keys, and inspect one route or model, while route changes stay visible picker/settings/workspace/command flows.
|
|
15
|
-
- Completed the model-visible pairing surface: `agent_harness` can now list pairing endpoint binding, pairing surface id, token presence/fingerprint, route catalog, and inspect one pairing route without returning raw tokens or QR payloads.
|
|
16
|
-
- Completed the model-visible delegation posture surface: `agent_harness` can now list explicit build-delegation routes, runtime availability, delegated-review policy, main-conversation ownership, blocked local coding ownership, and inspect one delegation route, while delegated work submission stays a visible confirmed workspace or slash-command flow.
|
|
17
|
-
- Completed the model-visible security and support-bundle surface: `agent_harness` can now list redacted token, policy, MCP, plugin, incident, auth, and bundle posture, inspect one security finding, list support/auth/trust/subscription/voice bundle routes, and inspect existing bundle files by structure/counts/redaction metadata without returning raw config, token, or secret values.
|
|
18
|
-
- Completed the model-visible voice/media posture surface: `agent_harness` can now list voice and media provider readiness, inspect one provider, report selected TTS setup, browser-tool posture, artifact availability, and safe secret-key names, while media generation uses the confirmed first-class media tool.
|
|
19
|
-
- Completed the model-visible sessions/bookmarks surface: `agent_harness` can now list current session posture, saved-session metadata/search matches, bookmark counts, saved bookmark file counts, and inspect one saved session, while save/resume/export/delete/bookmark changes stay visible user flows.
|
|
20
|
-
- Completed the tool-description verbosity sweep: first-class model tool registration and schema descriptions are compact, and package verification now fails future oversized descriptions.
|
|
21
|
-
- Completed the `agent_harness` summary verbosity sweep: route hints now return concise mode names and confirmation rules instead of paragraph-length surface guidance.
|
|
7
|
+
- Completed the compact model-visible harness pass: `agent_harness` summary and plural catalogs now default to compact rows, with full schemas, policy blocks, route metadata, editor fields, release artifact detail, redacted log tail, and parameter detail behind `includeParameters:true` or singular inspect modes.
|
|
8
|
+
- Completed direct model access to user-facing harness operations: workspace actions, slash commands, settings, panels, UI surfaces, keybindings, tool catalogs, channel/notification posture, provider/account posture, MCP posture, setup, model routing, pairing, delegation, security/support bundles, media, sessions, operator methods, release evidence, and connected-host diagnostics are all exposed through Agent tools or harness modes.
|
|
9
|
+
- Completed connected-host daemon aliases for the model: `daemon` maps to connected-host posture and `daemon_status` maps to live connected-host status while lifecycle control stays outside Agent.
|
|
10
|
+
- Completed settings parity for the model-facing harness: settings discovery is compact by default, `get_setting` and `includeParameters:true` expose full descriptors, and `set_setting`/`reset_setting` use the same config/secret managers with confirmation and external-host setting locks.
|
|
11
|
+
- Completed the tool-description verbosity sweep: first-class Agent tools and wrapped built-in tool definitions now register concise descriptions, while detailed safety rules remain enforced in policy wrappers, confirmation errors, and detailed harness inspection.
|
|
12
|
+
- Completed copyable model route hint cleanup: confirmed harness examples now include the required `confirm:true` and `explicitUserRequest` fields so route hints match the actual execution contract.
|
|
22
13
|
- Completed resilient shortcut/keybinding discovery: `agent_harness` returns fixed shortcuts and default-fallback keybinding descriptors when the live keybinding manager is absent, while keybinding execution and mutation still fail closed until the runtime manager is available.
|
|
23
14
|
- Completed the model-visible operator method catalog: `agent_harness` can now list and inspect allowlisted public operator and Agent Knowledge methods with their owning first-class model tools, confirmation policy, and boundaries, without exposing arbitrary route invocation.
|
|
24
15
|
- Expanded first-class Agent Knowledge reads: `agent_knowledge` now covers status, ask, search, source/node/issue lists, item lookup, map summary, connector list/detail, and connector doctor while staying inside `/api/goodvibes-agent/knowledge/*`.
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
],
|
|
11
11
|
"stableLinePolicy": "Stable release lines must have zero blocker statuses before release.",
|
|
12
12
|
"sourceNaming": "Use neutral evidence aliases only.",
|
|
13
|
-
"qualityGate": "Release
|
|
13
|
+
"qualityGate": "Release quality means every listed capability has release-quality capability coverage, user access, model access, safety-boundary evidence, and release evidence.",
|
|
14
14
|
"requiredQualityDimensions": [
|
|
15
15
|
"capabilityCoverage",
|
|
16
16
|
"userAccess",
|
|
@@ -360,11 +360,11 @@
|
|
|
360
360
|
"evidence": "release/performance-snapshot.json; src/cli/package-verification.ts; scripts/release.ts; scripts/perf-check.ts; scripts/publish-check.ts; scripts/package-install-check.ts; .github/workflows/ci.yml",
|
|
361
361
|
"action": "Keep release validation centralized and package-facing docs aligned with Agent product boundaries.",
|
|
362
362
|
"quality": {
|
|
363
|
-
"capabilityCoverage": "Covers package identity, Bun-only install, runtime build, package docs, compact model tool
|
|
363
|
+
"capabilityCoverage": "Covers package identity, Bun-only install, runtime build, package docs, compact model tool and harness metadata policy, compiled binary smoke, pack/install smoke, publish checks, performance checks, and tarball policy.",
|
|
364
364
|
"userAccess": "The user receives one installable package with goodvibes-agent as the executable and package-facing docs included in the tarball.",
|
|
365
365
|
"modelAccess": "agent_harness exposes package-facing CLI mirror metadata and docs describe model routes so the assistant can operate installed surfaces instead of hidden nested processes.",
|
|
366
366
|
"safetyBoundary": "The package excludes tests, private verification internals, connected-host binaries, lifecycle ownership, and forbidden boundary paths.",
|
|
367
|
-
"releaseEvidence": "Shared package verification, compact model tool
|
|
367
|
+
"releaseEvidence": "Shared package verification, compact model tool/harness metadata checks, release scripts, performance snapshot, and release workflow policy keep the package gate required for every release."
|
|
368
368
|
}
|
|
369
369
|
},
|
|
370
370
|
{
|
|
@@ -384,7 +384,7 @@
|
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
"id": "release-readiness-inventory-gate",
|
|
387
|
-
"capability": "The release
|
|
387
|
+
"capability": "The release-quality inventory is staged with release metadata and blocks stable releases when unknown or gap entries remain.",
|
|
388
388
|
"owner": "release",
|
|
389
389
|
"status": "covered",
|
|
390
390
|
"evidence": "release/release-readiness.json; src/tools/agent-harness-release-evidence.ts; src/tools/agent-harness-release-readiness.ts; src/tools/agent-harness-tool.ts; src/cli/package-verification.ts; scripts/release.ts",
|