@pellux/goodvibes-agent 1.1.7 → 1.2.0

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 (255) hide show
  1. package/CHANGELOG.md +170 -0
  2. package/README.md +46 -30
  3. package/dist/package/{ast-grep-napi.linux-x64-gnu-mkk8xwww.node → ast-grep-napi.linux-x64-gnu-swtppvy9.node} +0 -0
  4. package/dist/package/{ast-grep-napi.linux-x64-musl-ryqtgdv6.node → ast-grep-napi.linux-x64-musl-ttfcdtap.node} +0 -0
  5. package/dist/package/main.js +132577 -91483
  6. package/docs/README.md +14 -7
  7. package/docs/channels-remote-and-api.md +8 -5
  8. package/docs/connected-host.md +14 -12
  9. package/docs/getting-started.md +56 -30
  10. package/docs/knowledge-artifacts-and-multimodal.md +7 -5
  11. package/docs/project-planning.md +2 -2
  12. package/docs/providers-and-routing.md +11 -3
  13. package/docs/tools-and-commands.md +114 -45
  14. package/docs/voice-and-live-tts.md +3 -1
  15. package/package.json +3 -2
  16. package/release/release-notes.md +130 -5
  17. package/release/release-readiness.json +120 -90
  18. package/src/agent/assistant-cockpit.ts +247 -0
  19. package/src/agent/autonomy-schedule-format.ts +96 -0
  20. package/src/agent/autonomy-schedule.ts +514 -0
  21. package/src/agent/channel-delivery-receipts.ts +292 -0
  22. package/src/agent/competitive-feature-inventory.ts +296 -0
  23. package/src/agent/document-registry-types.ts +106 -0
  24. package/src/agent/document-registry.ts +734 -0
  25. package/src/agent/harness-control.ts +2 -2
  26. package/src/agent/memory-prompt.ts +2 -2
  27. package/src/agent/operator-actions.ts +50 -6
  28. package/src/agent/persona-registry.ts +8 -0
  29. package/src/agent/project-context-files.ts +273 -0
  30. package/src/agent/prompt-context-receipts.ts +502 -0
  31. package/src/agent/reminder-schedule-format.ts +16 -2
  32. package/src/agent/research-run-registry.ts +582 -0
  33. package/src/agent/research-source-registry.ts +441 -0
  34. package/src/agent/routine-registry.ts +19 -3
  35. package/src/agent/routine-schedule-format.ts +27 -2
  36. package/src/agent/runtime-profile-starters.ts +7 -0
  37. package/src/agent/runtime-profile.ts +106 -4
  38. package/src/agent/schedule-edit-format.ts +129 -0
  39. package/src/agent/schedule-edit.ts +496 -0
  40. package/src/agent/schedule-next-routes.ts +42 -0
  41. package/src/agent/setup-wizard-checkpoint.ts +140 -0
  42. package/src/agent/setup-wizard.ts +447 -0
  43. package/src/agent/skill-registry-types.ts +102 -0
  44. package/src/agent/skill-registry.ts +81 -107
  45. package/src/agent/vibe-confirmation-routes.ts +62 -0
  46. package/src/agent/vibe-file.ts +285 -0
  47. package/src/cli/agent-knowledge-command.ts +45 -2
  48. package/src/cli/help.ts +3 -0
  49. package/src/cli/profiles-command.ts +25 -11
  50. package/src/config/agent-settings-policy.ts +1 -18
  51. package/src/input/agent-workspace-activation.ts +53 -0
  52. package/src/input/agent-workspace-artifact-browser-editor.ts +494 -0
  53. package/src/input/agent-workspace-artifact-metadata.ts +17 -0
  54. package/src/input/agent-workspace-basic-command-editors.ts +5 -1
  55. package/src/input/agent-workspace-categories.ts +153 -155
  56. package/src/input/agent-workspace-channel-triage.ts +481 -0
  57. package/src/input/agent-workspace-channels.ts +263 -0
  58. package/src/input/agent-workspace-command-editor.ts +152 -0
  59. package/src/input/agent-workspace-context-snapshot.ts +349 -0
  60. package/src/input/agent-workspace-delegation-editor-submission.ts +8 -0
  61. package/src/input/agent-workspace-document-editor.ts +502 -0
  62. package/src/input/agent-workspace-document-ops-editor.ts +523 -0
  63. package/src/input/agent-workspace-host-category.ts +1 -1
  64. package/src/input/agent-workspace-local-library-snapshot.ts +167 -0
  65. package/src/input/agent-workspace-model-compare-editor.ts +376 -0
  66. package/src/input/agent-workspace-model-compare-prompt-submission.ts +552 -0
  67. package/src/input/agent-workspace-model-compare-types.ts +82 -0
  68. package/src/input/agent-workspace-model-compare-utils.ts +35 -0
  69. package/src/input/agent-workspace-onboarding-categories.ts +141 -0
  70. package/src/input/agent-workspace-operations-command-editor-submission.ts +53 -0
  71. package/src/input/agent-workspace-operations-command-editors.ts +22 -0
  72. package/src/input/agent-workspace-research-report-editor.ts +212 -0
  73. package/src/input/agent-workspace-research-run-editor.ts +144 -0
  74. package/src/input/agent-workspace-research-source-editor.ts +167 -0
  75. package/src/input/agent-workspace-review-packet-snapshot.ts +593 -0
  76. package/src/input/agent-workspace-review-packet-utils.ts +265 -0
  77. package/src/input/agent-workspace-settings.ts +262 -30
  78. package/src/input/agent-workspace-setup-checkpoint-action.ts +127 -0
  79. package/src/input/agent-workspace-setup-snapshot.ts +198 -0
  80. package/src/input/agent-workspace-setup.ts +34 -1
  81. package/src/input/agent-workspace-snapshot.ts +162 -147
  82. package/src/input/agent-workspace-types.ts +287 -2
  83. package/src/input/agent-workspace.ts +18 -0
  84. package/src/input/command-registry.ts +9 -2
  85. package/src/input/commands/agent-runtime-profile-runtime.ts +28 -13
  86. package/src/input/commands/channels-runtime.ts +102 -114
  87. package/src/input/commands/delegation-runtime.ts +87 -24
  88. package/src/input/commands/knowledge-browser-flags.ts +12 -0
  89. package/src/input/commands/knowledge.ts +28 -14
  90. package/src/input/commands/operator-actions-runtime.ts +6 -3
  91. package/src/input/commands/schedule-runtime.ts +71 -14
  92. package/src/input/commands/session-content.ts +2 -2
  93. package/src/input/commands/shell-core.ts +2 -0
  94. package/src/input/commands/vibe-runtime.ts +140 -0
  95. package/src/input/commands.ts +2 -0
  96. package/src/input/connected-host-routes.ts +123 -0
  97. package/src/input/settings-modal-types.ts +14 -0
  98. package/src/main.ts +15 -15
  99. package/src/panels/qr-panel.ts +2 -2
  100. package/src/renderer/agent-workspace-context-lines.ts +686 -0
  101. package/src/renderer/agent-workspace.ts +30 -419
  102. package/src/renderer/settings-modal-helpers.ts +12 -0
  103. package/src/renderer/settings-modal.ts +12 -0
  104. package/src/runtime/bootstrap-command-context.ts +11 -1
  105. package/src/runtime/bootstrap-command-parts.ts +14 -3
  106. package/src/runtime/bootstrap-core.ts +39 -1
  107. package/src/runtime/bootstrap-shell.ts +6 -0
  108. package/src/runtime/bootstrap.ts +113 -30
  109. package/src/runtime/connected-host-auth.ts +3 -2
  110. package/src/runtime/execution-ledger.ts +231 -0
  111. package/src/runtime/services.ts +88 -10
  112. package/src/runtime/tool-permission-safety.ts +199 -5
  113. package/src/shell/session-continuity-hints.ts +39 -0
  114. package/src/tools/agent-artifacts-tool.ts +606 -0
  115. package/src/tools/agent-audit-tool.ts +155 -0
  116. package/src/tools/agent-autonomy-schedule-tool.ts +238 -0
  117. package/src/tools/agent-autonomy-tool.ts +140 -0
  118. package/src/tools/agent-channel-send-tool.ts +24 -2
  119. package/src/tools/agent-channels-tool.ts +140 -0
  120. package/src/tools/agent-computer-tool.ts +168 -0
  121. package/src/tools/agent-context-policy.ts +137 -7
  122. package/src/tools/agent-context-tool.ts +143 -0
  123. package/src/tools/agent-delegation-tool.ts +128 -0
  124. package/src/tools/agent-device-tool.ts +240 -0
  125. package/src/tools/agent-documents-tool.ts +684 -0
  126. package/src/tools/agent-execution-tool.ts +230 -0
  127. package/src/tools/agent-harness-agent-orchestration.ts +703 -0
  128. package/src/tools/agent-harness-autonomy-intake.ts +785 -0
  129. package/src/tools/agent-harness-autonomy-live-records.ts +588 -0
  130. package/src/tools/agent-harness-autonomy-queue-types.ts +88 -0
  131. package/src/tools/agent-harness-autonomy-queue.ts +560 -0
  132. package/src/tools/agent-harness-background-processes-types.ts +35 -0
  133. package/src/tools/agent-harness-background-processes.ts +794 -0
  134. package/src/tools/agent-harness-browser-cockpit-route.ts +219 -0
  135. package/src/tools/agent-harness-browser-control.ts +338 -0
  136. package/src/tools/agent-harness-channel-metadata.ts +168 -10
  137. package/src/tools/agent-harness-cli-command-policy.ts +110 -0
  138. package/src/tools/agent-harness-command-catalog.ts +4 -2
  139. package/src/tools/agent-harness-command-runner.ts +42 -0
  140. package/src/tools/agent-harness-connected-host-status.ts +7 -4
  141. package/src/tools/agent-harness-delegation-posture.ts +234 -19
  142. package/src/tools/agent-harness-document-ops-reviewer-readiness.ts +234 -0
  143. package/src/tools/agent-harness-document-ops-types.ts +72 -0
  144. package/src/tools/agent-harness-document-ops.ts +671 -0
  145. package/src/tools/agent-harness-execution-history.ts +489 -0
  146. package/src/tools/agent-harness-execution-posture.ts +382 -0
  147. package/src/tools/agent-harness-file-recovery.ts +135 -0
  148. package/src/tools/agent-harness-keybinding-metadata.ts +16 -12
  149. package/src/tools/agent-harness-learning-curator-common.ts +102 -0
  150. package/src/tools/agent-harness-learning-curator-consolidation.ts +295 -0
  151. package/src/tools/agent-harness-learning-curator-proposals.ts +606 -0
  152. package/src/tools/agent-harness-learning-curator-types.ts +151 -0
  153. package/src/tools/agent-harness-learning-curator.ts +417 -0
  154. package/src/tools/agent-harness-local-model-benchmarks.ts +199 -0
  155. package/src/tools/agent-harness-local-model-cookbook.ts +238 -0
  156. package/src/tools/agent-harness-local-model-endpoints.ts +673 -0
  157. package/src/tools/agent-harness-media-posture.ts +208 -2
  158. package/src/tools/agent-harness-memory-posture.ts +556 -0
  159. package/src/tools/agent-harness-metadata.ts +100 -168
  160. package/src/tools/agent-harness-mode-catalog.ts +84 -33
  161. package/src/tools/agent-harness-model-catalog.ts +162 -0
  162. package/src/tools/agent-harness-model-provider-health.ts +186 -0
  163. package/src/tools/agent-harness-model-readiness.ts +406 -0
  164. package/src/tools/agent-harness-model-routing-types.ts +266 -0
  165. package/src/tools/agent-harness-model-routing-utils.ts +30 -0
  166. package/src/tools/agent-harness-model-routing.ts +137 -190
  167. package/src/tools/agent-harness-operator-methods.ts +115 -133
  168. package/src/tools/agent-harness-pairing-posture.ts +431 -18
  169. package/src/tools/agent-harness-personal-ops-discovery.ts +533 -0
  170. package/src/tools/agent-harness-personal-ops-intake.ts +385 -0
  171. package/src/tools/agent-harness-personal-ops-lanes.ts +204 -0
  172. package/src/tools/agent-harness-personal-ops-records.ts +732 -0
  173. package/src/tools/agent-harness-personal-ops-runner.ts +637 -0
  174. package/src/tools/agent-harness-personal-ops-types.ts +222 -0
  175. package/src/tools/agent-harness-personal-ops.ts +606 -0
  176. package/src/tools/agent-harness-project-context.ts +144 -0
  177. package/src/tools/agent-harness-prompt-context.ts +589 -0
  178. package/src/tools/agent-harness-provider-account-metadata.ts +2 -2
  179. package/src/tools/agent-harness-release-evidence.ts +9 -7
  180. package/src/tools/agent-harness-release-readiness.ts +9 -7
  181. package/src/tools/agent-harness-research-briefing.ts +427 -0
  182. package/src/tools/agent-harness-research-queue.ts +250 -0
  183. package/src/tools/agent-harness-research-runs.ts +295 -0
  184. package/src/tools/agent-harness-research-workflow.ts +322 -0
  185. package/src/tools/agent-harness-security-posture.ts +2 -2
  186. package/src/tools/agent-harness-service-posture.ts +9 -9
  187. package/src/tools/agent-harness-session-metadata.ts +3 -3
  188. package/src/tools/agent-harness-setup-connected-host.ts +501 -0
  189. package/src/tools/agent-harness-setup-describe.ts +557 -0
  190. package/src/tools/agent-harness-setup-handoffs.ts +502 -0
  191. package/src/tools/agent-harness-setup-model-helpers.ts +101 -0
  192. package/src/tools/agent-harness-setup-plan.ts +253 -0
  193. package/src/tools/agent-harness-setup-posture-types.ts +218 -0
  194. package/src/tools/agent-harness-setup-posture-utils.ts +173 -0
  195. package/src/tools/agent-harness-setup-posture.ts +449 -221
  196. package/src/tools/agent-harness-setup-smoke.ts +508 -0
  197. package/src/tools/agent-harness-sudo-posture.ts +114 -0
  198. package/src/tools/agent-harness-tool-schema.ts +120 -7
  199. package/src/tools/agent-harness-tool-types.ts +78 -0
  200. package/src/tools/agent-harness-tool-utils.ts +43 -0
  201. package/src/tools/agent-harness-tool.ts +311 -370
  202. package/src/tools/agent-harness-ui-surface-metadata.ts +76 -69
  203. package/src/tools/agent-harness-ui-surface-types.ts +46 -0
  204. package/src/tools/agent-harness-vibe-health.ts +105 -0
  205. package/src/tools/agent-harness-workspace-action-runner.ts +149 -0
  206. package/src/tools/agent-harness-workspace-actions.ts +114 -8
  207. package/src/tools/agent-harness-workspace-editor-execution.ts +214 -0
  208. package/src/tools/agent-harness-workspace-editor-runner.ts +755 -0
  209. package/src/tools/agent-host-tool.ts +159 -0
  210. package/src/tools/agent-knowledge-ingest-tool.ts +34 -1
  211. package/src/tools/agent-learning-consolidation-core.ts +327 -0
  212. package/src/tools/agent-learning-consolidation-tool.ts +758 -0
  213. package/src/tools/agent-memory-tool.ts +214 -0
  214. package/src/tools/agent-model-compare-export.ts +315 -0
  215. package/src/tools/agent-model-compare-handoff.ts +592 -0
  216. package/src/tools/agent-model-compare-judgment.ts +633 -0
  217. package/src/tools/agent-model-compare-run.ts +722 -0
  218. package/src/tools/agent-model-compare-tool.ts +698 -0
  219. package/src/tools/agent-model-compare-types.ts +191 -0
  220. package/src/tools/agent-model-compare-utils.ts +93 -0
  221. package/src/tools/agent-models-tool.ts +208 -0
  222. package/src/tools/agent-operator-action-tool.ts +1 -1
  223. package/src/tools/agent-operator-method-tool.ts +643 -0
  224. package/src/tools/agent-personal-ops-tool.ts +197 -0
  225. package/src/tools/agent-policy-explanation.ts +415 -0
  226. package/src/tools/agent-research-report-tool.ts +608 -0
  227. package/src/tools/agent-research-runs-tool.ts +434 -0
  228. package/src/tools/agent-research-sources-tool.ts +443 -0
  229. package/src/tools/agent-research-tool.ts +687 -0
  230. package/src/tools/agent-review-packet-presets-core.ts +757 -0
  231. package/src/tools/agent-review-packet-presets-tool.ts +466 -0
  232. package/src/tools/agent-review-packet-share-tool.ts +305 -0
  233. package/src/tools/agent-route-planner-candidates-setup.ts +411 -0
  234. package/src/tools/agent-route-planner-candidates-surfaces.ts +432 -0
  235. package/src/tools/agent-route-planner-candidates-work.ts +251 -0
  236. package/src/tools/agent-route-planner-helpers.ts +667 -0
  237. package/src/tools/agent-route-planner.ts +185 -0
  238. package/src/tools/agent-route-tool.ts +105 -0
  239. package/src/tools/agent-schedule-edit-tool.ts +210 -0
  240. package/src/tools/agent-schedule-tool.ts +282 -0
  241. package/src/tools/agent-security-tool.ts +145 -0
  242. package/src/tools/agent-sessions-tool.ts +122 -0
  243. package/src/tools/agent-settings-import-tool.ts +104 -0
  244. package/src/tools/agent-settings-tool.ts +176 -0
  245. package/src/tools/agent-setup-tool.ts +226 -0
  246. package/src/tools/agent-support-tool.ts +122 -0
  247. package/src/tools/agent-terminal-process-tools.ts +167 -0
  248. package/src/tools/agent-tool-policy-guard-types.ts +77 -0
  249. package/src/tools/agent-tool-policy-guard.ts +106 -85
  250. package/src/tools/agent-vibe-tool.ts +297 -0
  251. package/src/tools/agent-work-plan-tool.ts +265 -6
  252. package/src/tools/agent-workspace-tool.ts +305 -0
  253. package/src/tools/artifact-archive.ts +169 -0
  254. package/src/tools/tool-definition-compaction.ts +36 -0
  255. package/src/version.ts +1 -1
@@ -8,8 +8,9 @@ GoodVibes Agent is a TUI-first operator assistant. The workspace is the primary
8
8
  - Agent Knowledge uses only `/api/goodvibes-agent/knowledge/*`.
9
9
  - Agent does not query default knowledge or other product knowledge spaces.
10
10
  - Connected-host lifecycle is external. Agent reports and uses public routes, but does not start, stop, restart, install, expose, or mutate the host listener.
11
- - Code-building work is explicit delegation to GoodVibes TUI. Delegated review is never the default reasoning path.
11
+ - Local read/edit/exec is available for explicit work in the current Agent workspace when permissions are sufficient. `execution action:"status|route"` exposes process monitor, live tail, tool inspector, browser/desktop ready-attention-setup state, workflow cards, setup checklists, fallback routes, sudo posture, tracked process routes, and delegation decision cards for local work. `execution action:"history|record|processes|process|recovery"` gives direct read-only access to activity cards, exact records, tracked local processes, bounded redacted output, and file edit recovery. First-class `terminal` and `process` adapters expose the expected `terminal(command, background:true)` and `process(action:"list|poll|wait|log|kill|write")` UX over the same tracked ProcessManager lifecycle. Lower-level `execution_posture`, `execution_route`, `background_processes`, `background_process`, `run_background_process`, `execution_history`, `execution_history_item`, `file_recovery`, and `run_file_recovery` modes remain available for detailed compatibility inspection and confirmed recovery/lifecycle effects. Visible Agent subagents stay serial-by-default unless parallelism helps the user; `agent_orchestration` and `agent_orchestration_agent` expose live Agent state, managed multi-agent plan cards, work-plan links, dispatch receipts, closeout review cards, remote-runner evidence, auto-attached remote artifact review routes, spawn/batch-spawn policy, and safe first-class `agent` control routes, while confirmed `agent_work_plan action:"dispatch_agents"` converts approved plan items into visible agent jobs with saved receipts. Delegation is for isolation, parallelism, remote execution, separate worktrees, or user-requested delegated review; `delegation action:"status|routes|route"` exposes local-first, TUI handoff, delegated-review, remote-inspection, and hidden-fanout-blocked lanes with required fields, success evidence, status routes, and recovery routes.
12
12
  - External delivery, notifications, reminders, media generation, setting writes, keybinding writes, UI routing, slash-command execution, workspace-action execution, local destructive changes, and connected-host operator actions require explicit user request and confirmation.
13
+ - Autonomous scheduled work uses the first-class `schedule` adapter: `schedule action:"list|create|remind|edit|run|pause|resume|delete"`. Creation still requires an explicit task or reminder, cadence, success criteria for autonomous work, user request provenance, and confirmation.
13
14
 
14
15
  ## User-Facing Surfaces
15
16
 
@@ -22,53 +23,85 @@ High-signal TUI routes:
22
23
  | `/health`, `/compat`, `/auth` | Inspect runtime, connected-host, compatibility, and auth posture. |
23
24
  | `/model`, `/provider`, `/effort` | Inspect or change provider/model/reasoning routes. |
24
25
  | `/knowledge` | Use isolated Agent Knowledge. |
25
- | `/memory`, `/notes`, `/personas`, `/skills`, `/routines` | Manage Agent-local behavior libraries. |
26
+ | `/vibe`, `/memory`, `/notes`, `/personas`, `/skills`, `/routines` | Manage VIBE.md personality and Agent-local behavior libraries. |
26
27
  | `/plan`, `/workplan` | Planning and durable visible work tracking. |
27
28
  | `/approval`, `/automation`, `/schedule` | Read posture and run exact confirmed operator actions. |
28
- | `/channels`, `/notify`, `/qrcode` | Pair companions, inspect channel readiness, and send confirmed messages. |
29
+ | `/channels`, `/notify`, `/qrcode` | Pair companions, inspect channel readiness, review delivery receipts, and send confirmed messages. |
29
30
  | `/media`, `/voice`, `/tts` | Inspect media/voice readiness, generate media, and run spoken turns. |
30
31
  | `/mcp`, `/secrets`, `/settings`, `/config` | Inspect or update Agent-local configuration. |
31
- | `/delegate` | Hand explicit build/fix/review work to GoodVibes TUI. |
32
+ | `/delegate` | Hand explicit build/fix/review work to GoodVibes TUI with a confirmed handoff brief. |
32
33
 
33
34
  ## Model Tools
34
35
 
35
36
  | Tool | Use |
36
37
  | --- | --- |
38
+ | `route` | Pick the best visible Agent route for a plain user task without executing tools or creating hidden work. |
39
+ | `agent` | Spawn, batch-spawn, inspect, message, wait, cancel, and report visible Agent subagents. |
37
40
  | `agent_harness` | Discover and operate Agent harness routes, including visible surfaces and operator/audit inspection. |
38
41
  | `agent_knowledge` | Read isolated Agent Knowledge: status, ask/search, lists, item, map, connectors. |
39
- | `agent_knowledge_ingest` | Confirmed ingest into isolated Agent Knowledge. |
42
+ | `agent_knowledge_ingest` | Confirmed URL, file, artifact-id, browser, bookmark, or connector ingest into isolated Agent Knowledge. |
43
+ | `agent_learning_consolidation` | Preview, apply, rollback, or exact-id recreate one confirmed Agent-local duplicate-consolidation phase with receipts. |
40
44
  | `agent_local_registry` | Inspect or update Agent-local memory, notes, personas, skills, bundles, and routines. |
41
- | `agent_work_plan` | Keep the visible Agent-local work plan current. |
45
+ | `agent_work_plan` | Keep the visible Agent-local work plan current and dispatch approved plan items to visible agents with confirmation and receipts. |
42
46
  | `agent_operator_briefing` | Read connected work, approvals, automation, schedules, and capacity posture. |
47
+ | `schedule` | List, create, edit, run, pause, resume, and delete connected schedules through existing confirmation gates. |
48
+ | `setup` | Inspect first-run setup, choose the next safe setup repair route, show one setup row, inspect/save/clear checkpoints, repair token auth, run setup smoke, finish onboarding, and import GoodVibes settings through existing gates. |
49
+ | `security` | Read security posture/findings and explain why one model action is allowed, denied, or needs confirmation. |
50
+ | `vibe` | Inspect VIBE.md status/show, create project/global VIBE.md, or import VIBE.md as an Agent-local persona through existing gates. |
51
+ | `computer` | Inspect browser/PWA readiness, plan browser/screenshot/desktop-control workflows, inspect MCP/setup posture, and open the browser cockpit through confirmation-gated visible routes. |
52
+ | `device` | Inspect device capability, companion/mobile, voice/media, and provider posture; open TTS pickers through confirmation-gated visible routes. Browser/PWA and desktop-control compatibility routes remain available, but `computer` is the primary route. |
53
+ | `import_goodvibes_settings` | Preview or apply shared GoodVibes settings import through the existing redacted import plan and confirmation gate, including source-package ownership metadata. |
43
54
  | `agent_operator_action` | Run exact confirmed approval/automation/schedule actions. |
44
- | `agent_channel_send` | Send one confirmed channel message. |
55
+ | `agent_schedule_edit` | Edit one confirmed connected schedule by id. |
56
+ | `agent_documents` | Create, revise, review, comment on, suggest changes to, list, show, attach saved artifacts to, insert saved artifacts into, and export project-scoped drafts with reviewer appendices. |
57
+ | `agent_review_packet_presets` | Save, list, show, freshness-check, and refresh reusable Document Ops review packet presets without changing drafts, routes, handoffs, archives, or source presets. |
58
+ | `agent_review_packet_share` | Share one confirmed reviewer handoff archive reference through a configured channel target without printing or attaching ZIP bytes. |
59
+ | `agent_artifacts` | Browse, preview, export, package, and archive saved Agent artifacts. |
60
+ | `agent_research_runs` | Create, checkpoint, pause, resume, cancel, complete, fail, list, and show log tails for project-local visible research run records. |
61
+ | `agent_research_sources` | Capture, review, reject, mark used, list, and bundle project-local research source queue records. |
62
+ | `agent_research_report` | Save one confirmed sourced research report artifact with source map, citation coverage metadata, repair hints, and optional visual report packet sections. |
63
+ | `research` | Plan research, inspect runs/sources, bundle reviewed sources, and perform confirmed run/source/report actions through one user-facing route. |
64
+ | `agent_channel_send` | Send one confirmed channel message and return a receipt id when receipt storage is available. |
45
65
  | `agent_notify` | Send one confirmed notification through configured webhook targets. |
66
+ | `agent_autonomy_schedule` | Create one confirmed visible autonomous Agent schedule. |
46
67
  | `agent_reminder_schedule` | Create one confirmed connected reminder/schedule. |
47
68
  | `agent_media_generate` | Generate one confirmed image/video artifact. |
69
+ | `agent_model_compare` | Run, review, side-by-side view, handoffDiff with section jumps, judge, routeDecision receipts, task/document/benchmark-filtered analytics/synthesis, apply, export, handoff, handoffArchive, or reveal one blind model comparison, optionally from a saved text artifact. |
48
70
 
49
71
  ## `agent_harness`
50
72
 
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.
73
+ Use `route action:"plan" query:"..."` first when a plain user task could map to several GoodVibes surfaces. It returns the preferred visible route, alternatives, missing fields, confirmation boundary, workspace matches, and harness mode matches without running tools. Host/daemon health, doctor, readiness, service, and compatibility diagnostics route to `host action:"status"` before any repair or service lifecycle effect. Normal settings/configuration requests route to `settings action:"list"` before any set/reset mutation. Model provider, local cookbook, local server smoke, and route-fit wording routes to `models action:"provider|local|smoke|route"` before credential, smoke, benchmark, or route-change effects. Personal Ops briefing, saved queue, fresh inbox/calendar read, and connector setup wording routes to `personal_ops action:"briefing|queue|intake|lane"` before live provider reads or effects. Direct reminder, schedule, cron, and schedule lifecycle requests route to `schedule action:"list"` before confirmed schedule effects; broader ongoing work stays on autonomy intake. Command-shaped background work routes to `execution action:"processes"` and the first-class `terminal`/`process` UX; interactive PTY/stdin/sudo wording routes to `execution action:"process_capabilities"` before any hidden process start or credential effect; scheduled or watcher-like background work stays on autonomy intake. External-memory provider, backend, cross-session sync, import/export, or named-provider wording routes to `memory action:"provider"` or the external provider checklist before any provider write, sync, credential, or import/export effect. Browser-backed research runner wording routes to `research action:"runner"` readiness, and visual research report rendering routes to `research action:"plan"` plus report artifacts before claiming browser/PWA rendering. Voice workflow and TTS-provider wording routes to `device action:"voice|provider"` before capture, playback, or picker effects. Browser cockpit/PWA wording routes to `computer action:"browser"` before confirmed visible browser handoff. Channel setup, triage, delivery receipts, and send requests route to `channels action:"setup|triage|deliveries|channel"` before confirmed external delivery. Permission posture, security finding, and blocked-action questions route to `security action:"status|finding|explain"`. Support-bundle requests route to `support action:"status|bundle"` before bundle export/import/share effects. Saved-session, bookmark, transcript, and continuity requests route to `sessions action:"list|get"` before session lifecycle effects. Release readiness, release evidence, verification ledger, and operator/audit requests route to `audit action:"readiness|evidence|item|artifact"`. File undo/redo/recovery requests route to `execution action:"recovery"` before any snapshot is applied. Media generation requests route to media provider readiness and confirmed `agent_media_generate` saved artifacts. Screenshot, browser-navigation/control, screen-observation, and desktop-control requests are routed to `computer action:"plan"` before live UI tools are considered. Use `setup action:"repair"` first when the user asks to fix setup or the connected host; it chooses the next safe token repair, status, services.status receipt, user-run bootstrap, or no-action route without executing it. Use `agent_harness mode:"summary"` for the broader cockpit. It starts with an assistant cockpit for setup, chat/model, project work, Personal Ops, research/docs, background work, and safety/recovery before implementation counters. 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
74
 
53
75
  Discovery modes:
54
76
 
55
77
  | Mode | What It Lists |
56
78
  | --- | --- |
57
- | `summary` | Compact counts, status, and a short guide for where to drill in next. |
79
+ | `summary` | Assistant cockpit lanes, compact counts, status, and drill-in guide. |
58
80
  | `modes` | Searchable catalog of every `agent_harness` mode and its task fit. |
59
- | `workspace`, `workspace_categories`, `workspace_actions` | Workspace categories and actions. |
60
- | `commands`, `cli_commands` | Slash commands and top-level package CLI mirrors with compact policy and route hints. |
61
- | `panels`, `ui_surfaces` | Built-in panels and visible modal/overlay/picker/workspace surfaces. |
62
- | `shortcuts`, `keybindings` | Fixed shortcuts and configurable keybindings with direct route/access metadata. |
81
+ | `route action:"plan"` plus lower-level `route_decision` | User-task route planning across Agent setup, Personal Ops, research runner/report workflows, autonomy, execution, delegation, computer/browser/PWA, workspace, host, device/voice/TTS, channel, security, support bundles, saved sessions/bookmarks, release/audit evidence, Local Context, external memory-provider setup, and Knowledge surfaces. |
82
+ | `workspace action:"status|actions|action"` plus lower-level `workspace`, `workspace_categories`, `workspace_actions` | Workspace categories and actions. |
83
+ | `workspace action:"commands|command|cli_commands|cli_command"` plus lower-level `commands`, `cli_commands` | Slash commands and top-level package CLI mirrors with compact policy and route hints. |
84
+ | `workspace action:"panels|panel|surfaces|surface"` plus lower-level `panels`, `ui_surfaces` | Built-in panels and visible modal/overlay/picker/workspace surfaces. |
85
+ | `workspace action:"shortcuts|keybindings|keybinding"` plus lower-level `shortcuts`, `keybindings` | Fixed shortcuts and configurable keybindings with direct route/access metadata. |
63
86
  | `settings` | Compact Agent setting rows with category, prefix, query, hidden, and limit filters. |
64
87
  | `tools` | First-class model tool definitions with compact harness inspection routes; schema details require `includeParameters:true` or `tool`. |
65
- | `channels`, `notifications` | Channel readiness and redacted notification targets. |
66
- | `provider_accounts`, `model_routing` | Provider auth and provider/model route posture. |
67
- | `mcp_servers`, `setup_posture`, `pairing_posture`, `delegation_posture` | MCP, setup, pairing, and build-delegation posture. |
68
- | `security_posture`, `support_bundles`, `media_posture`, `sessions` | Security, bundle route, voice/media, and session/bookmark posture. |
69
- | `operator_methods` | Public operator and Agent Knowledge method catalog. |
70
- | `service_posture`, `connected_host`, `daemon` | Endpoint, connected-host, and daemon alias posture. |
71
- | `release_evidence`, `release_readiness` | Operator/audit release artifacts and release-quality inventory. |
88
+ | `channels action:"status|channel|setup|triage|deliveries"`, `notifications` | Channel readiness, ordered setup guide state, blockers/retry triage, redacted confirmed-send receipts, and redacted notification targets. |
89
+ | `context action:"files|file"` | Secret-scanned `.hermes.md`, `HERMES.md`, `AGENTS.md`, `CLAUDE.md`, `HERMES_HOME/SOUL.md`, `.cursorrules`, and `.cursor/rules/*.mdc` files, including target-aware subdirectory context. |
90
+ | `context action:"prompt|receipts|receipt"` | Applied prompt composition order, recent durable receipt ids, exact receipt/turn/outcome filters, sanitized turn outcomes, selected context records, suppressed records, prompt previews on request, and approximate token budget; the same recent receipt outcomes are summarized in Agent Workspace -> Local Context with exact drill-in routes. |
91
+ | `memory action:"status|provider|curator|candidate|list|search|get"` plus lower-level `memory_posture`, `memory_provider` | Agent-local memory counts, prompt-active recall, vector stats, embedding-provider doctor warnings, provider inspection, curator review queues, direct memory record lookup/search, and external-memory setup contract maps for Honcho, OpenViking, Mem0, Hindsight, Holographic, RetainDB, ByteRover, and Supermemory, including provider-specific next routes, missing setup/status/read/write/sync checks, and required receipt fields without claiming unpublished SDK/daemon provider records. |
92
+ | `agent_orchestration` | Live visible Agent records, managed multi-agent plan cards with milestones, work-plan links, dispatch receipt counts, closeout cards, remote-runner evidence, auto-attached remote artifact review routes, serial-by-default policy, approved work-plan dispatch route, spawn/batch-spawn decision cards, templates, and first-class `agent` routes for list/inspect/message/wait/cancel. |
93
+ | `models action:"status|route|local|providers|provider|smoke"` plus lower-level `provider_accounts`, `model_routing`, `model_route`, `run_local_model_smoke` | Provider auth, provider/model route posture, visible route-readiness inspection, readiness scores, hardware-scored local model cookbook with setup plans, exact local endpoint inspection, confirmed local model-list smoke checks, models-endpoint smoke criteria and refresh/provider-add hints, confirmed benchmark action/history/evidence review, and compatibility detail routes. |
94
+ | `execution action:"status|route|history|record|processes|process_capabilities|process|recovery"`, `terminal`, `process`, plus lower-level execution harness modes | Local-vs-delegated execution routing, tracked process inspection, interactive PTY/stdin/sudo posture, direct process parity/doctor reports, first-class background-process start/manage adapters, process substrate probes with future stdin-write dispatch, grouped execution activity cards with redacted records, and file edit recovery. |
95
+ | `personal_ops action:"briefing|status|queue|intake|lane|read"` plus lower-level `personal_ops_briefing`, `personal_ops`, `personal_ops_queue`, `personal_ops_intake`, `personal_ops_lane`, `run_personal_ops_read` | Read-only daily briefing plan across inbox, agenda, tasks, reminders, routines, delivery, notes, and autonomy queue; read-only saved inbox/calendar review queue with refresh routes and follow-up boundaries; inbox/calendar connector readiness, request intake that chooses the safest lane/route/fields/confirmation boundary, classified MCP read/write tool hints, schema-derived operation records with fresh-read routes, triage/draft/agenda/conflict workflow cards, ordered connector-read/local-compose/confirmed-effect execution plans, confirmed read-only MCP inbox/calendar reads with bounded redacted output, normalized review cards, optional saved redacted review-card artifacts surfaced as redacted inbox thread/calendar event queue records with artifact inspect routes, freshness status, confirmed refresh routes when a matching read connector is ready, local draft/reminder follow-up routes, and confirmed provider-effect boundaries, matching MCP setup routes, and live Agent-owned note, routine, schedule-receipt, and delivery records. |
96
+ | `autonomy action:"intake|queue|item|status"` | Ongoing-work route selection, visible autonomous work owners, schedule/watcher trigger posture, watcher receipt criteria, source-owned watcher evidence contracts, status, live records, log tails, task/run diagnostics, host task output routes/previews, inspect routes, and normalized checkpoint/pause/resume/cancel/recovery controls. Lower-level `autonomy_intake`, `autonomy_queue`, and `autonomy_queue_item` modes remain available for detailed compatibility inspection. |
97
+ | `memory action:"curator|candidate"` plus lower-level `learning_curator`, `learning_candidate` | Score-driven prompt plan, ranked local memory, note, persona, skill, bundle, routine, VIBE.md personality health, duplicate-consolidation batch review, completed-work, completed-research, and saved-session review/proposal candidates. |
98
+ | `document_ops`, `document_ops_lane` | Documents, review packet timeline, review packet wizard, packet presets/defaults/freshness, reviewer-readiness checks, uploads, exports, sources, artifact browse/promotion, media artifacts, and blind model comparison. |
99
+ | `mcp_servers`, `setup_posture`, `setup_repair`, `pairing_posture`, `delegation action:"status|routes|route"` | MCP, first-run setup wizard with direct `setup action:"status|item|repair|checkpoint|token|smoke|finish"` route hints, progress/current-step/checkpoint/backtracking routes, checkpoint auto-advance evidence, repeated-smoke-blocker focus, setup closeout decisions, read-only repair decisions for token/status/bootstrap/lifecycle/no-action routes, setup plan with probe-fed connected-host repair/auth cards, service lifecycle receipt gates, service repair success criteria, certified receipt outcomes, exact service lifecycle decisions, sudo execution posture, primary handoffs for actionable setup rows, confirmed local token provisioning, token-safe install smoke checks, confirmed setup smoke execution, saved redacted smoke evidence artifacts with history/trend surfacing, local model readiness with endpoint smoke-test follow-through, pairing/device capability posture, and build-delegation posture. Lower-level `delegation_posture` and `delegation_route` remain compatibility routes. |
100
+ | `security action:"status|finding|explain"` plus lower-level `security_posture`, `security_finding`, `policy_explain` | Redacted security posture, exact findings, and read-only policy explanations for allowed, denied, blocked, or confirmation-required model actions; route planning prefers status for active permission/approval questions, finding for incidents or leaked-secret records, and explain for one blocked or risky action. |
101
+ | `support action:"status|bundle"`, `media_posture`, `sessions action:"list|get"` | Redacted support bundle posture, voice/media posture, and saved session/bookmark posture; lower-level support/session modes remain available for detailed compatibility inspection. |
102
+ | `host action:"status|capabilities|capability|services|service|methods|method"` | Connected-host status, capability map/detail, service endpoint posture/detail, and public daemon method catalog/detail. |
103
+ | `operator_methods`, `service_posture`, `connected_host`, `daemon` | Lower-level compatibility/detail routes for public operator methods, endpoint posture, connected-host posture, and daemon aliases. |
104
+ | `audit action:"readiness|evidence|item|artifact"` | Operator/audit release artifacts and release-quality inventory; lower-level release evidence/readiness modes remain available for detailed compatibility inspection. |
72
105
 
73
106
  Single-item inspect modes:
74
107
 
@@ -78,9 +111,15 @@ Single-item inspect modes:
78
111
  | `workspace_action` | `actionId`, `command`, `target`, `query` |
79
112
  | `command`, `cli_command` | `command`, `commandName`, `cliCommand`, `target`, `query` |
80
113
  | `panel`, `ui_surface`, `keybinding`, `tool` | Exact id/name or `target`/`query` |
81
- | `channel`, `notification_target`, `provider_account`, `mcp_server` | Exact id or `target`/`query` |
82
- | `setup_item`, `model_route`, `pairing_route`, `delegation_route` | Exact id/model key or `target`/`query` |
83
- | `security_finding`, `support_bundle`, `media_provider`, `session` | Exact id/path or `target`/`query` |
114
+ | `channels action:"channel|setup|triage"`, `notification_target`, `provider_account`, `mcp_server` | Exact id or `target`/`query`; channel triage also accepts `limit` |
115
+ | `project_context_file` | `contextFileId`, `target`, or `query` |
116
+ | `agent_orchestration_agent` | `agentId`, `target`, or `query` |
117
+ | `setup_item`, `setup_repair`, `model_route`, `execution action:"route"`, `pairing_route`, `delegation action:"route"` | Exact id/model key or `target`/`query` |
118
+ | `setup_checkpoint` | Saved setup wizard checkpoint and current resume step, no lookup required |
119
+ | `personal_ops_briefing`, `personal_ops_queue`, `personal_ops_intake` | `query` or `target` |
120
+ | `personal_ops_lane`, `document_ops_lane` | `laneId`, `target`, or `query` |
121
+ | `memory action:"candidate"` or lower-level `learning_candidate` | `candidateId`, `target`, or `query` |
122
+ | `security action:"finding|explain"`, lower-level `security_finding`, `policy_explain`, `support_bundle`, `media_provider`, `session` | Exact id/path/tool name or `target`/`query`; `policy_explain` also accepts `toolArgs` |
84
123
  | `get_setting`, `service_endpoint`, `operator_method` | Exact key/id or `target`/`query` |
85
124
  | `connected_host_capability` | `capabilityId`, `target`, `query` |
86
125
  | `connected_host_status`, `daemon_status` | Live read-only status, no lookup required |
@@ -90,12 +129,17 @@ Effect modes:
90
129
 
91
130
  | Mode | Effect |
92
131
  | --- | --- |
93
- | `run_workspace_action` | Executes one resolved workspace action through the same editor, command, or local route as the TUI. |
94
- | `run_command` | Executes one resolved slash command through the shared command registry. |
95
- | `open_panel`, `open_ui_surface` | Routes visible shell navigation. |
96
- | `run_keybinding` | Runs supported shell-safe keybinding actions only. |
97
- | `set_keybinding`, `reset_keybinding` | Writes the same Agent `keybindings.json` file exposed to the user. |
132
+ | `setup` tool | Preferred first-run setup route: `action:"status|item|repair|checkpoint"` reads, and `action:"save_checkpoint|clear_checkpoint|token|smoke|finish|import_settings"` delegates to existing confirmed setup effects. |
133
+ | `workspace action:"run"` | Executes one resolved workspace action through the same editor, command, or local route as the TUI; `actionId:"onboarding-apply-close"` is the confirmed setup closeout marker write. |
134
+ | `workspace action:"run_command"` | Executes one resolved slash command through the shared command registry. |
135
+ | `provision_connected_host_token` | Creates or repairs the local canonical connected-host token after confirmation without returning the raw token. |
136
+ | `mark_setup_checkpoint`, `clear_setup_checkpoint` | Saves or clears the Agent-owned setup wizard resume checkpoint after confirmation. |
137
+ | `run_setup_smoke` | Collects redacted first-run setup smoke evidence and can save user-run output as an artifact without implicit shell or host commands; `setup_posture` uses that evidence for setup closeout. |
138
+ | `workspace action:"open_panel|open"` | Routes visible shell navigation. |
139
+ | `workspace action:"run_keybinding"` | Runs supported shell-safe keybinding actions only. |
140
+ | `workspace action:"set_keybinding|reset_keybinding"` | Writes the same Agent `keybindings.json` file exposed to the user. |
98
141
  | `set_setting`, `reset_setting` | Writes Agent settings through the config/secret managers. |
142
+ | `run_file_recovery` | Applies one local file undo or redo snapshot from the FileUndoManager. |
99
143
 
100
144
  Every effect mode requires `confirm:true` and `explicitUserRequest`. Ambiguous lookups return candidates before any effect runs.
101
145
 
@@ -103,39 +147,59 @@ Registered model tool definitions are compact by default. Tool descriptions use
103
147
 
104
148
  ## Workspace Action Execution
105
149
 
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`.
150
+ `workspace action:"actions"` returns compact action rows with short `modelRoute` hints. `workspace action:"action"` inspection returns editor schemas and `modelExecution` detail. Lower-level `workspace_actions` can include the same detail with `includeParameters:true`.
107
151
 
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.
152
+ `workspace action:"panels"` returns compact built-in panel rows with workspace route metadata and a short `modelRoute` for visible navigation or matching workspace operation. `workspace action:"panel"` inspection adds policy detail and current open/focus state.
109
153
 
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.
154
+ Use `computer action:"browser"` for the connected browser cockpit/PWA readiness summary and `computer action:"open_browser" confirm:true explicitUserRequest:"..."` for the visible browser handoff. Use `computer action:"plan" query:"take a screenshot"` to choose the safest browser navigation, screenshot/observation, or desktop-control workflow before invoking any live-control tool; it returns setup/review/fallback routes plus exact tool or MCP-server inspection routes when configured. Use `computer action:"control|setup|mcp"` for browser/desktop control posture, repair routes, and trusted tool/server discovery. `workspace action:"surfaces|surface|open"` is the normal visible UI route; lower-level `browser_control_route`, `ui_surfaces`, and `ui_surface` remain detailed compatibility routes. The connected browser cockpit/PWA is `surfaceId:"connected-browser-cockpit"`; it resolves the configured connected-host web URL, opens only through confirmed `computer action:"open_browser"` or `workspace action:"open"`, returns service/web setup routes when disabled, and reports workspace category coverage, mobile/PWA controls, Agent onboarding marker status, and the currently unpublished browser/PWA first-run receipt contract.
111
155
 
112
156
  Execution routes:
113
157
 
114
- - Local memory, notes, personas, skills, routines, and bundles dispatch through `agent_local_registry`.
115
- - Confirmed Agent Knowledge URL/file/bookmark/browser-history/connector ingest dispatches through `agent_knowledge_ingest`.
116
- - Command-backed editors dispatch through `run_command`.
158
+ - GoodVibes settings import previews changed setting/subscription counts without mutation; confirmed execution imports only Agent-owned settings and provider subscription state, redacts secret values, stores raw secret-backed values through the secret manager, and does not mutate source package stores.
159
+ - VIBE.md personality files are discovered from project/global locations, secret-scanned, surfaced in setup and the learning curator when blocked or truncated, and applied to the serial Agent prompt. Use `vibe action:"status|show"` for direct read-only inspection, `vibe action:"init|import_persona" confirm:true explicitUserRequest:"..."` for confirmed changes, or `/vibe` and the Personas workspace for the visible command surface. Unconfirmed init/import previews return model and CLI `confirmationRoutes` so users can approve the exact same personality action without reconstructing syntax.
160
+ - Project context files are discovered from `.hermes.md`, `HERMES.md`, `AGENTS.md`, `CLAUDE.md`, optional `HERMES_HOME/SOUL.md`, `.cursorrules`, and `.cursor/rules/*.mdc`, secret-scanned, bounded, target-aware for subdirectory work, and inspectable through `context action:"files"` and `context action:"file"`.
161
+ - Local memory posture, provider inspection, curator review, search, and lookup prefer `memory`; notes, personas, skills, routines, bundles, and detailed local record mutations dispatch through `agent_local_registry`.
162
+ - Runtime prompt context applies safe VIBE.md files, safe project context files, and only reviewed, high-confidence memory plus reviewed setup-ready behavior. Blocked or truncated VIBE.md/context files and enabled but unreviewed, stale, low-confidence, or setup-blocked local behavior are surfaced as suppressed review work. Prompt builds write durable receipts with ids, turn/source/model/provider, selected and suppressed record refs, segment counts, prompt hash, size, timestamp, and sanitized completed/error/cancelled outcome without storing raw prompt or response text; Agent Workspace -> Local Context shows the compact receipt outcome timeline, exact latest-receipt route, and outcome filter routes for users. Use `context action:"prompt|receipts|receipt"` for current applied order, recent receipt ids, `receiptId`/`turnId`/`outcomeStatus` filters, turn outcomes, selected records, suppressed records, and approximate token budget before relying on persistent context; use setup, project context inspection, the Memory -> Prompt plan action, or the learning curator to fix suppressed work.
163
+ - Read-only learning review uses `memory action:"curator"` and `memory action:"candidate"`; the curator returns a prompt plan with prompt-active records, suppressed review/setup/low-confidence/personality/consolidation counts, proposal queues, consolidation queues, usefulness/freshness/source-quality/risk ordering rules, and exact routes before durable context expands. Duplicate-consolidation candidates expose survivor ids, visible field diffs, low-level update/stale/delete/rollback routes, and first-class `agent_learning_consolidation` preview/merge/stale/delete/rollback/recreate phase routes. Merge and stale write durable receipts with rollback routes, delete refuses records that have not already been staged stale, and post-delete receipts preserve snapshots plus exact-id recreate guidance. Confirmed recreate is separate from rollback and refuses when current records would force a different id. Reviewed-note, completed-work, completed-research, and saved-session memory/behavior proposals reuse selected-note promotion, memory-create, or learned-behavior capture routes. Non-consolidation writes stay on `agent_local_registry` or visible workspace actions.
164
+ - Agent document draft browse/show/create/revise/review/comment/suggest/accept-suggestion/reject-suggestion/artifact-insert/export dispatches through `agent_documents`; export artifacts include reviewer-ready comment and suggestion summaries. Reviewer-readiness checks are visible through Agent Workspace -> Documents & Compare -> Review readiness preflight and read-only through `agent_harness mode:"document_ops"` or `mode:"document_ops_lane" laneId:"reviewer_readiness"`; they return exact routes for resolving comments, accepting/rejecting suggestions, attaching evidence, revealing comparisons, applying or leaving model-route decisions, and repairing handoff evidence before export/archive/apply. The review packet wizard is visible through Agent Workspace -> Documents & Compare -> Review packet wizard and read-only through `mode:"document_ops_lane" laneId:"review_packet_wizard"`; it reports six-step progress, the current user/model route, backtracking routes, refreshed-preset lineage when a packet preset was repaired, final archive review guidance, and the confirmed share route. Agent Workspace -> Documents & Compare -> Save packet preset and `agent_review_packet_presets mode:"save"` store one reusable local packet preset artifact with document/export/comparison/judgment/route-decision/handoff/archive/related artifact ids; `mode:"list"` and `mode:"show"` inspect presets, flag missing or superseded saved ids, and recommend newer matching reuse routes when metadata is sufficient, without mutation. Agent Workspace -> Documents & Compare -> Refresh packet preset and `mode:"refresh"` save a new local preset artifact from those freshness recommendations after confirmation, preserving the source preset for audit history and never mutating documents, model routes, handoffs, or archives. Agent Workspace -> Documents & Compare -> Share review packet and `agent_review_packet_share` validate one saved handoff archive artifact, preview the delivery target and packet evidence ids, and send only a plain-text archive reference after explicit confirmation; ZIP bytes still move through `agent_artifacts mode:"export"` or package/archive routes. `agent_model_compare mode:"apply"` saves an apply-winner route-decision receipt after a confirmed route update, while `mode:"routeDecision" decision:"left-unchanged"` saves a receipt without changing the selected model; `mode:"handoffArchive"` carries matching route-decision receipt artifacts into the ZIP, README, archive metadata, and redacted manifest. Review packet defaults use the latest document/export/comparison/judgment/route-decision/handoff evidence, falling back to saved preset metadata only when live packet evidence is missing, to prefill document export, compare handoff/archive, winner-apply, leave-unchanged decision, save-preset, and share forms while preserving editable fields and confirmation gates.
165
+ - Start deep research routing with `research action:"briefing"` when the model needs one read-only next-action queue across visible runs, source review, saved report artifacts, browser readiness, and exact follow-up routes. Use `research action:"plan"` when it needs one ordered route plan across visible run state, public web/fetch or browser posture, browser-runner contract readiness, source capture/review, visual-report packet saving, and optional Knowledge promotion. Use `research action:"search"` for bounded public web research that returns capture-ready source candidates and exact confirmed `add_source` routes without writing local source state; pass `runId` to use the visible run's saved question and receive run-specific start/checkpoint follow-up routes. Use `research action:"runner"` for the direct browser-backed runner readiness contract without the full workflow plan. The browser-runner contract names setup/fallback routes, visible run controls, source-capture receipts, bounded logs, and report handoff before live browser-backed execution is treated as ready. The visual-report contract names report sections, source-map/citation acceptance criteria, `research action:"report" visualReport:true` save routes, review-packet, and ZIP archive routes without saving anything by itself. Use `research action:"reports"` to list saved sourced report artifacts and `research action:"report_artifact" artifactId:"..."` to preview one report packet before export, archive, share, or Knowledge promotion. Visible research run creation/checkpoint/pause/resume/cancel/complete, log-tail inspection, source capture/review/bundles, and confirmed sourced report saves all have direct `research` actions; run detail and mutation outputs include next-route packets for inspect, briefing, workflow, run-bound search, source queue, checkpoint, report save, artifact inspection, and Knowledge promotion when a report artifact exists. Source detail and mutation outputs include next-route packets for review/reject, bundle, sourced report save, mark-used, report artifact inspection, and optional URL/artifact Knowledge promotion while preserving the separate confirmation gate. Confirmed report saves include next-route packets for high-level report inspection, artifact export/archive, Knowledge promotion, report listing, and visible run completion when `runId` is supplied. Lower-level `agent_research_runs`, `agent_research_sources`, and `agent_research_report` remain available for detailed compatibility routes.
166
+ - Confirmed Agent Knowledge URL/file/artifact-id/bookmark/browser-history/connector ingest dispatches through `agent_knowledge_ingest`.
167
+ - Command-backed editors dispatch through `workspace action:"run_command"`.
117
168
  - Learned-behavior and profile creation use the Agent-local or slash-command route.
118
169
  - Web research/fetch forms return a main-conversation prompt instead of starting hidden nested work.
119
170
  - Selection-based actions accept `recordId` so the model can use the same selected-record flows as the TUI.
120
171
 
172
+ ## Background Processes
173
+
174
+ Use `execution action:"processes"` for a compact list of tracked local processes, `execution action:"process" processId:"..."` for one process with bounded redacted stdout/stderr tails plus byte/count/truncation metadata, and `execution action:"capabilities"` or `action:"process_capabilities"` for the read-only terminal/process/PTY/sudo parity report. Use `terminal` for the simple model-facing start path: `terminal command:"pytest -v tests/" background:true confirm:true explicitUserRequest:"..."`. Use `process` for the simple lifecycle path: `process action:"list"`, `process action:"poll" session_id:"..."`, `process action:"log" session_id:"..."`, `process action:"wait" session_id:"..." confirm:true explicitUserRequest:"..."`, `process action:"kill" session_id:"..." confirm:true explicitUserRequest:"..."`, `process action:"write" session_id:"..." data:"..." confirm:true explicitUserRequest:"..."`, and `process action:"capabilities"`.
175
+
176
+ Use lower-level `background_processes` and `background_process` only when detailed compatibility route inspection is needed, and confirmed `run_background_process` when the lower-level harness lifecycle route is needed. The route accepts process-tool wording: `start`, `wait`, `stop`, `kill`, `poll`, `log`, and `write`; `poll` maps to status, `log` maps to output with the same explicit truncation metadata, `kill` maps to stop, and `write` requires `confirm:true`, `explicitUserRequest`, one process id, and non-empty `data`. With the current SDK, `write` returns unsupported guidance; if the shared ProcessManager exposes a safe stdin method such as `writeInput`, Agent dispatches through that method without echoing the input back. `processId`, `processSessionId`, `sessionId`, or `session_id` all resolve the tracked process id.
177
+
178
+ Foreground `exec` remains the default for tests, builds, and one-shot commands. Raw exec background flags and `bg_*` controls are blocked in Agent so long-running work has a visible process id, process monitor/live-tail routes, timeout, and cancellation path. PTY mode returns unsupported guidance until the SDK/daemon process substrate exposes a typed interactive session API. Background sudo prompts are blocked; privileged commands should stay visible and user-supervised. `setup action:"item" setupItemId:"sudo-execution-posture"` shows SUDO_PASSWORD presence only, the expected `~/.goodvibes/.env` location for future mediated support, blocked background sudo/stdin password routes, missing SDK/daemon contracts, and the foreground shell route without printing or storing raw password values.
179
+
121
180
  ## Settings And Keybindings
122
181
 
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.
182
+ Settings discovery accepts `settings action:"list"` with `category`, `prefix`, `query`, `includeHidden:true`, and `limit`. It is compact by default and each row includes a short first-class `modelRoute` that distinguishes read-only settings from set/reset-capable settings; use `includeParameters:true` or `settings action:"get"` for full descriptions/defaults. Single setting reads/writes resolve by `key`, `target`, or `query`; ambiguous matches are refused. Secret-backed setting writes through `settings action:"set"` store raw values through the secret manager and return redacted output. Shared GoodVibes settings import is `settings action:"import"`: it previews by default and applies with `confirm:true explicitUserRequest:"..."`. The preview includes source-package ownership metadata so users can see that goodvibes-tui or another published GoodVibes platform store remains source-owned and is not mutated by Agent. `import_goodvibes_settings action:"preview|apply"`, `setup action:"import_settings"`, and `workspace action:"run" actionId:"import-goodvibes-tui-settings"` remain available for compatibility or visible form parity; lower-level `agent_harness mode:"run_workspace_action"` remains a detailed compatibility route. Connected-host lifecycle/listener settings are read-only in Agent.
124
183
 
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.
184
+ 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 routes from direct-user-only controls. `workspace action:"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.
126
185
 
127
186
  ## Connected Host And Daemon
128
187
 
129
188
  The connected host is external. Agent can inspect it through:
130
189
 
131
- - `service_posture` and `service_endpoint` for endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
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.
135
- - `operator_methods` and `operator_method` for the public method catalog.
190
+ - `host action:"services|service"` for endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
191
+ - `host action:"capabilities|capability"` for compact connected-host posture, direct `modelRoute` hints, route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability.
192
+ - `host action:"status"` for live read-only readiness checks and the next diagnostic route.
193
+ - `setup action:"repair"` for the current setup blocker or a named host/auth/service target; it returns the safest next route without executing lifecycle, token, import, or UI effects.
194
+ - `setup action:"item" setupItemId:"connected-host-readiness"` for the missing-host bootstrap plan: user-run Bun, GoodVibes host install/trust, binary verification, service start, and Agent reconnect commands before operator methods are reachable.
195
+ - `host action:"methods|method"` for the public method catalog.
136
196
 
137
197
  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.
138
198
 
199
+ ## Visible Autonomy
200
+
201
+ Use `autonomy action:"intake"` first when the user asks for ongoing work and the safest route is not obvious. It is read-only and returns the likely route, missing fields, confirmation boundary, and trigger workflow posture for time-based wakeups/schedules, incoming webhooks/watchers, Gmail/email connector triggers, and control-plane event streams. Webhook, watcher, Gmail, or event-trigger requests now point to the published `watchers.create` contract when applicable, but watcher creation is an admin connected-host mutation: require trusted source/scope, task or run target, success criteria, `confirm:true`, and `explicitUserRequest`. The intake action also returns watcher receipt success criteria plus a read-only watcher evidence contract for SDK/daemon-owned durable run-history receipts, provider source records, redacted event payload descriptors, and autonomy queue correlation. Confirmed `agent_operator_method` calls summarize `watchers.create/patch/run/start/stop/delete` receipts into certified or follow-up outcomes without exposing operator tokens. Use `schedule action:"create"` for one visible autonomous schedule, `schedule action:"remind"` for reminders, `schedule action:"edit"` for one exact schedule edit, and `schedule action:"run|pause|resume|delete"` for lifecycle controls; it forwards to the same preview, read-only current-state diff, confirmation, and connected-host routes as `agent_autonomy_schedule`, `agent_reminder_schedule`, `agent_schedule_edit`, and allowlisted `agent_operator_action`, then returns post-action next routes for schedule list, autonomy queue inspection, run, edit, pause, resume, and delete where the schedule still exists. Unconfirmed schedule and routine-promotion previews return `confirmationRoutes` so the user or model can confirm the same intent without guessing the next command. Confirmed routine schedule promotion through the workspace or `/schedule promote-routine` returns the same post-action schedule next routes. Use `autonomy action:"queue"` before creating recurring autonomous work, reminders, routine schedules, delegated work, run controls, schedule edits, approval decisions, watcher triggers, or follow-up delivery. The queue is read-only and normalizes work-plan, research-run, connected task, approval, automation, schedule, reminder, routine-promotion, delegated-agent, and delivery cards. Research runs, connected-host tasks, approvals, automation runs, and schedules include live records with status/progress, source ids, next steps, log tails when available, task retry/output/correlation diagnostics, bounded redacted host task output route/preview descriptors, automation telemetry/delivery/route diagnostics, available controls, unavailable controls with reasons, and exact inspect/checkpoint/pause/resume/cancel/approve/deny/retry/run/edit/enable/disable/delete routes where supported. Schedule records expose pause/resume aliases over daemon enable/disable lifecycle routes so users do not have to translate scheduler terminology. Connected-host task cancel/retry uses `agent_operator_method` exact daemon methods with `confirm:true` plus `explicitUserRequest`; slash `/tasks` remains inspection-only. Inspect one card with `autonomy action:"item"`; lower-level `agent_harness mode:"autonomy_intake|autonomy_queue|autonomy_queue_item"` remains available for detailed route inspection. Create, edit, run, pause, resume, cancel, approve, deny, send, schedule, and schedule lifecycle effects stay on the owning confirmed route returned by that card.
202
+
139
203
  ## Agent Knowledge
140
204
 
141
205
  Use the Knowledge workspace first. Scriptable mirrors:
@@ -178,8 +242,12 @@ Read views are safe by default. Mutations require exact target ids and confirmat
178
242
  /automation job resume <job-id> --yes
179
243
  /automation run cancel <run-id> --yes
180
244
  /automation run retry <run-id> --yes
181
- /automation schedule run <schedule-id> --yes
245
+ /automation schedule <run|enable|disable|delete> <schedule-id> --yes
182
246
  /schedule run <schedule-id> --yes
247
+ /schedule enable <schedule-id> --yes
248
+ /schedule disable <schedule-id> --yes
249
+ /schedule delete <schedule-id> --yes
250
+ /schedule edit <schedule-id> [--cron <expr>|--every <interval>|--at <iso-time>] [--timezone <tz>] [--name <text>] [--prompt <text>|--task <text> --success-criteria <text>] --yes
183
251
  ```
184
252
 
185
253
  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.
@@ -190,14 +258,14 @@ Routine promotion is an explicit scheduling route. Local routines stay local unt
190
258
  | --- | --- |
191
259
  | `/accounts` | Review provider auth routes, subscription windows, and billing-path safety. |
192
260
  | `/agent` | Open the GoodVibes Agent operator workspace. |
193
- | `/agent-profile` | Manage isolated Agent profiles and starter templates. |
261
+ | `/agent-profile` | Manage isolated Agent profiles and starter templates, including opt-in VIBE.md starter export/import with `--include-vibe`. |
194
262
  | `/approval` | Review approval classes and run exact confirmed approval actions. |
195
263
  | `/auth` | Review provider auth posture and export redacted auth review bundles. |
196
264
  | `/automation` | Run confirmed connected-host automation actions from the Agent TUI. |
197
265
  | `/bookmarks` | List bookmarked transcript blocks. |
198
266
  | `/brief` | Show a concise Agent operator briefing and next actions. |
199
267
  | `/bundle` | Export, inspect, or import redacted Agent support bundles from the TUI. |
200
- | `/channels` | Inspect channel readiness or send one explicitly confirmed delivery message. |
268
+ | `/channels` | Inspect channel readiness, delivery receipts, or send one explicitly confirmed delivery message. |
201
269
  | `/clear` | Clear the conversation display while keeping LLM context. |
202
270
  | `/collapse` | Collapse rendered blocks by type. |
203
271
  | `/commands` | Browse all commands in a scrollable list. |
@@ -206,7 +274,7 @@ Routine promotion is an explicit scheduling route. Local routines stay local unt
206
274
  | `/config` | Open the fullscreen configuration workspace. |
207
275
  | `/context` | Inspect context-window usage and token breakdown. |
208
276
  | `/conversation` | Review conversation structure, transcript hotspots, and composer posture. |
209
- | `/delegate` | Explicitly delegate build/fix/review work to GoodVibes TUI. |
277
+ | `/delegate` | Explicitly delegate build/fix/review work to GoodVibes TUI with reason, success criteria, workspace hint, priority, and explicit review intent. |
210
278
  | `/effort` | Show or set reasoning effort level. |
211
279
  | `/expand` | Expand rendered blocks by type. |
212
280
  | `/export` | Export the current conversation to Markdown. |
@@ -254,6 +322,7 @@ Routine promotion is an explicit scheduling route. Local routines stay local unt
254
322
  | `/tts` | Submit a normal prompt and play the assistant response through live TTS. |
255
323
  | `/undo` | Undo the last conversation turn. |
256
324
  | `/unpin` | Unpin a model from the favorites list. |
325
+ | `/vibe` | Inspect, create, show, or import VIBE.md personality files. |
257
326
  | `/voice` | Review voice posture and portable voice metadata. |
258
327
  | `/welcome` | Open or print the Agent setup guide. |
259
328
  | `/workplan` | Track a persistent workspace-scoped work plan. |
@@ -20,7 +20,9 @@ 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. 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.
23
+ The model can inspect the same settings through `settings action:"list|get"`, use `device action:"voice|provider"` for voice/media posture and provider inspection, open the visible TTS provider or voice picker through `device action:"open_tts_provider|open_tts_voice"` with confirmation, and change Agent-owned TTS settings with `settings action:"set"` plus explicit confirmation. Lower-level `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. It also returns a voice workflow map for push-to-talk input, voice memo transcription, spoken responses, and wake-word capture, with ready/attention/setup-needed/not-published states and exact setup routes. 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
+
25
+ Wake-word and always-listening capture are intentionally reported as `not-published` until the runtime exposes a permission-scoped contract. Until then, Agent should guide users to explicit voice input and `/tts` rather than implying background microphone capture exists.
24
26
 
25
27
  ## Playback Requirements
26
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "1.1.7",
3
+ "version": "1.2.0",
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",
@@ -58,7 +58,8 @@
58
58
  "perf:check": "bun run scripts/perf-check.ts",
59
59
  "architecture:check": "bun run scripts/check-architecture.ts",
60
60
  "verification:ledger": "bun run scripts/verification-ledger.ts",
61
- "verification:live": "bun run scripts/verify-live.ts"
61
+ "verification:live": "bun run scripts/verify-live.ts",
62
+ "ux:inventory": "bun run scripts/competitive-ux-inventory.ts"
62
63
  },
63
64
  "license": "MIT",
64
65
  "repository": {