@pellux/goodvibes-agent 1.0.35 → 1.0.36
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 +15 -9
- package/README.md +8 -7
- package/dist/package/{ast-grep-napi.linux-x64-gnu-swtppvy9.node → ast-grep-napi.linux-x64-gnu-mkk8xwww.node} +0 -0
- package/dist/package/{ast-grep-napi.linux-x64-musl-ttfcdtap.node → ast-grep-napi.linux-x64-musl-ryqtgdv6.node} +0 -0
- package/dist/package/main.js +51504 -49337
- package/docs/README.md +6 -5
- package/docs/channels-remote-and-api.md +3 -3
- package/docs/connected-host.md +3 -3
- package/docs/getting-started.md +12 -7
- package/docs/knowledge-artifacts-and-multimodal.md +9 -4
- package/docs/project-planning.md +3 -3
- package/docs/providers-and-routing.md +2 -2
- package/docs/release-and-publishing.md +8 -8
- package/docs/tools-and-commands.md +31 -18
- package/docs/voice-and-live-tts.md +1 -1
- package/package.json +1 -1
- package/release/live-verification/live-verification.json +3 -3
- package/release/live-verification/live-verification.md +2 -4
- package/release/release-notes.md +4 -4
- package/release/release-readiness.json +46 -46
- package/src/agent/harness-control.ts +35 -9
- package/src/agent/reminder-schedule-format.ts +2 -5
- package/src/agent/reminder-schedule.ts +4 -11
- package/src/agent/routine-schedule-format.ts +3 -6
- package/src/agent/routine-schedule-promotion.ts +5 -14
- package/src/agent/routine-schedule-receipts.ts +4 -9
- package/src/cli/agent-knowledge-command.ts +6 -11
- package/src/cli/agent-knowledge-format.ts +4 -9
- package/src/cli/agent-knowledge-runtime.ts +7 -14
- package/src/cli/external-runtime.ts +3 -46
- package/src/cli/help.ts +2 -2
- package/src/cli/status.ts +6 -7
- package/src/input/agent-workspace-categories.ts +23 -23
- package/src/input/agent-workspace-channels.ts +3 -3
- package/src/input/agent-workspace-operations-command-editors.ts +1 -1
- package/src/input/command-registry.ts +1 -1
- package/src/input/commands/compat-runtime.ts +1 -1
- package/src/input/commands/planning-runtime.ts +1 -1
- package/src/input/commands/runtime-services.ts +1 -1
- package/src/input/mcp-workspace.ts +1 -1
- package/src/input/submission-router.ts +1 -1
- package/src/panels/builtin/shared.ts +1 -1
- package/src/panels/project-planning-panel.ts +4 -4
- package/src/panels/qr-panel.ts +2 -2
- package/src/renderer/conversation-overlays.ts +1 -0
- package/src/runtime/bootstrap-command-parts.ts +1 -1
- package/src/runtime/bootstrap-core.ts +1 -1
- package/src/runtime/bootstrap-hook-bridge.ts +1 -1
- package/src/runtime/bootstrap-shell.ts +1 -1
- package/src/runtime/bootstrap.ts +5 -4
- package/src/runtime/context.ts +2 -2
- package/src/runtime/index.ts +88 -5
- package/src/runtime/store/state.ts +1 -1
- package/src/tools/agent-channel-send-tool.ts +1 -1
- package/src/tools/agent-harness-channel-metadata.ts +36 -25
- package/src/tools/agent-harness-cli-metadata.ts +19 -1
- package/src/tools/agent-harness-command-catalog.ts +15 -4
- package/src/tools/agent-harness-connected-host-status.ts +7 -6
- package/src/tools/agent-harness-delegation-posture.ts +15 -4
- package/src/tools/agent-harness-keybinding-metadata.ts +67 -16
- package/src/tools/agent-harness-mcp-metadata.ts +11 -3
- package/src/tools/agent-harness-media-posture.ts +25 -14
- package/src/tools/agent-harness-metadata.ts +97 -6
- package/src/tools/agent-harness-mode-catalog.ts +81 -28
- package/src/tools/agent-harness-model-routing.ts +18 -3
- package/src/tools/agent-harness-model-tool-catalog.ts +85 -7
- package/src/tools/agent-harness-notification-metadata.ts +30 -19
- package/src/tools/agent-harness-operator-methods.ts +13 -8
- package/src/tools/agent-harness-pairing-posture.ts +17 -5
- package/src/tools/agent-harness-panel-metadata.ts +10 -4
- package/src/tools/agent-harness-provider-account-metadata.ts +46 -35
- package/src/tools/agent-harness-release-evidence.ts +31 -3
- package/src/tools/agent-harness-release-readiness.ts +30 -0
- package/src/tools/agent-harness-security-posture.ts +18 -4
- package/src/tools/agent-harness-service-posture.ts +8 -1
- package/src/tools/agent-harness-session-metadata.ts +24 -8
- package/src/tools/agent-harness-setup-posture.ts +32 -21
- package/src/tools/agent-harness-text.ts +6 -0
- package/src/tools/agent-harness-tool.ts +26 -34
- package/src/tools/agent-harness-ui-surface-metadata.ts +84 -84
- package/src/tools/agent-harness-workspace-actions.ts +64 -3
- package/src/tools/agent-knowledge-ingest-tool.ts +1 -1
- package/src/tools/agent-knowledge-tool.ts +1 -1
- package/src/tools/agent-media-generate-tool.ts +2 -2
- package/src/tools/agent-notify-tool.ts +1 -1
- package/src/tools/agent-reminder-schedule-tool.ts +1 -1
- package/src/tools/tool-definition-compaction.ts +35 -8
- package/src/version.ts +2 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Product-facing release notes for GoodVibes Agent.
|
|
4
4
|
|
|
5
|
+
## 1.0.36 - 2026-06-04
|
|
6
|
+
|
|
7
|
+
- Workspace navigation now uses distinct category group names instead of repeated setup headings.
|
|
8
|
+
- Onboarding now owns the full terminal viewport and blocks composer-adjacent overlays while setup is active.
|
|
9
|
+
- Onboarding renderer coverage now guards the bottom row so the setup flow cannot leave the input area visually available.
|
|
10
|
+
|
|
5
11
|
## 1.0.35 - 2026-06-04
|
|
6
12
|
|
|
7
13
|
- Added searchable `agent_harness` mode discovery: `mode:"modes"` searches every harness mode by task, family, effect type, id, alias, and parameter name, while `mode:"mode"` inspects one mode contract.
|
|
@@ -20,7 +26,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
20
26
|
- 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.
|
|
21
27
|
- 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.
|
|
22
28
|
- 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.
|
|
23
|
-
- Completed direct model access to
|
|
29
|
+
- Completed direct model access to Agent 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, and connected-host diagnostics are exposed through Agent tools or harness modes; packaged release evidence remains model-inspectable as operator/audit material.
|
|
24
30
|
- 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.
|
|
25
31
|
- 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.
|
|
26
32
|
- 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.
|
|
@@ -30,17 +36,17 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
30
36
|
- 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/*`.
|
|
31
37
|
- Added fail-closed Agent Knowledge response-scope validation: CLI, model tools, and live verification reject successful-looking payloads that expose default scope metadata or known non-Agent payload markers.
|
|
32
38
|
- Expanded release-route enforcement for Agent Knowledge: architecture/package policy now guards the full route catalog, and live verification definitions include source, node, issue, map, and connector read routes in addition to status, ask, and search.
|
|
33
|
-
-
|
|
39
|
+
- Verified the release line against connected-host public Agent routes for Agent Knowledge alias scope normalization and telephony channel surface support.
|
|
34
40
|
- Renamed active release evidence artifacts to current-release paths under `release/`, including release notes, readiness inventory, performance snapshot, and live-verification reports, so current release metadata no longer depends on stale historical filenames.
|
|
35
41
|
|
|
36
42
|
## 1.0.33 - 2026-06-04
|
|
37
43
|
|
|
38
|
-
- Fixed the release lockfile so frozen CI installs resolve
|
|
44
|
+
- Fixed the release lockfile so frozen CI installs resolve the published connected-host route dependency graph.
|
|
39
45
|
- Carries forward the 1.0.32 model-facing harness coverage, compact tool catalog, keybinding discovery fallback, and connected-host release evidence.
|
|
40
46
|
|
|
41
47
|
## 1.0.32 - 2026-06-04
|
|
42
48
|
|
|
43
|
-
-
|
|
49
|
+
- Align the Agent release line with connected-host public route support for Agent Knowledge alias scope normalization and telephony channel surface support.
|
|
44
50
|
- Refresh release readiness evidence to match the current strict live verification run: 19 pass, 0 warn, 0 fail, 0 skip.
|
|
45
51
|
- Treat environment-provisioned connected-host operator tokens as first-class status, doctor, auth, pairing, Agent Knowledge, and model-visible connected-host credentials.
|
|
46
52
|
- Expose channel readiness through `agent_harness` with summary/search and single-channel lookup so the model can inspect setup state, delivery posture, risk labels, and safe config-key names before using the explicit confirmed send tool.
|
|
@@ -89,7 +95,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
89
95
|
## 1.0.28 - 2026-06-03
|
|
90
96
|
|
|
91
97
|
- Expose modelExecution metadata for every Agent workspace editor action, including local-registry, command-backed, direct local-create, profile, and prompt-returning editor flows.
|
|
92
|
-
- Return editor execution-route metadata in workspace action handoffs so the model can complete forms without guessing the
|
|
98
|
+
- Return editor execution-route metadata in workspace action handoffs so the model can complete forms without guessing the route.
|
|
93
99
|
- Refresh 1.0.x package docs and focused harness coverage for workspace editor execution parity.
|
|
94
100
|
|
|
95
101
|
## 1.0.27 - 2026-06-03
|
|
@@ -100,7 +106,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
100
106
|
|
|
101
107
|
## 1.0.26 - 2026-06-03
|
|
102
108
|
|
|
103
|
-
- Route confirmed agent_harness panel-close and panel-close-all keybinding runs through the same Agent workspace dismiss
|
|
109
|
+
- Route confirmed agent_harness panel-close and panel-close-all keybinding runs through the same Agent workspace dismiss route as the user shortcut before falling back to panel close handling.
|
|
104
110
|
- Refresh model-operation metadata for panel close keybindings so supported keybinding behavior matches visible shell behavior.
|
|
105
111
|
- Add focused harness coverage for model-triggered Agent workspace dismissal.
|
|
106
112
|
|
|
@@ -205,7 +211,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
205
211
|
## 1.0.8 - 2026-06-03
|
|
206
212
|
|
|
207
213
|
- Added model-visible UI surface entries for the panel-picker compatibility route and the security, knowledge, and subscription operator surfaces.
|
|
208
|
-
- Routed those named operator surfaces through Agent Workspace or the existing panel
|
|
214
|
+
- Routed those named operator surfaces through Agent Workspace or the existing panel route with confirmation.
|
|
209
215
|
- Updated package-facing docs and focused harness coverage so the documented 1.0.x model-visible surface map matches the TUI routes.
|
|
210
216
|
|
|
211
217
|
## 1.0.7 - 2026-06-03
|
|
@@ -215,7 +221,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
215
221
|
|
|
216
222
|
## 1.0.6 - 2026-06-03
|
|
217
223
|
|
|
218
|
-
- Added agent_harness mode connected_host_status for live read-only connected-host readiness: status-route reachability,
|
|
224
|
+
- Added agent_harness mode connected_host_status for live read-only connected-host readiness: status-route reachability, host compatibility, token posture, endpoint bindings, Agent Knowledge route readiness, findings, and lifecycle boundaries.
|
|
219
225
|
- Documented the new model-visible connected-host readiness surface and added focused harness coverage proving the raw operator token is not exposed.
|
|
220
226
|
|
|
221
227
|
## 1.0.5 - 2026-06-03
|
|
@@ -233,7 +239,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
233
239
|
## 1.0.3 - 2026-06-03
|
|
234
240
|
|
|
235
241
|
- Model-visible harness discovery now includes top-level CLI mirrors with parser output, blocked command tokens, redacted launch overrides, and preferred in-process routes.
|
|
236
|
-
- Model-visible harness discovery now includes built-in panel catalog/open-state inspection plus confirmation-gated visible panel routing through the Agent
|
|
242
|
+
- Model-visible harness discovery now includes built-in panel catalog/open-state inspection plus confirmation-gated visible panel routing through the Agent operator surface.
|
|
237
243
|
- Harness metadata was split into focused catalog helpers to keep architecture boundaries and source-size limits intact.
|
|
238
244
|
- Documentation now describes CLI mirror and panel harness visibility, including the no-hidden-CLI-process and connected-host boundary rules.
|
|
239
245
|
|
package/README.md
CHANGED
|
@@ -65,9 +65,9 @@ Press `/` inside the workspace to search actions by name, category, command, or
|
|
|
65
65
|
|
|
66
66
|
## Model-Visible Harness
|
|
67
67
|
|
|
68
|
-
The main Agent model can inspect and operate the
|
|
68
|
+
The main Agent model can inspect and operate the Agent-controlled harness through Agent-owned tools. The important entrypoint is `agent_harness`.
|
|
69
69
|
|
|
70
|
-
`agent_harness mode:"summary"` is compact by default. It returns counts, status, and a short mode guide. `mode:"modes"` searches every harness mode by task, family, effect type, id, alias, or parameter name; `mode:"mode"` inspects one mode contract. Plural catalog modes are also compact by default: they return ids, labels, counts, safe state, and route hints. Use `includeParameters:true` or a singular inspect mode when the model needs schemas, detailed route hints, full policy blocks, redacted log tail,
|
|
70
|
+
`agent_harness mode:"summary"` is compact by default. It returns counts, status, and a short mode guide. `mode:"modes"` searches every harness mode by task, family, effect type, id, alias, or parameter name; `mode:"mode"` inspects one mode contract. Plural catalog modes are also compact by default: they return ids, labels, counts, safe state, effect class, and short route hints. `workspace_actions`, `commands`, `cli_commands`, `panels`, `ui_surfaces`, `shortcuts`, `keybindings`, `tools`, `settings`, connected-host posture/status/capability, and operator/audit rows include compact `modelRoute` or `modelAccess` hints so the model can choose the right first-class tool or confirmed harness route without expanding every row. Use `includeParameters:true` or a singular inspect mode when the model needs schemas, detailed route hints, full policy blocks, redacted log tail, operator/audit artifact data, or editor field definitions.
|
|
71
71
|
|
|
72
72
|
High-value `agent_harness` mode groups:
|
|
73
73
|
|
|
@@ -76,7 +76,7 @@ High-value `agent_harness` mode groups:
|
|
|
76
76
|
- User-visible effects: `run_workspace_action`, `run_command`, `open_panel`, `open_ui_surface`, `run_keybinding`, `set_keybinding`, `reset_keybinding`, `set_setting`, `reset_setting`.
|
|
77
77
|
- Product posture: `channels`, `notifications`, `provider_accounts`, `mcp_servers`, `setup_posture`, `model_routing`, `pairing_posture`, `delegation_posture`, `security_posture`, `support_bundles`, `media_posture`, `sessions`.
|
|
78
78
|
- Connected host: `service_posture`, `service_endpoint`, `connected_host`, `connected_host_status`, `connected_host_capability`; `daemon` and `daemon_status` are aliases for connected-host posture/status.
|
|
79
|
-
-
|
|
79
|
+
- Operator/audit inspection: `release_evidence`, `release_evidence_artifact`, `release_readiness`, `release_readiness_item`.
|
|
80
80
|
- Operator methods: `operator_methods`, `operator_method`.
|
|
81
81
|
|
|
82
82
|
Every mutating or externally visible effect requires `confirm:true` plus `explicitUserRequest` unless a narrower first-class tool has its own confirmation contract. Ambiguous lookups return candidates instead of guessing.
|
|
@@ -89,7 +89,7 @@ First-class model tools cover common workflows directly:
|
|
|
89
89
|
- `agent_operator_briefing` and `agent_operator_action` for connected work/approval/automation/schedule posture and exact confirmed actions.
|
|
90
90
|
- `agent_channel_send`, `agent_notify`, `agent_reminder_schedule`, and `agent_media_generate` for confirmed delivery, notification, reminder, and media generation.
|
|
91
91
|
|
|
92
|
-
Registered model tool definitions are compact by default. Top-level descriptions are short,
|
|
92
|
+
Registered model tool definitions are compact by default. Top-level descriptions are short, nested parameter descriptions are omitted from the default model catalog, and tool catalog rows include direct harness inspection routes. The model can inspect detailed contracts through `agent_harness mode:"tools"` with `includeParameters:true`, `mode:"tool"`, or the owning harness mode.
|
|
93
93
|
|
|
94
94
|
## Local Behavior
|
|
95
95
|
|
|
@@ -116,7 +116,7 @@ Agent Knowledge is its own product segment. Agent uses only:
|
|
|
116
116
|
|
|
117
117
|
Agent does not fall back to default knowledge or other product-specific knowledge routes. Successful connected-host responses are checked for scope contamination before rendering.
|
|
118
118
|
|
|
119
|
-
The Knowledge workspace and model tools support status, ask/search, source/node/issue lists, item lookup, map review, connector inspection, URL/file/URL-list/bookmark/browser-history/connector ingest, review queue, and reindex.
|
|
119
|
+
The Knowledge workspace and model tools support status, ask/search, source/node/issue lists, item lookup, map review, connector inspection, URL/file/URL-list/bookmark/browser-history/connector ingest, issue review, prompt packet/explain previews, consolidation, review queue, and reindex.
|
|
120
120
|
|
|
121
121
|
Artifacts are first-class runtime objects for uploaded files, generated media, and delegated outputs. Generated media is stored as GoodVibes artifacts and reported by artifact id and metadata, not inline base64.
|
|
122
122
|
|
|
@@ -135,8 +135,8 @@ Agent reports unavailable, unauthenticated, or incompatible host state from Agen
|
|
|
135
135
|
Model-visible diagnostics are read-only:
|
|
136
136
|
|
|
137
137
|
- `service_posture` and `service_endpoint` expose endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
|
|
138
|
-
- `connected_host` and `daemon` are compact posture maps by default; `includeParameters:true` adds route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability. `connected_host_capability` inspects one capability.
|
|
139
|
-
- `connected_host_status` and `daemon_status` run live readiness checks for host status,
|
|
138
|
+
- `connected_host` and `daemon` are compact posture maps by default with direct `modelRoute` hints; `includeParameters:true` adds route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability. `connected_host_capability` inspects one capability and returns the matching allowed or blocked route hint.
|
|
139
|
+
- `connected_host_status` and `daemon_status` run live readiness checks for host status, host compatibility, token posture, endpoint binding, isolated Agent Knowledge readiness, and the model route to inspect or act on findings.
|
|
140
140
|
|
|
141
141
|
Host lifecycle stays outside GoodVibes Agent.
|
|
142
142
|
|
|
@@ -148,6 +148,7 @@ GoodVibes TUI owns coding execution: file edits, git/worktree workflows, coding
|
|
|
148
148
|
|
|
149
149
|
## Package Docs
|
|
150
150
|
|
|
151
|
+
- [Docs Index](docs/README.md)
|
|
151
152
|
- [Getting Started](docs/getting-started.md)
|
|
152
153
|
- [Connected Host](docs/connected-host.md)
|
|
153
154
|
- [Knowledge, Artifacts, and Multimodal](docs/knowledge-artifacts-and-multimodal.md)
|
|
Binary file
|