@pellux/goodvibes-agent 1.0.35 → 1.0.37

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.
Files changed (89) hide show
  1. package/CHANGELOG.md +20 -9
  2. package/README.md +8 -7
  3. package/dist/package/{ast-grep-napi.linux-x64-gnu-swtppvy9.node → ast-grep-napi.linux-x64-gnu-mkk8xwww.node} +0 -0
  4. package/dist/package/{ast-grep-napi.linux-x64-musl-ttfcdtap.node → ast-grep-napi.linux-x64-musl-ryqtgdv6.node} +0 -0
  5. package/dist/package/main.js +51495 -49329
  6. package/docs/README.md +6 -5
  7. package/docs/channels-remote-and-api.md +3 -3
  8. package/docs/connected-host.md +3 -3
  9. package/docs/getting-started.md +12 -7
  10. package/docs/knowledge-artifacts-and-multimodal.md +9 -4
  11. package/docs/project-planning.md +3 -3
  12. package/docs/providers-and-routing.md +2 -2
  13. package/docs/release-and-publishing.md +8 -8
  14. package/docs/tools-and-commands.md +31 -18
  15. package/docs/voice-and-live-tts.md +1 -1
  16. package/package.json +1 -1
  17. package/release/live-verification/live-verification.json +3 -3
  18. package/release/live-verification/live-verification.md +2 -4
  19. package/release/release-notes.md +4 -4
  20. package/release/release-readiness.json +46 -46
  21. package/src/agent/harness-control.ts +35 -9
  22. package/src/agent/reminder-schedule-format.ts +2 -5
  23. package/src/agent/reminder-schedule.ts +4 -11
  24. package/src/agent/routine-schedule-format.ts +3 -6
  25. package/src/agent/routine-schedule-promotion.ts +5 -14
  26. package/src/agent/routine-schedule-receipts.ts +4 -9
  27. package/src/cli/agent-knowledge-command.ts +6 -11
  28. package/src/cli/agent-knowledge-format.ts +4 -9
  29. package/src/cli/agent-knowledge-runtime.ts +7 -14
  30. package/src/cli/external-runtime.ts +3 -46
  31. package/src/cli/help.ts +2 -2
  32. package/src/cli/status.ts +6 -7
  33. package/src/input/agent-workspace-categories.ts +23 -23
  34. package/src/input/agent-workspace-channels.ts +3 -3
  35. package/src/input/agent-workspace-operations-command-editors.ts +1 -1
  36. package/src/input/command-registry.ts +1 -1
  37. package/src/input/commands/compat-runtime.ts +1 -1
  38. package/src/input/commands/planning-runtime.ts +1 -1
  39. package/src/input/commands/runtime-services.ts +1 -1
  40. package/src/input/mcp-workspace.ts +1 -1
  41. package/src/input/submission-router.ts +1 -1
  42. package/src/panels/builtin/shared.ts +1 -1
  43. package/src/panels/project-planning-panel.ts +4 -4
  44. package/src/panels/qr-panel.ts +2 -2
  45. package/src/renderer/conversation-overlays.ts +1 -0
  46. package/src/renderer/onboarding/onboarding-wizard.ts +1 -2
  47. package/src/runtime/bootstrap-command-parts.ts +1 -1
  48. package/src/runtime/bootstrap-core.ts +1 -1
  49. package/src/runtime/bootstrap-hook-bridge.ts +1 -1
  50. package/src/runtime/bootstrap-shell.ts +1 -1
  51. package/src/runtime/bootstrap.ts +5 -4
  52. package/src/runtime/context.ts +2 -2
  53. package/src/runtime/index.ts +88 -5
  54. package/src/runtime/store/state.ts +1 -1
  55. package/src/tools/agent-channel-send-tool.ts +1 -1
  56. package/src/tools/agent-harness-channel-metadata.ts +36 -25
  57. package/src/tools/agent-harness-cli-metadata.ts +19 -1
  58. package/src/tools/agent-harness-command-catalog.ts +15 -4
  59. package/src/tools/agent-harness-connected-host-status.ts +7 -6
  60. package/src/tools/agent-harness-delegation-posture.ts +15 -4
  61. package/src/tools/agent-harness-keybinding-metadata.ts +67 -16
  62. package/src/tools/agent-harness-mcp-metadata.ts +11 -3
  63. package/src/tools/agent-harness-media-posture.ts +25 -14
  64. package/src/tools/agent-harness-metadata.ts +97 -6
  65. package/src/tools/agent-harness-mode-catalog.ts +81 -28
  66. package/src/tools/agent-harness-model-routing.ts +18 -3
  67. package/src/tools/agent-harness-model-tool-catalog.ts +85 -7
  68. package/src/tools/agent-harness-notification-metadata.ts +30 -19
  69. package/src/tools/agent-harness-operator-methods.ts +13 -8
  70. package/src/tools/agent-harness-pairing-posture.ts +17 -5
  71. package/src/tools/agent-harness-panel-metadata.ts +10 -4
  72. package/src/tools/agent-harness-provider-account-metadata.ts +46 -35
  73. package/src/tools/agent-harness-release-evidence.ts +31 -3
  74. package/src/tools/agent-harness-release-readiness.ts +30 -0
  75. package/src/tools/agent-harness-security-posture.ts +18 -4
  76. package/src/tools/agent-harness-service-posture.ts +8 -1
  77. package/src/tools/agent-harness-session-metadata.ts +24 -8
  78. package/src/tools/agent-harness-setup-posture.ts +32 -21
  79. package/src/tools/agent-harness-text.ts +6 -0
  80. package/src/tools/agent-harness-tool.ts +26 -34
  81. package/src/tools/agent-harness-ui-surface-metadata.ts +84 -84
  82. package/src/tools/agent-harness-workspace-actions.ts +64 -3
  83. package/src/tools/agent-knowledge-ingest-tool.ts +1 -1
  84. package/src/tools/agent-knowledge-tool.ts +1 -1
  85. package/src/tools/agent-media-generate-tool.ts +2 -2
  86. package/src/tools/agent-notify-tool.ts +1 -1
  87. package/src/tools/agent-reminder-schedule-tool.ts +1 -1
  88. package/src/tools/tool-definition-compaction.ts +35 -8
  89. package/src/version.ts +2 -8
package/docs/README.md CHANGED
@@ -4,6 +4,7 @@ These are the package-facing docs for the GoodVibes Agent `1.0.x` release line.
4
4
 
5
5
  ## Current Docs
6
6
 
7
+ - [Docs Index](README.md)
7
8
  - [Getting Started](getting-started.md)
8
9
  - [Connected Host](connected-host.md)
9
10
  - [Knowledge, Artifacts, and Multimodal](knowledge-artifacts-and-multimodal.md)
@@ -18,8 +19,8 @@ These are the package-facing docs for the GoodVibes Agent `1.0.x` release line.
18
19
 
19
20
  - Package executable: `goodvibes-agent`.
20
21
  - Install/runtime: Bun `1.3.10` or newer.
21
- - Current Agent version: `package.json`.
22
- - SDK pin: exact `@pellux/goodvibes-sdk@0.33.36` version in `package.json`.
22
+ - Agent version source: exact `package.json` semver, kept in sync with `CHANGELOG.md` and `src/version.ts` during release.
23
+ - Connected-host compatibility: public Agent routes report readiness through the `compat` and `status` CLI commands plus `connected_host_status`.
23
24
  - Connected host: owned outside Agent; Agent reports and uses it but does not manage lifecycle.
24
25
  - Agent Knowledge: only `/api/goodvibes-agent/knowledge/*`; no default knowledge fallback.
25
26
  - Local state: memory, notes, personas, skills, routines, sessions, setup, and profiles live under the Agent home.
@@ -27,13 +28,13 @@ These are the package-facing docs for the GoodVibes Agent `1.0.x` release line.
27
28
 
28
29
  ## Model Access Baseline
29
30
 
30
- Agent-owned model tools expose the same user-facing harness surfaces:
31
+ Agent-owned model tools expose Agent-controlled product surfaces plus operator/audit inspection routes:
31
32
 
32
- - `agent_harness` for searchable mode discovery, workspace actions, slash commands, settings, panels, UI surfaces, keybindings, tool schemas, service/daemon posture, connected-host capability/status, release evidence, and posture catalogs.
33
+ - `agent_harness` for searchable mode discovery, workspace actions, slash commands, settings, panels, UI surfaces, keybindings, tool schemas, service/daemon posture, connected-host capability/status, posture catalogs, and operator/audit release artifact inspection.
33
34
  - `agent_knowledge` and `agent_knowledge_ingest` for isolated Agent Knowledge.
34
35
  - `agent_local_registry` for Agent-local memory, notes, personas, skills, bundles, and routines.
35
36
  - `agent_work_plan` for visible local work-plan state.
36
37
  - `agent_operator_briefing` and `agent_operator_action` for public connected operator state and exact confirmed actions.
37
38
  - `agent_channel_send`, `agent_notify`, `agent_reminder_schedule`, and `agent_media_generate` for explicit confirmed effects.
38
39
 
39
- Catalog modes are compact by default. `agent_harness mode:"modes"` searches all harness modes; `mode:"mode"` inspects one mode contract. Detailed schemas, route hints, redacted log tail, release artifact data, and editor fields require `includeParameters:true` or a singular inspect mode. Registered tool definitions use short top-level descriptions and omit nested parameter descriptions from the default model catalog. Mutations, external delivery, UI routing, keybinding changes, setting writes, local destructive actions, media generation, reminders, and connected-host operator actions remain confirmation-gated and refuse ambiguous lookup.
40
+ Catalog modes are compact by default. `agent_harness mode:"modes"` searches all harness modes; `mode:"mode"` inspects one mode contract. Plural catalog rows keep summaries short and expose effect class, `modelRoute`, or `modelAccess` hints where the model needs an immediate route decision. Detailed schemas, route hints, redacted log tail, release artifact data, and editor fields require `includeParameters:true` or a singular inspect mode. The slash-command and CLI catalogs mirror every registered built-in command with policy and preferred model route metadata available to the model. Keybinding and fixed-shortcut rows identify direct model routes versus direct-user-only controls. Registered tool definitions use short top-level descriptions, omit nested parameter descriptions from the default model catalog, and carry direct harness inspection routes. Mutations, external delivery, UI routing, keybinding changes, setting writes, local destructive actions, media generation, reminders, and connected-host operator actions remain confirmation-gated and refuse ambiguous lookup.
@@ -19,9 +19,9 @@ Agent-local memory, routines, skills, and personas are not automatically broadca
19
19
 
20
20
  The model can inspect pairing posture with `agent_harness` mode `pairing_posture`, and inspect one pairing route with mode `pairing_route` using `pairingRouteId`, `target`, or `query`. Those pairing modes return endpoint binding, pairing surface id, route catalog, and token fingerprint only; raw tokens and QR payloads are never returned by the read-only posture modes. QR display, manual token display, companion connection, channel delivery, task, approval, provider/model, and attachment actions stay visible user flows.
21
21
 
22
- The model can inspect channel-facing workspace actions with `agent_harness`, list the structured channel readiness map with `agent_harness` mode `channels`, and inspect one channel with mode `channel` using `channelId`, `target`, or `query`. Channel discovery is compact by default. Use `includeParameters:true` or single-channel inspection when the model needs delivery target shape, read-only connected-route hints, or full route metadata. These modes are read-only: they return setup state, delivery posture, risk labels, safe config-key names, and default-target key names without printing secret values or sending messages. The model can send one explicit configured delivery through `agent_channel_send` only when the user asks for that exact effect. It must not create routes, authorize accounts, infer recipients, or expose new public surfaces from chat.
22
+ The model can inspect channel-facing workspace actions with `agent_harness`, list the structured channel readiness map with `agent_harness` mode `channels`, and inspect one channel with mode `channel` using `channelId`, `target`, or `query`. Channel discovery is compact by default, and `workspace_actions` rows include `modelRoute` hints for send/setup actions. Use `includeParameters:true` or single-channel inspection when the model needs delivery target shape, read-only connected-route hints, or full route metadata. These modes are read-only: they return setup state, delivery posture, risk labels, safe config-key names, and default-target key names without printing secret values or sending messages. The model can send one explicit configured delivery through `agent_channel_send` only when the user asks for that exact effect. It must not create routes, authorize accounts, infer recipients, or expose new public surfaces from chat.
23
23
 
24
- The model can inspect configured notification target posture with `agent_harness` mode `notifications`, and inspect one redacted target with mode `notification_target` using `notificationTargetId`, `target`, or `query`. Notification discovery is compact by default. Use `includeParameters:true` or single-target inspection when management route hints are needed. These modes return target count, validity, protocol/host posture, and fingerprints, but not full webhook URLs. Use `agent_notify` for one explicit confirmed notification. Use confirmed `/notify` mirrors for target management only when the user supplies the exact add/remove/clear/test intent.
24
+ The model can inspect configured notification target posture with `agent_harness` mode `notifications`, and inspect one redacted target with mode `notification_target` using `notificationTargetId`, `target`, or `query`. Notification discovery is compact by default, while `workspace_actions` distinguishes direct `agent_notify` sends/tests from confirmed workspace routes for add/remove/clear management. Use `includeParameters:true` or single-target inspection when management route hints are needed. These modes return target count, validity, protocol/host posture, and fingerprints, but not full webhook URLs. Use `agent_notify` for one explicit confirmed notification. Use confirmed `/notify` mirrors for target management only when the user supplies the exact add/remove/clear/test intent.
25
25
 
26
26
  ## Companion And Session Routes
27
27
 
@@ -41,7 +41,7 @@ Agent should not start remote build hosts, manage peer lifecycle, or fan out sep
41
41
 
42
42
  ## Public API Use
43
43
 
44
- Use public SDK/operator routes only. For Agent Knowledge, the only valid family is:
44
+ Use public connected-host/operator routes only. For Agent Knowledge, the only valid family is:
45
45
 
46
46
  ```text
47
47
  /api/goodvibes-agent/knowledge/*
@@ -53,7 +53,7 @@ export GOODVIBES_AGENT_RUNTIME_URL=http://127.0.0.1:3421
53
53
 
54
54
  `GOODVIBES_AGENT_BASE_URL` is accepted as a legacy alias. These values only select the connected GoodVibes API root; they do not make Agent own host processes.
55
55
 
56
- If the connected host is unavailable, unauthenticated, or on an incompatible SDK version, the Agent TUI reports actionable diagnostics without printing token values.
56
+ If the connected host is unavailable, unauthenticated, or incompatible with Agent, the Agent TUI reports actionable diagnostics without printing token values.
57
57
 
58
58
  Use the TUI first for those checks:
59
59
 
@@ -69,13 +69,13 @@ Agent owns the operator assistant TUI, local profiles, local memory/notes/routin
69
69
 
70
70
  Agent does not own connected-host lifecycle. It does not provide commands to install, expose, start, stop, restart, or mutate the connected GoodVibes host.
71
71
 
72
- The model can inspect this boundary with `agent_harness` mode `connected_host`. `daemon` is an alias for the same posture report. By default the report is compact: configured base URL, token posture, ownership, mode hints, and capability counts. Use `includeParameters:true` for full route families, allowed capabilities, blocked capabilities, and first-class Agent tool availability. Allowed capabilities include read-only operator briefing, explicit allowlisted approval/automation/schedule actions, isolated Agent Knowledge read/ingest, confirmed channel or notification delivery, confirmed reminder schedules, and configured media generation. Blocked capabilities include connected-host lifecycle, listener mutation, default or non-Agent knowledge fallback, hidden background Agent jobs, implicit delegated review, route/account creation, and arbitrary connected-host mutations. To inspect one surface without parsing the full report, use `connected_host_capability` with `capabilityId`, `target`, or `query`.
72
+ The model can inspect this boundary with `agent_harness` mode `connected_host`. `daemon` is an alias for the same posture report. By default the report is compact: configured base URL, token posture, ownership, mode hints, capability counts, and a short `modelRoute` for the next safe Agent-owned route. Use `includeParameters:true` for full route families, allowed capabilities, blocked capabilities, and first-class Agent tool availability; those expanded rows also carry compact `modelRoute` hints. Allowed capabilities include read-only operator briefing, explicit allowlisted approval/automation/schedule actions, isolated Agent Knowledge read/ingest, confirmed channel or notification delivery, confirmed reminder schedules, and configured media generation. Blocked capabilities include connected-host lifecycle, listener mutation, default or non-Agent knowledge fallback, hidden background Agent jobs, implicit delegated review, route/account creation, and arbitrary connected-host mutations. To inspect one surface without parsing the full report, use `connected_host_capability` with `capabilityId`, `target`, or `query`; capability results return the allowed or blocked route hint.
73
73
 
74
74
  The model can inspect the public operator method catalog with `agent_harness` mode `operator_methods`. That report lists the allowlisted read and mutation methods, their public routes, owning first-class model tools, confirmation policy, and boundary. To inspect one method without parsing the full report, use `operator_method` with `methodId`, `target`, or `query`. This is a read-only catalog and does not expose arbitrary route invocation.
75
75
 
76
76
  The model can inspect service posture with `agent_harness` mode `service_posture`. That report exposes the same read-only endpoint binding, network-facing posture, issue, and redacted-log diagnostics used by status, doctor, and support bundles. Use `includeParameters:true` when reachability probes and redacted log tail are needed. To inspect one endpoint, use `service_endpoint` with `endpointId`, `target`, or `query`; valid endpoint ids are `controlPlane`, `httpListener`, and `web`. These modes are diagnostic only and do not expose host start, stop, restart, install, listener, or account-management operations.
77
77
 
78
- The model can inspect live connected-host readiness with `agent_harness` mode `connected_host_status`. `daemon_status` is an alias. That report uses the same read-only status probe as the CLI: it checks the connected-host status route, verifies the SDK version pin, checks the isolated Agent Knowledge status route when token and version posture allow it, reports endpoint bindings and token posture without printing token values, and returns actionable findings. `includeParameters:true` adds route family and capability detail. It is diagnostic only and does not expose host start, stop, restart, install, listener, or account-management operations.
78
+ The model can inspect live connected-host readiness with `agent_harness` mode `connected_host_status`. `daemon_status` is an alias. That report uses the same read-only status probe as the CLI: it checks the connected-host status route, verifies host compatibility, checks the isolated Agent Knowledge status route when token and compatibility posture allow it, reports endpoint bindings and token posture without printing token values, returns actionable findings, and includes a compact `modelRoute` for follow-up diagnostics. `includeParameters:true` adds route family and capability detail. It is diagnostic only and does not expose host start, stop, restart, install, listener, or account-management operations.
79
79
 
80
80
  The model can inspect companion pairing posture with `agent_harness` mode `pairing_posture`, and inspect one pairing/mobile route with `pairing_route`. Those modes report the control-plane endpoint binding, pairing surface id, token presence/fingerprint, and route catalog without returning raw tokens or QR payloads. Pairing display, manual token display, companion connection, channel delivery, task, approval, provider/model, and attachment actions remain visible user flows.
81
81
 
@@ -5,7 +5,7 @@ GoodVibes Agent is the installable `1.0.x` personal operator assistant TUI for G
5
5
  ## Requirements
6
6
 
7
7
  - Bun `1.3.10` or newer.
8
- - A connected GoodVibes host compatible with the exact `@pellux/goodvibes-sdk@0.33.36` pin in `package.json`.
8
+ - A connected GoodVibes host with compatible public Agent routes.
9
9
  - Connected-host token/config state accepted by that host.
10
10
 
11
11
  Agent does not launch or manage the connected host.
@@ -54,11 +54,12 @@ Press `/` inside the Agent workspace to search actions by name, category, comman
54
54
 
55
55
  ## Model Access
56
56
 
57
- The main Agent model can use the same user-facing harness through Agent-owned tools. Use `agent_harness mode:"summary"` for a compact map, `mode:"modes"` to search every harness mode by task or id, and `mode:"mode"` to inspect one mode contract. Then drill into plural catalogs or single-item inspect modes.
57
+ The main Agent model can use the Agent-controlled harness through Agent-owned tools. Use `agent_harness mode:"summary"` for a compact map, `mode:"modes"` to search every harness mode by task or id, and `mode:"mode"` to inspect one mode contract. Then drill into plural catalogs or single-item inspect modes.
58
58
 
59
59
  Default discovery is intentionally compact:
60
60
 
61
- - plural modes return ids, labels, counts, safe state, and route hints;
61
+ - plural modes return ids, labels, counts, safe state, effect class, and route hints;
62
+ - workspace action, slash-command, CLI, panel, UI surface, shortcut/keybinding, settings, tool, connected-host posture/status/capability, and operator/audit catalogs include short `modelRoute` or `modelAccess` hints for route choice;
62
63
  - singular modes return detailed policy and lookup metadata;
63
64
  - `includeParameters:true` adds schemas, editor fields, model routes, parameter hints, release artifact data, redacted log tail, and detail that would be too large for normal discovery.
64
65
 
@@ -72,16 +73,18 @@ Common model routes:
72
73
  | Settings | `agent_harness mode:"settings"`, `mode:"get_setting"`, `mode:"set_setting"`, `mode:"reset_setting"` |
73
74
  | Visible UI | `agent_harness mode:"panels"`, `mode:"ui_surfaces"`, `mode:"open_panel"`, `mode:"open_ui_surface"` |
74
75
  | Keybindings | `agent_harness mode:"shortcuts"`, `mode:"keybindings"`, `mode:"keybinding"`, `mode:"run_keybinding"`, `mode:"set_keybinding"` |
76
+ | Tool contracts | `agent_harness mode:"tools"`, `mode:"tool"` |
75
77
  | Agent Knowledge | `agent_knowledge`, `agent_knowledge_ingest` |
76
78
  | Local memory/notes/personas/skills/routines | `agent_local_registry` or confirmed workspace actions |
77
79
  | Work plan | `agent_work_plan` |
78
80
  | Channels, notifications, reminders, media | `agent_channel_send`, `agent_notify`, `agent_reminder_schedule`, `agent_media_generate` |
79
81
  | Operator state/actions | `agent_operator_briefing`, `agent_operator_action`, `agent_harness mode:"operator_methods"` |
80
- | Connected host/daemon posture | `agent_harness mode:"service_posture"`, `mode:"connected_host"`, `mode:"connected_host_status"`, `mode:"daemon"`, `mode:"daemon_status"` |
82
+ | Connected host/daemon posture | `agent_harness mode:"service_posture"`, `mode:"connected_host"`, `mode:"connected_host_capability"`, `mode:"connected_host_status"`, `mode:"daemon"`, `mode:"daemon_status"` |
83
+ | Operator/audit evidence | `agent_harness mode:"release_evidence"`, `mode:"release_evidence_artifact"`, `mode:"release_readiness"`, `mode:"release_readiness_item"` |
81
84
 
82
85
  All effects require explicit user request and confirmation. Ambiguous lookup is refused with candidates.
83
86
 
84
- Registered tool definitions are intentionally terse. The default model catalog keeps top-level descriptions short and removes nested parameter descriptions; use `agent_harness mode:"tools"` with `includeParameters:true`, `mode:"tool"`, or the owning harness mode when detailed contracts are needed.
87
+ Registered tool definitions are intentionally terse. The default model catalog keeps top-level descriptions short, removes nested parameter descriptions, and includes direct harness inspection routes; use `agent_harness mode:"tools"` with `includeParameters:true`, `mode:"tool"`, or the owning harness mode when detailed contracts are needed.
85
88
 
86
89
  ## Isolated Agent Profiles
87
90
 
@@ -121,7 +124,7 @@ Starting a routine records local usage and prints its steps in the main conversa
121
124
 
122
125
  ## Knowledge And Artifacts
123
126
 
124
- Use Agent Workspace -> Knowledge for source-backed Agent Knowledge. The valid route family is:
127
+ Use Agent Workspace -> Knowledge for source-backed Agent Knowledge. The valid connected-host route family is:
125
128
 
126
129
  ```text
127
130
  /api/goodvibes-agent/knowledge/*
@@ -129,6 +132,8 @@ Use Agent Workspace -> Knowledge for source-backed Agent Knowledge. The valid ro
129
132
 
130
133
  Agent commands fail closed if the route is unavailable or a successful-looking response exposes default-scope metadata.
131
134
 
135
+ The Knowledge workspace also exposes route-backed and command-backed workflows for issue review, prompt packet previews, context-selection explain output, consolidation, and reindex. Read-only ask/search/list/get/map/connector/packet/explain paths do not require mutation confirmation. Ingest, review-issue, consolidation, and reindex paths require explicit confirmation.
136
+
132
137
  Use Agent Workspace -> Research for read-only web research and URL inspection. Research requests do not ingest sources. Use confirmed Agent Knowledge ingest actions when a reviewed source should become durable.
133
138
 
134
139
  Use the Artifacts area and Voice & Media workspace for images, source files, generated media, and exported sessions. Generated media returns artifact ids and metadata, not inline base64.
@@ -162,7 +167,7 @@ Host diagnostics:
162
167
  - `goodvibes-agent doctor`
163
168
  - `goodvibes-agent compat`
164
169
 
165
- Model-visible diagnostics are `service_posture`, `service_endpoint`, `connected_host`, `connected_host_status`, `connected_host_capability`, `daemon`, and `daemon_status`. These are read-only and do not expose host lifecycle control.
170
+ Model-visible diagnostics are `service_posture`, `service_endpoint`, `connected_host`, `connected_host_status`, `connected_host_capability`, `daemon`, and `daemon_status`. Connected-host posture/status/capability results include compact route hints for the next safe Agent-owned tool or harness mode. These modes are read-only and do not expose host lifecycle control.
166
171
 
167
172
  ## Current Product Notes
168
173
 
@@ -71,20 +71,25 @@ Read-only inspection is available from the TUI Knowledge workspace first, with C
71
71
  - `/knowledge connector <connector-id>`
72
72
  - `/knowledge connector-doctor <connector-id>`
73
73
  - `/knowledge map`
74
+ - `/knowledge packet <task...> [--scope <path> ...]`
75
+ - `/knowledge explain <task...> [--scope <path> ...]`
74
76
 
75
77
  The main assistant conversation can use the read-only `agent_knowledge` tool for the same isolated status, ask, search, source/node/issue list, item lookup, map, connector list, connector detail, and connector doctor workflows.
76
78
 
77
79
  ## Ingest
78
80
 
79
- Use Agent Workspace -> Knowledge for URL, URL-list, file, bookmark, browser-history, connector ingest, and reindex forms. The main assistant conversation can also call the confirmed `agent_knowledge_ingest` tool for the same isolated source families. `/knowledge ingest-url <url> --yes` and `goodvibes-agent knowledge ingest-url <url> --yes` ingest URL sources into Agent Knowledge only.
81
+ Use Agent Workspace -> Knowledge for URL, URL-list, file, bookmark, browser-history, connector ingest, issue review, consolidation, and reindex forms. The main assistant conversation can also call the confirmed `agent_knowledge_ingest` tool for URL, file, URL-list, bookmark, browser-history, and connector source families. `/knowledge ingest-url <url> --yes` and `goodvibes-agent knowledge ingest-url <url> --yes` ingest URL sources into Agent Knowledge only.
80
82
 
81
- The TUI workspace exposes the common confirmed ingest and reindex flows. The CLI also exposes Agent-specific batch routes for scripts:
83
+ The TUI workspace exposes the common confirmed ingest, issue-review, consolidation, and reindex flows. The CLI also exposes Agent-specific batch routes for scripts:
82
84
 
83
85
  - `goodvibes-agent knowledge import-urls <path> --yes`
84
86
  - `goodvibes-agent knowledge import-bookmarks <path> --yes`
87
+ - `goodvibes-agent knowledge import-browser-history --yes`
88
+ - `/knowledge review-issue <issueId> <accept|reject|resolve|reopen|edit|forget> --yes`
89
+ - `/knowledge consolidate [light|deep] --yes`
85
90
  - `goodvibes-agent knowledge reindex --yes`
86
91
 
87
- All of these commands target `/api/goodvibes-agent/knowledge/*`; none of them call default knowledge.
92
+ Connected-host ingest and read CLI routes target `/api/goodvibes-agent/knowledge/*`. Workspace and slash-command issue review, packet/explain, consolidation, and reindex flows stay inside the isolated Agent Knowledge service. None of them call default knowledge.
88
93
 
89
94
  Do not map local memory, notes, routines, skills, personas, or default knowledge documents into Agent Knowledge automatically. Durable source-backed facts can be ingested deliberately through Agent routes when the user or an explicit Agent workflow asks for it.
90
95
 
@@ -94,7 +99,7 @@ Artifacts are first-class runtime objects for files, images, audio, video, gener
94
99
 
95
100
  Agent Workspace -> Voice & Media -> Generate media creates image/video artifacts through configured media providers after typed confirmation. The main conversation can perform the same confirmed action with the `agent_media_generate` tool when the user explicitly asks for generated media. Generated media output is summarized as artifact ids, MIME types, filenames, and source URLs when present; inline base64 is not printed into the transcript.
96
101
 
97
- The model can use first-class tools for the common Knowledge and media workflows: `agent_knowledge`, `agent_knowledge_ingest`, and `agent_media_generate`. `agent_harness` adds workspace-action lookup/execution, `media_posture`/`media_provider` readiness, `sessions`/`session` bookmark and artifact posture, and confirmed slash-command mirrors when a visible workspace route maps to a concrete command.
102
+ The model can use first-class tools for the common Knowledge and media workflows: `agent_knowledge`, `agent_knowledge_ingest`, and `agent_media_generate`. `agent_harness` adds workspace-action lookup/execution, compact `modelRoute` hints in `workspace_actions`, `media_posture`/`media_provider` readiness, `sessions`/`session` bookmark and artifact posture, and confirmed slash-command mirrors when a visible workspace route maps to a concrete command.
98
103
 
99
104
  Multimodal outputs should stay in the conversation, artifacts, local notes or memory, or explicit delegation results unless the user explicitly ingests a reviewed source through an Agent Knowledge route. They must not be inserted into default knowledge.
100
105
 
@@ -13,7 +13,7 @@ The Agent owns:
13
13
  - explicit execution approval;
14
14
  - delegation metadata when work needs GoodVibes TUI.
15
15
 
16
- The SDK/runtime owns durable storage and route contracts:
16
+ The connected-host runtime owns durable storage and route contracts:
17
17
 
18
18
  - planning namespaces such as `project:<projectId>`;
19
19
  - readiness evaluation and next-question hints;
@@ -25,12 +25,12 @@ Other surfaces can store or inspect planning artifacts, but conversation control
25
25
 
26
26
  ## Agent Behavior
27
27
 
28
- The Agent derives a stable `projectId` from the workspace path and passes it to the SDK planning service. Planning artifacts are stored under the matching planning namespace so unrelated workspaces do not share state.
28
+ The Agent derives a stable `projectId` from the workspace path and passes it to the connected-host planning service. Planning artifacts are stored under the matching planning namespace so unrelated workspaces do not share state.
29
29
 
30
30
  Normal conversation can start planning when the user asks for an execution strategy, dependency graph, verification gates, or delegation handoff. The Agent then:
31
31
 
32
32
  - prints a concise planning summary in the main transcript;
33
- - persists the current planning state through public SDK/runtime seams;
33
+ - persists the current planning state through public connected-host runtime routes;
34
34
  - records active open questions and user answers;
35
35
  - calls readiness evaluation for gaps and the suggested next question;
36
36
  - asks one focused question instead of executing prematurely.
@@ -11,8 +11,8 @@ Provider and model state should be visible in:
11
11
  - `/model` and `/provider`;
12
12
  - the Agent operator workspace setup checklist;
13
13
  - the TTS configuration workspace when spoken turns are used.
14
- - `agent_harness` modes `model_routing` and `model_route` when the model needs read-only provider/model route posture, selectable model metadata, pinned model status, reasoning support, context-window posture, and safe setting keys. `model_routing` is compact by default; use `includeParameters:true` or `model_route` for full capabilities and route-change hints.
15
- - `agent_harness` modes `provider_accounts` and `provider_account` when the model needs read-only provider auth route posture, subscription freshness, usage windows, route issues, and repair guidance without tokens or authorization codes. `provider_accounts` is compact by default; use `includeParameters:true` or `provider_account` for route records, usage windows, issues, notes, and auth-flow hints.
14
+ - `agent_harness` modes `model_routing` and `model_route` when the model needs read-only provider/model route posture, selectable model metadata, pinned model status, reasoning support, context-window posture, and safe setting keys. `model_routing` is compact by default; use `includeParameters:true` or `model_route` for full capabilities and route-change hints. Workspace model actions also expose compact `modelRoute` hints for settings, pin/unpin, reasoning effort, and visible picker flows.
15
+ - `agent_harness` modes `provider_accounts` and `provider_account` when the model needs read-only provider auth route posture, subscription freshness, usage windows, route issues, and repair guidance without tokens or authorization codes. `provider_accounts` is compact by default; use `includeParameters:true` or `provider_account` for route records, usage windows, issues, notes, and auth-flow hints. Provider/account mutations stay on confirmed workspace or settings routes.
16
16
 
17
17
  When a selected model is provider-qualified, Agent keeps the runtime provider row and raw model id separate. For example, `openai-subscriber` plus `openai:gpt-5.5` should route as provider `openai-subscriber` and model `gpt-5.5` where the public route expects provider/model fields.
18
18
 
@@ -6,7 +6,7 @@ GoodVibes Agent's current installable version is recorded in `package.json` and
6
6
 
7
7
  - registry package: `@pellux/goodvibes-agent`
8
8
  - executable: `goodvibes-agent`
9
- - SDK dependency: exact pin to `@pellux/goodvibes-sdk@0.33.36`
9
+ - connected-host compatibility: checked through public Agent routes
10
10
  - runtime: Bun `1.3.10` or newer
11
11
  - source language: TypeScript
12
12
  - package docs: every Markdown file under `docs/*.md`
@@ -20,11 +20,11 @@ bun add -g @pellux/goodvibes-agent
20
20
  goodvibes-agent --help
21
21
  ```
22
22
 
23
- Do not add non-Bun install instructions for this product. The package is hosted on the public package registry, but the supported install and smoke path is the normal Bun global command above, followed by `goodvibes-agent` launching the TUI. The package-facing text policy rejects non-Bun Agent install/run snippets, references to other `@pellux/goodvibes-*` packages outside Agent and the SDK, and versioned Agent or SDK package references that drift from `package.json`.
23
+ Do not add non-Bun install instructions for this product. The package is hosted on the public package registry, but the supported install and smoke path is the normal Bun global command above, followed by `goodvibes-agent` launching the TUI. The package-facing text policy rejects non-Bun Agent install/run snippets, references to other `@pellux/goodvibes-*` packages outside Agent support paths, and versioned Agent package references that drift from `package.json`.
24
24
 
25
25
  ## Required Gates
26
26
 
27
- The release-quality inventory, `release/release-readiness.json`, is the capability gate for the current release line. It must list every release capability that GoodVibes Agent is expected to cover, including capabilities owned by Agent, the connected host, the companion app, and release operations. A bare `covered` status is not enough: every inventory item must also carry `quality` evidence for capability coverage, direct user access, model access through Agent tools or harness routes, safety/product boundary, and release evidence. Package verification rejects any inventory item that is missing those dimensions or marks them as unknown, todo, gap, unverified, or unproven. The packaged Agent exposes the release evidence bundle through `agent_harness` modes `release_evidence` and `release_evidence_artifact`, and exposes the inventory through `release_readiness` and `release_readiness_item`, so the model can inspect what the user can inspect without relying on hidden project context.
27
+ The release-quality inventory, `release/release-readiness.json`, is the capability gate for the current release line. It must list every release capability that GoodVibes Agent is expected to cover, including capabilities owned by Agent, the connected host, the companion app, and release operations. A bare `covered` status is not enough: every inventory item must also carry `quality` evidence for capability coverage, direct user access, model access through Agent tools or harness routes, safety/product boundary, and release evidence. Package verification rejects any inventory item that is missing those dimensions or marks them as unknown, todo, gap, unverified, or unproven. The packaged Agent exposes the release evidence bundle through `agent_harness` modes `release_evidence` and `release_evidence_artifact`, and exposes the inventory through `release_readiness` and `release_readiness_item`, so the model can inspect the same operator/audit artifacts without relying on hidden project context.
28
28
 
29
29
  Use neutral evidence aliases in release evidence.
30
30
 
@@ -46,13 +46,13 @@ Shared release metadata verification also requires `build:package-runtime` to ke
46
46
 
47
47
  Shared release metadata verification requires `scripts/bun-compile-compat.ts` to keep the css-tree JSON-import rewrites, jsdom XHR worker and stylesheet path-leak patches, sql.js wasm embedding, idempotent patch skip, unexpected-shape warning, and successful patch diagnostic that keep Bun-compiled Agent runtimes self-contained.
48
48
 
49
- Shared release metadata verification requires the `prebuild` and `version` package scripts to run `scripts/prebuild.ts`; that script must keep the workspace-locked project-surface sync and Bun compile compatibility patch, while `scripts/project-surfaces.ts` must preserve exact semver reads plus `src/version.ts` and README badge synchronization.
49
+ Shared release metadata verification requires the `prebuild` and `version` package scripts to run `scripts/prebuild.ts`; that script must keep the workspace-locked project-surface sync and Bun compile compatibility patch, while `scripts/project-surfaces.ts` must preserve exact package semver reads plus `src/version.ts` and README badge synchronization.
50
50
 
51
51
  `bun run publish:package` publishes from a staged package directory to the package registry. It re-runs the shared package policy checks against the source tree, filters forbidden package paths during staging, and verifies the staged package docs, required package paths, and metadata before invoking npm. If `NPM_CONFIG_USERCONFIG` is already set, the registry publish command uses it. Otherwise the script creates a temporary 0600 registry userconfig from `NODE_AUTH_TOKEN` or `NPM_TOKEN`, uses it for that publish command, and removes it with the staging directory. The publish script is idempotent for reruns: if the exact package version is already present on the registry, it reports that state and exits successfully instead of failing the release retry. Shared release metadata verification requires those staged source/staged policy checks, forbidden-path filtering, docs checks, auth handoff, idempotent lookup, dry-run pack, public publish, and cleanup markers to remain in the publish script.
52
52
 
53
53
  `bun run release` requires product release notes instead of raw git-log output. Pass `--notes-file ./release-notes.md` or set `GOODVIBES_AGENT_RELEASE_NOTES` before a real release. For patch releases, use product-facing notes that summarize the complete patch contents, not only the first fix in the batch. Release metadata verification keeps `release/release-notes.md` with the release-quality inventory and live-verification evidence, and package verification requires the installed package to ship the same current release evidence bundle: release notes, performance snapshot, release-quality inventory, and live-verification JSON/Markdown. Release notes should describe what changed for Agent users: TUI behavior, setup, Agent Knowledge, local behavior libraries, connected-host compatibility, package/install behavior, model-visible harness behavior, and safety policy. Do not use commit hashes as the shipped changelog content.
54
54
 
55
- Before it mutates version metadata or creates a tag, `bun run release` checks the declared files under `release/` for existence, non-empty content, final newlines, trailing whitespace, and space-before-tab indentation, then enforces the non-test release gates: typecheck, architecture check, performance check, build, publish check, packed install smoke, verification ledger, pack dry-run, and `git diff --check`. Dry-run previews run the same evidence text hygiene check without writing files, commits, or tags. After it writes the release version, `src/version.ts` fallback, and changelog section, it verifies release metadata and package-facing text policy again, then reruns evidence hygiene and diff hygiene before creating the commit and tag. That package policy check proves `package.json`, `CHANGELOG.md`, and the `src/version.ts` fallback literals agree on the Agent and SDK versions, that the package manifest keeps the required Agent runtime/docs files, exclusions, release/publish script entrypoints, and local CI gate entrypoints without explicitly including forbidden Agent/TUI boundary paths or leaving existing forbidden paths reachable through broad includes, that the local release script still requires product notes, real-release validation, post-mutation package policy, docs staging, and annotated tags, that the GitHub setup action uses the same Bun version as `packageManager`, and that package-facing text is present and still follows Agent docs, rendered CLI help, parser-backed CLI command snippets, parser/type/alias/help/handler/top-level help command coverage, exported package-text source coverage, autocomplete overlay text, context inspector text, in-app help overlays, file/bookmark picker text, live process output text, MCP workspace text, model picker/workspace text, profile/session picker text, process/runtime activity text, search overlays, shared selection/picker chrome, setup/onboarding wizard text, settings workspace text, slash-command registry text, Agent workspace catalog text, route boundaries, install policy, and version pins. The generated changelog heading uses the operator's local release date in `YYYY-MM-DD` form, not UTC rollover time. The prebuild version sync refuses missing, ranged, or otherwise non-exact Agent or SDK versions instead of writing placeholder fallbacks. The release commit stages those metadata files plus every package-facing `docs/*.md` page, so release docs cannot drift outside the tag. The full test suite remains a branch-CI responsibility and must already be green for the release SHA.
55
+ Before it mutates version metadata or creates a tag, `bun run release` checks the declared files under `release/` for existence, non-empty content, final newlines, trailing whitespace, and space-before-tab indentation, then enforces the non-test release gates: typecheck, architecture check, performance check, build, publish check, packed install smoke, verification ledger, pack dry-run, and `git diff --check`. Dry-run previews run the same evidence text hygiene check without writing files, commits, or tags. After it writes the release version, `src/version.ts` fallback, and changelog section, it verifies release metadata and package-facing text policy again, then reruns evidence hygiene and diff hygiene before creating the commit and tag. That package policy check proves `package.json`, `CHANGELOG.md`, and the `src/version.ts` fallback literal agree on the Agent version, that the package manifest keeps the required Agent runtime/docs files, exclusions, release/publish script entrypoints, and local CI gate entrypoints without explicitly including forbidden Agent/TUI boundary paths or leaving existing forbidden paths reachable through broad includes, that the local release script still requires product notes, real-release validation, post-mutation package policy, docs staging, and annotated tags, that the GitHub setup action uses the same Bun version as `packageManager`, and that package-facing text is present and still follows Agent docs, rendered CLI help, parser-backed CLI command snippets, parser/type/alias/help/handler/top-level help command coverage, exported package-text source coverage, autocomplete overlay text, context inspector text, in-app help overlays, file/bookmark picker text, live process output text, MCP workspace text, model picker/workspace text, profile/session picker text, process/runtime activity text, search overlays, shared selection/picker chrome, setup/onboarding wizard text, settings workspace text, slash-command registry text, Agent workspace catalog text, route boundaries, install policy, and Agent package version pins. The generated changelog heading uses the operator's local release date in `YYYY-MM-DD` form, not UTC rollover time. The prebuild version sync refuses missing, ranged, or otherwise non-exact Agent versions instead of writing placeholder fallbacks. The release commit stages those metadata files plus every package-facing `docs/*.md` page, so release docs cannot drift outside the tag. The full test suite remains a branch-CI responsibility and must already be green for the release SHA.
56
56
 
57
57
  `--skip-validation` is only allowed with `--dry-run`. Real releases must run the validation gates above.
58
58
 
@@ -68,11 +68,11 @@ Shared release metadata verification requires branch CI to run the compiled bina
68
68
 
69
69
  Shared release metadata verification requires `architecture:check` to keep the Agent/TUI product-boundary rules: no runtime imports from `goodvibes-tui/src`, no coding-TUI git/worktree header posture in the Agent shell, isolated Agent Knowledge client/routes, typed operator contracts, explicit dependency ownership, source-size limits, and no explicit `any` or process-global test mocks.
70
70
 
71
- Shared release metadata verification requires `perf:check` to load `release/performance-snapshot.json`, validate its render samples and extra SLO/queue/tool/compaction/integration metrics, run the CI performance-budget evaluation, print the formatted report, and exit from the budget result. The release performance snapshot is staged with release metadata so the tag carries the exact non-live fixture used by the branch-CI performance gate.
71
+ Shared release metadata verification requires `perf:check` to load `release/performance-snapshot.json`, validate its render samples and extra SLO/queue/tool/compaction/integration metrics, run the CI performance-budget evaluation, print the formatted report, and exit from the budget result. The release performance snapshot is staged with release metadata so the tag carries the exact recorded sample used by the branch-CI performance gate.
72
72
 
73
- Shared release metadata verification requires `verification:ledger` to keep JSON and Markdown evidence output plus inventory coverage for settings schema, feature flags, slash commands, built-in panels, top-level CLI commands, external surfaces, onboarding capability bundles, the model-visible release evidence bundle, the model-visible service posture surface, the model-visible channel readiness surface, the model-visible notification target surface, the model-visible provider account surface, the model-visible MCP server surface, the model-visible setup/onboarding surface, the model-visible model routing surface, the model-visible pairing surface, the model-visible delegation surface, the model-visible security/support bundle surface, the model-visible voice/media posture surface, the model-visible sessions/bookmarks surface, the model-visible operator method catalog, the model-visible harness mode catalog, and the release-quality dimensions from `release/release-readiness.json`, including local-signal, local-behavior, and external-outcome accounting. Package verification also enforces compact model tool registration, wrapped tool definitions, harness catalog defaults, searchable harness mode discovery, and stripped nested schema descriptions so tool metadata stays usable.
73
+ Shared release metadata verification requires `verification:ledger` to keep JSON and Markdown evidence output plus inventory coverage for settings schema, feature flags, slash commands, built-in panels, top-level CLI commands, external surfaces, onboarding capability bundles, the model-visible release evidence bundle, the model-visible service posture surface, the model-visible channel readiness surface, the model-visible notification target surface, the model-visible provider account surface, the model-visible MCP server surface, the model-visible setup/onboarding surface, the model-visible model routing surface, the model-visible pairing surface, the model-visible delegation surface, the model-visible security/support bundle surface, the model-visible voice/media posture surface, the model-visible sessions/bookmarks surface, the model-visible operator method catalog, the model-visible command/CLI/tool catalogs, the model-visible keyboard route catalog, the model-visible harness mode catalog, and the release-quality dimensions from `release/release-readiness.json`, including local-signal, local-behavior, and external-outcome accounting. Package verification also enforces compact model tool registration, wrapped tool definitions, harness catalog defaults, searchable harness mode discovery, command/CLI/tool route metadata, keyboard route metadata, connected-host route hints, operator/audit route hints, and stripped nested schema descriptions so tool metadata stays usable.
74
74
 
75
- Shared release metadata verification requires `verification:live` to keep the external-outcome audit for stable releases: compiled CLI checks, connected-host token/URL discovery, connected-host status/health/model routes, isolated Agent Knowledge status/ask/search/source/node/issue/map/connector route checks plus packaged evidence for item inspection, SDK-version mismatch skip policy, JSON/Markdown report artifacts, strict mode, and Agent Knowledge contamination guards.
75
+ Shared release metadata verification requires `verification:live` to keep the external-outcome audit for stable releases: compiled CLI checks, connected-host token/URL discovery, connected-host status/health/model routes, isolated Agent Knowledge status/ask/search/source/node/issue/map/connector route checks plus packaged evidence for item inspection, JSON/Markdown report artifacts, strict mode, and Agent Knowledge contamination guards.
76
76
 
77
77
  Do not add targeted `bun test` passes or separate release-only test gates to CI, release, or aggregate scripts. Tests that matter for release must be included in the single full branch-CI suite.
78
78
 
@@ -19,7 +19,7 @@ High-signal TUI routes:
19
19
  | --- | --- |
20
20
  | `/agent` | Open the fullscreen operator workspace. |
21
21
  | `/help` and `/commands` | Discover registered slash commands. |
22
- | `/health`, `/compat`, `/auth` | Inspect runtime, SDK, host, and auth posture. |
22
+ | `/health`, `/compat`, `/auth` | Inspect runtime, connected-host, compatibility, and auth posture. |
23
23
  | `/model`, `/provider`, `/effort` | Inspect or change provider/model/reasoning routes. |
24
24
  | `/knowledge` | Use isolated Agent Knowledge. |
25
25
  | `/memory`, `/notes`, `/personas`, `/skills`, `/routines` | Manage Agent-local behavior libraries. |
@@ -34,7 +34,7 @@ High-signal TUI routes:
34
34
 
35
35
  | Tool | Use |
36
36
  | --- | --- |
37
- | `agent_harness` | Discover and operate user-facing harness surfaces. |
37
+ | `agent_harness` | Discover and operate Agent harness routes, including visible surfaces and operator/audit inspection. |
38
38
  | `agent_knowledge` | Read isolated Agent Knowledge: status, ask/search, lists, item, map, connectors. |
39
39
  | `agent_knowledge_ingest` | Confirmed ingest into isolated Agent Knowledge. |
40
40
  | `agent_local_registry` | Inspect or update Agent-local memory, notes, personas, skills, bundles, and routines. |
@@ -48,26 +48,27 @@ High-signal TUI routes:
48
48
 
49
49
  ## `agent_harness`
50
50
 
51
- Use `agent_harness mode:"summary"` first. Use `mode:"modes"` to search every harness mode by task, family, effect type, id, alias, or parameter name. Use `mode:"mode"` to inspect one mode contract. 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.
51
+ Use `agent_harness mode:"summary"` first. Use `mode:"modes"` to search every harness mode by task, family, effect type, id, alias, or parameter name. Use `mode:"mode"` to inspect one mode contract. Summary and plural catalog modes are compact by default. They return counts, ids, labels, state, effect class, and short `modelRoute` or `modelAccess` hints when a route decision is needed. 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.
52
52
 
53
53
  Discovery modes:
54
54
 
55
55
  | Mode | What It Lists |
56
56
  | --- | --- |
57
+ | `summary` | Compact counts, status, and a short guide for where to drill in next. |
57
58
  | `modes` | Searchable catalog of every `agent_harness` mode and its task fit. |
58
59
  | `workspace`, `workspace_categories`, `workspace_actions` | Workspace categories and actions. |
59
- | `commands`, `cli_commands` | Slash commands and top-level package CLI mirrors. |
60
+ | `commands`, `cli_commands` | Slash commands and top-level package CLI mirrors with compact policy and route hints. |
60
61
  | `panels`, `ui_surfaces` | Built-in panels and visible modal/overlay/picker/workspace surfaces. |
61
- | `shortcuts`, `keybindings` | Fixed shortcuts and configurable keybindings. |
62
+ | `shortcuts`, `keybindings` | Fixed shortcuts and configurable keybindings with direct route/access metadata. |
62
63
  | `settings` | Compact Agent setting rows with category, prefix, query, hidden, and limit filters. |
63
- | `tools` | First-class model tool definitions; schema details require `includeParameters:true` or `tool`. |
64
+ | `tools` | First-class model tool definitions with compact harness inspection routes; schema details require `includeParameters:true` or `tool`. |
64
65
  | `channels`, `notifications` | Channel readiness and redacted notification targets. |
65
66
  | `provider_accounts`, `model_routing` | Provider auth and provider/model route posture. |
66
67
  | `mcp_servers`, `setup_posture`, `pairing_posture`, `delegation_posture` | MCP, setup, pairing, and build-delegation posture. |
67
68
  | `security_posture`, `support_bundles`, `media_posture`, `sessions` | Security, bundle route, voice/media, and session/bookmark posture. |
68
69
  | `operator_methods` | Public operator and Agent Knowledge method catalog. |
69
70
  | `service_posture`, `connected_host`, `daemon` | Endpoint, connected-host, and daemon alias posture. |
70
- | `release_evidence`, `release_readiness` | Packaged release evidence and release-quality inventory. |
71
+ | `release_evidence`, `release_readiness` | Operator/audit release artifacts and release-quality inventory. |
71
72
 
72
73
  Single-item inspect modes:
73
74
 
@@ -89,7 +90,7 @@ Effect modes:
89
90
 
90
91
  | Mode | Effect |
91
92
  | --- | --- |
92
- | `run_workspace_action` | Executes one resolved workspace action through the same editor/command/local bridge as the TUI. |
93
+ | `run_workspace_action` | Executes one resolved workspace action through the same editor, command, or local route as the TUI. |
93
94
  | `run_command` | Executes one resolved slash command through the shared command registry. |
94
95
  | `open_panel`, `open_ui_surface` | Routes visible shell navigation. |
95
96
  | `run_keybinding` | Runs supported shell-safe keybinding actions only. |
@@ -98,35 +99,39 @@ Effect modes:
98
99
 
99
100
  Every effect mode requires `confirm:true` and `explicitUserRequest`. Ambiguous lookups return candidates before any effect runs.
100
101
 
101
- Registered model tool definitions are compact by default. Tool descriptions are capped or replaced with short Agent-specific summaries, and nested JSON-schema descriptions are stripped from the default registered catalog. Use `agent_harness mode:"tools"` with `includeParameters:true`, `mode:"tool"`, or a specific harness mode when detailed contracts are needed.
102
+ Registered model tool definitions are compact by default. Tool descriptions use short curated summaries or a tight fallback cap, nested JSON-schema descriptions are stripped from the default registered catalog, and catalog rows include direct harness inspection routes. Use `agent_harness mode:"tools"` with `includeParameters:true`, `mode:"tool"`, or a specific harness mode when detailed contracts are needed.
102
103
 
103
104
  ## Workspace Action Execution
104
105
 
105
- `workspace_action` inspection returns editor schemas and `modelExecution` detail. `workspace_actions` can include the same detail with `includeParameters:true`.
106
+ `workspace_actions` returns compact action rows with short `modelRoute` hints. `workspace_action` inspection returns editor schemas and `modelExecution` detail. `workspace_actions` can include the same detail with `includeParameters:true`.
107
+
108
+ `panels` returns compact built-in panel rows with workspace route metadata and a short `modelRoute` for visible navigation or matching workspace operation. `panel` inspection adds policy detail and current open/focus state.
109
+
110
+ `ui_surfaces` returns compact modal, picker, overlay, and workspace rows with a short `modelRoute`. `ui_surface` inspection and `includeParameters:true` add the longer `preferredModelRoute` and confirmation policy.
106
111
 
107
112
  Execution routes:
108
113
 
109
114
  - Local memory, notes, personas, skills, routines, and bundles dispatch through `agent_local_registry`.
110
115
  - Confirmed Agent Knowledge URL/file/bookmark/browser-history/connector ingest dispatches through `agent_knowledge_ingest`.
111
116
  - Command-backed editors dispatch through `run_command`.
112
- - Learned-behavior and profile creation use the Agent-local or slash-command bridge.
117
+ - Learned-behavior and profile creation use the Agent-local or slash-command route.
113
118
  - Web research/fetch forms return a main-conversation prompt instead of starting hidden nested work.
114
119
  - Selection-based actions accept `recordId` so the model can use the same selected-record flows as the TUI.
115
120
 
116
121
  ## Settings And Keybindings
117
122
 
118
- 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.
123
+ Settings discovery accepts `category`, `prefix`, `query`, `includeHidden:true`, and `limit`. It is compact by default and each row includes a short `modelRoute` that distinguishes read-only settings from set/reset-capable settings; 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.
119
124
 
120
- 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.
125
+ Keybinding discovery returns fixed shortcuts plus the live resolved binding table. Fixed shortcuts and configurable bindings include direct `modelRoute` and `modelAccess` metadata so the model can distinguish supported harness routes from direct-user-only controls. `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.
121
126
 
122
127
  ## Connected Host And Daemon
123
128
 
124
129
  The connected host is external. Agent can inspect it through:
125
130
 
126
131
  - `service_posture` and `service_endpoint` for endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
127
- - `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.
128
- - `connected_host_capability` for one allowed or blocked capability.
129
- - `connected_host_status` and `daemon_status` for live read-only readiness checks.
132
+ - `connected_host` and `daemon` for compact connected-host posture and direct `modelRoute` hints; use `includeParameters:true` for route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability.
133
+ - `connected_host_capability` for one allowed or blocked capability with the matching route hint.
134
+ - `connected_host_status` and `daemon_status` for live read-only readiness checks and the next diagnostic route.
130
135
  - `operator_methods` and `operator_method` for the public method catalog.
131
136
 
132
137
  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.
@@ -145,9 +150,17 @@ goodvibes-agent knowledge connectors
145
150
  goodvibes-agent knowledge connector <connector-id>
146
151
  goodvibes-agent knowledge connector-doctor <connector-id>
147
152
  goodvibes-agent knowledge ingest-url <url> --yes
153
+ goodvibes-agent knowledge ingest-file <path> --yes
154
+ goodvibes-agent knowledge ingest-connector <connector-id> --yes
148
155
  goodvibes-agent knowledge import-urls <path> --yes
149
156
  goodvibes-agent knowledge import-bookmarks <path> --yes
157
+ goodvibes-agent knowledge import-browser-history --yes
150
158
  goodvibes-agent knowledge reindex --yes
159
+ /knowledge queue
160
+ /knowledge review-issue <issue-id> resolve --yes
161
+ /knowledge packet <task>
162
+ /knowledge explain <task>
163
+ /knowledge consolidate light --yes
151
164
  ```
152
165
 
153
166
  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`.
@@ -169,7 +182,7 @@ Read views are safe by default. Mutations require exact target ids and confirmat
169
182
  /schedule run <schedule-id> --yes
170
183
  ```
171
184
 
172
- 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.
185
+ Routine promotion is an explicit scheduling route. Local routines stay local until a user confirms promotion. Delivery targets are opt-in with explicit channel/route/webhook/link flags.
173
186
 
174
187
  ## Slash Command Catalog
175
188
 
@@ -189,7 +202,7 @@ Routine promotion is an explicit scheduling bridge. Local routines stay local un
189
202
  | `/collapse` | Collapse rendered blocks by type. |
190
203
  | `/commands` | Browse all commands in a scrollable list. |
191
204
  | `/compact` | Summarize the conversation to free context window. |
192
- | `/compat` | Inspect Agent SDK pin, connected-host version, and Agent Knowledge route readiness. |
205
+ | `/compat` | Inspect connected-host compatibility and Agent Knowledge route readiness. |
193
206
  | `/config` | Open the fullscreen configuration workspace. |
194
207
  | `/context` | Inspect context-window usage and token breakdown. |
195
208
  | `/conversation` | Review conversation structure, transcript hotspots, and composer posture. |
@@ -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 mode:"settings"` or `mode:"get_setting"`, open the visible TTS provider or voice picker through `mode:"open_ui_surface"`, and change Agent-owned TTS settings with explicit confirmation. `mode:"media_posture"` is compact by default; use `includeParameters:true` or `mode:"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.
23
+ The model can inspect the same settings through `agent_harness mode:"settings"` or `mode:"get_setting"`, open the visible TTS provider or voice picker through `mode:"open_ui_surface"`, and change Agent-owned TTS settings with explicit confirmation. `mode:"media_posture"` is compact by default; use `includeParameters:true` or `mode:"media_provider"` for full provider readiness, generation route hints, picker routes, and media policy detail. Workspace action discovery includes compact `modelRoute` hints for TTS prompts, image input, and confirmed media generation; generated image/video requests use `agent_media_generate` when the user asks for that effect. 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.35",
3
+ "version": "1.0.37",
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",
@@ -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.35\",\n \"sdkPin\": \"0.33.36\",\n \"connectedHost\": {\n \"baseUrl\": \"http://127.0.0.1:3421\",\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}"
40
+ "detail": "{\n \"ok\": true,\n \"packageVersion\": \"1.0.35\",\n \"connectedHost\": {\n \"baseUrl\": \"http://127.0.0.1:3421\",\n \"status\": 200,\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",
@@ -64,8 +64,8 @@
64
64
  "id": "connected-host-status",
65
65
  "title": "Authenticated connected-host /status",
66
66
  "status": "pass",
67
- "summary": "/status returned 200, version 0.33.36.",
68
- "detail": "{\"status\":\"running\",\"version\":\"0.33.36\"}"
67
+ "summary": "/status returned 200 with parseable JSON.",
68
+ "detail": "{\"status\":\"running\"}"
69
69
  },
70
70
  {
71
71
  "id": "connected-host-health",
@@ -22,7 +22,7 @@ Connected host: `http://127.0.0.1:3421`
22
22
  | Agent Knowledge CLI status command | pass | Agent Knowledge status returned parseable JSON. |
23
23
  | Agent CLI providers command | pass | Provider inventory rendered successfully. |
24
24
  | CLI doctor command | pass | Doctor completed without findings. |
25
- | Authenticated connected-host /status | pass | /status returned 200, version 0.33.36. |
25
+ | Authenticated connected-host /status | pass | /status returned 200 with parseable JSON. |
26
26
  | Authenticated connected-host /api/health | pass | Health overall=healthy. |
27
27
  | OpenAI-compatible /v1/models route | pass | /v1/models returned 11 model(s). |
28
28
  | Agent Knowledge isolated /status | pass | Agent Knowledge status route returned parseable isolated JSON. |
@@ -60,11 +60,9 @@ Status JSON command completed; provider/model identifiers omitted from release a
60
60
  {
61
61
  "ok": true,
62
62
  "packageVersion": "1.0.35",
63
- "sdkPin": "0.33.36",
64
63
  "connectedHost": {
65
64
  "baseUrl": "http://127.0.0.1:3421",
66
65
  "status": 200,
67
- "version": "0.33.36",
68
66
  "reachable": true,
69
67
  "compatible": true
70
68
  },
@@ -121,7 +119,7 @@ Doctor command completed without findings; provider/model identifiers and creden
121
119
  ### Authenticated connected-host /status
122
120
 
123
121
  ```text
124
- {"status":"running","version":"0.33.36"}
122
+ {"status":"running"}
125
123
  ```
126
124
 
127
125
  ### Authenticated connected-host /api/health
@@ -1,13 +1,13 @@
1
1
  - Promoted GoodVibes Agent to the stable 1.0.x operator product surface: the fullscreen Agent workspace is the primary TUI, with setup, provider/model routing, status, compatibility, and doctor flows shaped around personal operator use instead of copied host lifecycle controls.
2
2
  - Completed the Agent-local behavior system for day-one operation: local memory and notes, personas, skills, skill bundles, routines, starter profiles, discovery/import flows, review/stale/delete controls, and secret-looking content rejection all stay under Agent ownership.
3
- - Completed isolated Agent Knowledge coverage across CLI, slash commands, workspace panels, connector/source/node/issue views, URL/file/browser/connector ingest, semantic ask/search, and connected-host `/api/goodvibes-agent/knowledge/*` routes without fallback to default or non-Agent knowledge surfaces.
3
+ - Completed isolated Agent Knowledge coverage across CLI, slash commands, workspace panels, connector/source/node/issue views, URL/file/browser/connector ingest, semantic ask/search, issue review, packet/explain previews, consolidation, reindex, and connected-host `/api/goodvibes-agent/knowledge/*` routes without fallback to default or non-Agent knowledge surfaces.
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
7
  - Completed the compact model-visible harness pass: `agent_harness` summary and plural catalogs now default to compact rows, `mode:"modes"` searches every harness mode by task/id/effect/parameter, and `mode:"mode"` inspects one mode contract 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.
8
+ - Completed direct model access to Agent harness operations: workspace actions, panels, UI surfaces, slash commands, CLI mirrors, keybindings, fixed shortcuts, settings, and tool catalogs now include compact route/access metadata; 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.
9
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.
10
+ - Completed settings parity for the model-facing harness: settings discovery is compact by default with per-setting `modelRoute` hints, `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
11
  - Completed the tool-description verbosity sweep: first-class Agent tools and wrapped built-in tool definitions now register concise descriptions, nested parameter schema descriptions are stripped from the default model-visible catalog, and detailed safety rules remain enforced in policy wrappers, confirmation errors, and detailed harness inspection.
12
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.
13
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.
@@ -15,5 +15,5 @@
15
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/*`.
16
16
  - 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.
17
17
  - 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.
18
- - Pinned the release line to `@pellux/goodvibes-sdk@0.33.36` so the packaged connected-host runtime includes Agent Knowledge alias scope normalization and telephony channel surface support.
18
+ - Verified the release line against connected-host public Agent routes for Agent Knowledge alias scope normalization and telephony channel surface support.
19
19
  - 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.