@pellux/goodvibes-agent 0.1.116 → 1.0.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 (285) hide show
  1. package/CHANGELOG.md +48 -661
  2. package/README.md +64 -57
  3. package/bin/goodvibes-agent.ts +16 -2
  4. package/dist/package/main.js +199180 -192185
  5. package/docs/README.md +15 -8
  6. package/docs/channels-remote-and-api.md +50 -0
  7. package/docs/connected-host.md +59 -0
  8. package/docs/getting-started.md +61 -50
  9. package/docs/knowledge-artifacts-and-multimodal.md +91 -0
  10. package/docs/project-planning.md +79 -0
  11. package/docs/providers-and-routing.md +46 -0
  12. package/docs/release-and-publishing.md +48 -11
  13. package/docs/tools-and-commands.md +123 -0
  14. package/docs/voice-and-live-tts.md +51 -0
  15. package/package.json +3 -6
  16. package/src/agent/behavior-discovery-summary.ts +1 -3
  17. package/src/agent/channel-delivery.ts +201 -0
  18. package/src/agent/media-generation.ts +159 -0
  19. package/src/agent/memory-prompt.ts +0 -1
  20. package/src/agent/note-registry.ts +329 -0
  21. package/src/agent/operator-actions.ts +343 -0
  22. package/src/agent/persona-discovery.ts +1 -3
  23. package/src/agent/persona-registry.ts +19 -16
  24. package/src/agent/record-labels.ts +107 -0
  25. package/src/agent/reminder-schedule-format.ts +33 -24
  26. package/src/agent/reminder-schedule.ts +27 -26
  27. package/src/agent/routine-registry.ts +54 -14
  28. package/src/agent/routine-schedule-args.ts +2 -1
  29. package/src/agent/routine-schedule-format.ts +77 -53
  30. package/src/agent/routine-schedule-promotion.ts +35 -33
  31. package/src/agent/routine-schedule-receipts.ts +29 -27
  32. package/src/agent/runtime-profile-starters.ts +5 -5
  33. package/src/agent/runtime-profile.ts +91 -12
  34. package/src/agent/skill-registry.ts +210 -32
  35. package/src/cli/agent-knowledge-args.ts +5 -1
  36. package/src/cli/agent-knowledge-command.ts +40 -34
  37. package/src/cli/agent-knowledge-format.ts +80 -67
  38. package/src/cli/agent-knowledge-methods.ts +1 -1
  39. package/src/cli/agent-knowledge-runtime.ts +32 -26
  40. package/src/cli/bundle-command.ts +14 -9
  41. package/src/cli/config-overrides.ts +37 -36
  42. package/src/cli/entrypoint.ts +16 -7
  43. package/src/cli/external-runtime.ts +10 -4
  44. package/src/cli/help.ts +54 -29
  45. package/src/cli/local-library-command.ts +203 -83
  46. package/src/cli/management-commands.ts +105 -68
  47. package/src/cli/management.ts +55 -74
  48. package/src/cli/memory-command.ts +66 -32
  49. package/src/cli/parser.ts +37 -3
  50. package/src/cli/profiles-command.ts +166 -31
  51. package/src/cli/provider-auth-routes.ts +2 -1
  52. package/src/cli/routines-command.ts +176 -40
  53. package/src/cli/service-posture.ts +16 -16
  54. package/src/cli/status.ts +56 -135
  55. package/src/core/conversation-message-snapshot.ts +131 -0
  56. package/src/input/agent-workspace-access-command-editor-submission.ts +149 -0
  57. package/src/input/agent-workspace-access-command-editors.ts +170 -0
  58. package/src/input/agent-workspace-activation.ts +35 -8
  59. package/src/input/agent-workspace-basic-command-editor-submission.ts +351 -94
  60. package/src/input/agent-workspace-basic-command-editors.ts +502 -9
  61. package/src/input/agent-workspace-categories.ts +423 -51
  62. package/src/input/agent-workspace-channel-command-editor-submission.ts +83 -0
  63. package/src/input/agent-workspace-channel-command-editors.ts +65 -0
  64. package/src/input/agent-workspace-channels.ts +35 -2
  65. package/src/input/agent-workspace-command-editor.ts +41 -3
  66. package/src/input/agent-workspace-config-reader.ts +16 -0
  67. package/src/input/agent-workspace-delegation-editor-submission.ts +55 -0
  68. package/src/input/agent-workspace-editors.ts +166 -1
  69. package/src/input/agent-workspace-knowledge-command-editor-submission.ts +132 -0
  70. package/src/input/agent-workspace-knowledge-command-editors.ts +110 -0
  71. package/src/input/agent-workspace-knowledge-query-editor.ts +1 -1
  72. package/src/input/agent-workspace-learned-behavior.ts +67 -0
  73. package/src/input/agent-workspace-library-command-editor-submission.ts +50 -0
  74. package/src/input/agent-workspace-library-command-editors.ts +35 -0
  75. package/src/input/agent-workspace-local-operations.ts +218 -0
  76. package/src/input/agent-workspace-local-selection.ts +75 -0
  77. package/src/input/agent-workspace-mcp-command-editor-submission.ts +95 -0
  78. package/src/input/agent-workspace-media-command-editor-submission.ts +62 -0
  79. package/src/input/agent-workspace-media-command-editors.ts +27 -0
  80. package/src/input/agent-workspace-memory-command-editor-submission.ts +232 -0
  81. package/src/input/agent-workspace-memory-command-editors.ts +180 -0
  82. package/src/input/agent-workspace-memory-editor.ts +2 -2
  83. package/src/input/agent-workspace-navigation.ts +81 -0
  84. package/src/input/agent-workspace-notify-editor-submission.ts +121 -0
  85. package/src/input/agent-workspace-operations-command-editor-submission.ts +208 -0
  86. package/src/input/agent-workspace-operations-command-editors.ts +196 -0
  87. package/src/input/agent-workspace-panel-route.ts +43 -0
  88. package/src/input/agent-workspace-provider-command-editor-submission.ts +155 -0
  89. package/src/input/agent-workspace-provider-command-editors.ts +93 -0
  90. package/src/input/agent-workspace-reminder-schedule-editor.ts +1 -1
  91. package/src/input/agent-workspace-requirements.ts +11 -0
  92. package/src/input/agent-workspace-routine-schedule-editor.ts +2 -2
  93. package/src/input/agent-workspace-search.ts +169 -0
  94. package/src/input/agent-workspace-secret-editor-submission.ts +153 -0
  95. package/src/input/agent-workspace-session-command-editor-submission.ts +199 -0
  96. package/src/input/agent-workspace-session-command-editors.ts +249 -0
  97. package/src/input/agent-workspace-setup.ts +37 -16
  98. package/src/input/agent-workspace-skill-bundle-command-editor-submission.ts +101 -0
  99. package/src/input/agent-workspace-skill-bundle-command-editors.ts +110 -0
  100. package/src/input/agent-workspace-snapshot.ts +162 -21
  101. package/src/input/agent-workspace-task-command-editor-submission.ts +61 -0
  102. package/src/input/agent-workspace-task-command-editors.ts +47 -0
  103. package/src/input/agent-workspace-token.ts +18 -2
  104. package/src/input/agent-workspace-types.ts +212 -4
  105. package/src/input/agent-workspace-voice-media.ts +4 -7
  106. package/src/input/agent-workspace-web-research-editor.ts +104 -0
  107. package/src/input/agent-workspace-workplan-editor-submission.ts +153 -0
  108. package/src/input/agent-workspace.ts +178 -240
  109. package/src/input/command-registry.ts +5 -2
  110. package/src/input/commands/agent-runtime-profile-runtime.ts +126 -37
  111. package/src/input/commands/agent-skills-runtime.ts +149 -72
  112. package/src/input/commands/agent-workspace-runtime.ts +23 -6
  113. package/src/input/commands/brief-runtime.ts +55 -25
  114. package/src/input/commands/channels-runtime.ts +147 -33
  115. package/src/input/commands/compat-runtime.ts +32 -0
  116. package/src/input/commands/delegation-runtime.ts +29 -23
  117. package/src/input/commands/experience-runtime.ts +6 -4
  118. package/src/input/commands/guidance-runtime.ts +4 -4
  119. package/src/input/commands/health-runtime.ts +149 -126
  120. package/src/input/commands/knowledge.ts +82 -60
  121. package/src/input/commands/local-provider-runtime.ts +43 -21
  122. package/src/input/commands/local-runtime.ts +138 -16
  123. package/src/input/commands/local-setup-review.ts +10 -20
  124. package/src/input/commands/mcp-runtime.ts +63 -46
  125. package/src/input/commands/notify-runtime.ts +38 -9
  126. package/src/input/commands/operator-actions-runtime.ts +138 -0
  127. package/src/input/commands/operator-runtime.ts +6 -76
  128. package/src/input/commands/personas-runtime.ts +46 -31
  129. package/src/input/commands/planning-runtime.ts +1 -1
  130. package/src/input/commands/platform-access-runtime.ts +35 -98
  131. package/src/input/commands/product-runtime.ts +2 -2
  132. package/src/input/commands/provider-accounts-runtime.ts +60 -39
  133. package/src/input/commands/qrcode-runtime.ts +50 -9
  134. package/src/input/commands/recall-bundle.ts +11 -11
  135. package/src/input/commands/recall-capture.ts +13 -11
  136. package/src/input/commands/recall-query.ts +29 -21
  137. package/src/input/commands/recall-review.ts +2 -1
  138. package/src/input/commands/routines-runtime.ts +99 -45
  139. package/src/input/commands/runtime-services.ts +1 -14
  140. package/src/input/commands/schedule-runtime.ts +33 -20
  141. package/src/input/commands/security-runtime.ts +6 -11
  142. package/src/input/commands/session-content.ts +80 -78
  143. package/src/input/commands/session-workflow.ts +134 -104
  144. package/src/input/commands/session.ts +3 -174
  145. package/src/input/commands/shell-core.ts +38 -17
  146. package/src/input/commands/subscription-runtime.ts +54 -185
  147. package/src/input/commands/support-bundle-runtime.ts +53 -0
  148. package/src/input/commands/tasks-runtime.ts +21 -21
  149. package/src/input/commands/work-plan-runtime.ts +33 -8
  150. package/src/input/commands.ts +6 -2
  151. package/src/input/feed-context-factory.ts +2 -2
  152. package/src/input/file-picker.ts +3 -2
  153. package/src/input/handler-command-route.ts +4 -7
  154. package/src/input/handler-content-actions.ts +89 -26
  155. package/src/input/handler-feed-routes.ts +19 -12
  156. package/src/input/handler-feed.ts +6 -5
  157. package/src/input/handler-interactions.ts +9 -36
  158. package/src/input/handler-modal-stack.ts +3 -3
  159. package/src/input/handler-onboarding.ts +52 -91
  160. package/src/input/handler-shortcuts.ts +16 -7
  161. package/src/input/handler.ts +50 -23
  162. package/src/input/input-history.ts +5 -6
  163. package/src/input/keybindings.ts +27 -16
  164. package/src/input/mcp-workspace.ts +90 -26
  165. package/src/input/onboarding/handler-onboarding-routes.ts +3 -1
  166. package/src/input/onboarding/onboarding-wizard-apply.ts +62 -0
  167. package/src/input/onboarding/onboarding-wizard-constants.ts +1 -0
  168. package/src/input/onboarding/onboarding-wizard-helpers.ts +1 -1
  169. package/src/input/onboarding/onboarding-wizard-operator-steps.ts +223 -55
  170. package/src/input/onboarding/onboarding-wizard-steps.ts +59 -35
  171. package/src/input/onboarding/onboarding-wizard-types.ts +4 -1
  172. package/src/input/onboarding/onboarding-wizard.ts +87 -2
  173. package/src/input/profile-picker-modal.ts +31 -12
  174. package/src/input/session-picker-modal.ts +21 -4
  175. package/src/input/settings-modal-agent-policy.ts +6 -6
  176. package/src/input/settings-modal-behavior.ts +0 -3
  177. package/src/input/settings-modal-subscriptions.ts +3 -3
  178. package/src/input/settings-modal-types.ts +2 -13
  179. package/src/input/settings-modal.ts +20 -66
  180. package/src/input/submission-intent.ts +0 -1
  181. package/src/input/submission-router.ts +3 -3
  182. package/src/main.ts +18 -10
  183. package/src/panels/approval-panel.ts +8 -8
  184. package/src/panels/automation-control-panel.ts +4 -4
  185. package/src/panels/base-panel.ts +1 -1
  186. package/src/panels/builtin/agent.ts +1 -1
  187. package/src/panels/builtin/operations.ts +3 -12
  188. package/src/panels/builtin/session.ts +32 -24
  189. package/src/panels/builtin/shared.ts +7 -7
  190. package/src/panels/cost-tracker-panel.ts +1 -1
  191. package/src/panels/docs-panel.ts +5 -3
  192. package/src/panels/index.ts +0 -1
  193. package/src/panels/knowledge-panel.ts +6 -5
  194. package/src/panels/memory-panel.ts +7 -6
  195. package/src/panels/panel-list-panel.ts +36 -80
  196. package/src/panels/project-planning-panel.ts +19 -12
  197. package/src/panels/provider-account-snapshot.ts +51 -25
  198. package/src/panels/provider-accounts-panel.ts +33 -18
  199. package/src/panels/provider-health-domains.ts +48 -7
  200. package/src/panels/provider-health-panel.ts +5 -4
  201. package/src/panels/qr-panel.ts +44 -20
  202. package/src/panels/schedule-panel.ts +9 -17
  203. package/src/panels/security-panel.ts +8 -8
  204. package/src/panels/session-browser-panel.ts +10 -10
  205. package/src/panels/subscription-panel.ts +6 -6
  206. package/src/panels/system-messages-panel.ts +3 -3
  207. package/src/panels/tasks-panel.ts +21 -14
  208. package/src/panels/tool-inspector-panel.ts +19 -12
  209. package/src/panels/work-plan-panel.ts +5 -5
  210. package/src/planning/project-planning-coordinator.ts +3 -3
  211. package/src/provider-auth-route-display.ts +9 -0
  212. package/src/renderer/agent-workspace-style.ts +34 -0
  213. package/src/renderer/agent-workspace.ts +254 -57
  214. package/src/renderer/autocomplete-overlay.ts +25 -6
  215. package/src/renderer/block-actions.ts +1 -3
  216. package/src/renderer/bookmark-modal.ts +19 -4
  217. package/src/renderer/buffer.ts +4 -2
  218. package/src/renderer/context-inspector.ts +50 -13
  219. package/src/renderer/diff.ts +1 -1
  220. package/src/renderer/file-picker-overlay.ts +19 -6
  221. package/src/renderer/help-overlay.ts +112 -34
  222. package/src/renderer/history-search-overlay.ts +19 -4
  223. package/src/renderer/live-tail-modal.ts +27 -5
  224. package/src/renderer/mcp-workspace.ts +176 -43
  225. package/src/renderer/model-picker-overlay.ts +58 -3
  226. package/src/renderer/model-workspace.ts +104 -22
  227. package/src/renderer/onboarding/onboarding-wizard.ts +20 -4
  228. package/src/renderer/process-modal.ts +27 -6
  229. package/src/renderer/profile-picker-modal.ts +21 -5
  230. package/src/renderer/search-overlay.ts +25 -5
  231. package/src/renderer/selection-modal-overlay.ts +46 -14
  232. package/src/renderer/session-picker-modal.ts +18 -1
  233. package/src/renderer/settings-modal-helpers.ts +2 -40
  234. package/src/renderer/settings-modal.ts +88 -55
  235. package/src/renderer/system-message.ts +1 -1
  236. package/src/renderer/tool-call.ts +20 -11
  237. package/src/runtime/agent-runtime-events.ts +129 -0
  238. package/src/runtime/bootstrap-command-context.ts +7 -1
  239. package/src/runtime/bootstrap-command-parts.ts +11 -8
  240. package/src/runtime/bootstrap-core.ts +23 -65
  241. package/src/runtime/bootstrap-hook-bridge.ts +7 -18
  242. package/src/runtime/bootstrap-shell.ts +46 -8
  243. package/src/runtime/bootstrap.ts +36 -46
  244. package/src/runtime/connected-host-auth.ts +47 -0
  245. package/src/runtime/diagnostics/panels/index.ts +2 -2
  246. package/src/runtime/diagnostics/panels/panel-resources.ts +1 -1
  247. package/src/runtime/diagnostics/panels/policy.ts +7 -7
  248. package/src/runtime/index.ts +2 -5
  249. package/src/runtime/onboarding/apply-file-helpers.ts +66 -0
  250. package/src/runtime/onboarding/apply.ts +288 -74
  251. package/src/runtime/onboarding/derivation.ts +10 -13
  252. package/src/runtime/onboarding/snapshot.ts +2 -17
  253. package/src/runtime/onboarding/types.ts +34 -20
  254. package/src/runtime/onboarding/verify.ts +105 -4
  255. package/src/runtime/operator-token-cleanup.ts +3 -3
  256. package/src/runtime/services.ts +95 -11
  257. package/src/runtime/store/selectors/index.ts +3 -3
  258. package/src/runtime/store/state.ts +1 -4
  259. package/src/runtime/surface-feature-flags.ts +41 -6
  260. package/src/runtime/ui-read-models.ts +3 -4
  261. package/src/runtime/ui-services.ts +6 -6
  262. package/src/shell/blocking-input.ts +2 -1
  263. package/src/shell/service-settings-sync.ts +7 -7
  264. package/src/shell/ui-openers.ts +17 -38
  265. package/src/tools/agent-analysis-registry-policy.ts +0 -1
  266. package/src/tools/agent-channel-send-tool.ts +133 -0
  267. package/src/tools/agent-context-policy.ts +1 -1
  268. package/src/tools/agent-knowledge-ingest-tool.ts +405 -0
  269. package/src/tools/agent-knowledge-tool.ts +170 -0
  270. package/src/tools/agent-local-registry-tool.ts +279 -73
  271. package/src/tools/agent-media-generate-tool.ts +133 -0
  272. package/src/tools/agent-notify-tool.ts +143 -0
  273. package/src/tools/agent-operator-action-tool.ts +137 -0
  274. package/src/tools/agent-operator-briefing-tool.ts +217 -0
  275. package/src/tools/agent-reminder-schedule-tool.ts +237 -0
  276. package/src/tools/agent-tool-policy-guard.ts +13 -15
  277. package/src/tools/agent-work-plan-tool.ts +256 -0
  278. package/src/version.ts +1 -1
  279. package/docs/connected-services.md +0 -51
  280. package/src/cli/package-verification.ts +0 -274
  281. package/src/input/commands/policy-dispatch.ts +0 -339
  282. package/src/input/commands/policy.ts +0 -17
  283. package/src/panels/panel-picker.ts +0 -105
  284. package/src/panels/policy-panel.ts +0 -308
  285. package/src/renderer/panel-picker-overlay.ts +0 -202
package/CHANGELOG.md CHANGED
@@ -1,685 +1,72 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to GoodVibes Agent will be recorded here.
3
+ Product-facing release notes for GoodVibes Agent.
4
4
 
5
- ## 0.1.116 - 2026-06-02
6
-
7
- - Includes the behavior-discovery and profile setup work prepared in 0.1.115; 0.1.115 was superseded before npm publish.
8
- - 8fcd30f fix: split architecture-gated modules
9
-
10
- ## 0.1.115 - 2026-06-02
11
-
12
- - d0e1499 feat: guide setup to discovered profiles
13
- - b94ce82 feat: create profiles from discovered behaviors
14
- - 5590487 feat: create starters from discovered behaviors
15
- - 70c5261 feat: show behavior imports in onboarding
16
- - d836392 feat: surface discovered behaviors in setup
17
-
18
- ## 0.1.114 - 2026-06-02
19
-
20
- - 34cbe9d feat: import discovered agent routines
21
- - 98a003a feat: add persona import workspace form
22
- - c205cad feat: import discovered agent personas
23
-
24
- ## 0.1.113 - 2026-06-02
25
-
26
- - efe8b9c feat: expose skill discovery in agent cli
27
- - 13ef595 fix: align agent docs and launch identity
28
- - 26fb57b fix: keep agent diagnostics product scoped
29
-
30
- ## 0.1.112 - 2026-06-02
31
-
32
- - 566995c test: align operator visibility gate
33
- - 5035e09 fix: remove daemon-home cli flag
34
- - f31e35c fix: remove copied recall cli alias
35
- - aba694f fix: hide stale health open usage
36
- - a771a42 fix: remove copied panel entrypoints from agent commands
37
- - 27c858d fix: keep work tracking out of copied panels
38
- - f13c66a fix: keep profile workspace agent owned
39
- - 523415f fix: simplify agent command surface
40
- - 0e55cb3 ci: collapse branch gate into one test job
41
- - 5d6d7f3 fix: make mcp servers setup action explicit
42
- - 95b6994 feat: show connected channel diagnostics
43
- - 1daeac0 fix: keep host posture out of agent setup
44
- - e8ef013 feat: improve channel setup visibility
45
-
46
- ## 0.1.111 - 2026-06-02
47
-
48
- - 3c53136 fix: harden package runtime bundle
49
-
50
- ## 0.1.110 - 2026-06-02
51
-
52
- - 31caa81 fix: retire redundant TUI launcher command
53
- - 028e397 feat: improve agent workspace and package runtime
54
- - f322d6b feat: add operator MCP setup workspace
55
-
56
- ## 0.1.109 - 2026-06-02
57
-
58
- - 4152420 Let Agent remember through local registry tool
59
-
60
- ## 0.1.108 - 2026-06-02
61
-
62
- - f6b278c Harden Agent install and briefing
63
- - 46fa071 Split Agent Knowledge CLI helpers
64
- - ec03fc0 Add Agent Knowledge connector ingest
65
- - 8c908ca Add Agent Knowledge connector inspection
66
- - 4dda70e Add Agent Knowledge browser history import
67
- - 95bbdbd Add Agent Knowledge file ingest
68
- - 2440959 Add discovered skill import workflow
69
- - 692c0fa Add confirmed reminder scheduling
70
- - a392cc0 Use connected services product language
71
- - 5843cb4 Clean Agent launch and service wording
72
- - ee31dac Open routine starts through command router
73
- - c9512e5 Use Agent-first connected service language
74
- - 2d8d7f4 Focus onboarding on Agent setup
75
- - 855ed91 Trim unused root package dependencies
76
- - d74ae6c Add profile starter workspace forms
77
- - 0f7e834 Add workspace forms for bookmarks media and skill bundles
78
- - c140c9d Tolerate SDK overflow fail-closed refs
79
- - 5093419 Add Agent Knowledge workspace query forms
80
- - c76b249 Add routine schedule workspace form
81
- - 8615c68 Tighten Agent runtime boundary wording
82
- - f4cb026 Add Agent Knowledge URL workspace form
83
- - f523594 Add Agent channel readiness command
84
- - 65f0bfd Make Agent help TUI first
85
-
86
- ## 0.1.107 - 2026-06-01
87
-
88
- - Open the Agent operator workspace automatically on normal TUI launch after first-run setup has been shown.
89
- - Document the Bun global install path with bare `goodvibes-agent` as the interactive smoke.
90
- - Add an in-TUI `/channels` readiness command and workspace action for read-only channel setup review without sending messages or exposing token values.
91
- - Add a confirmed in-workspace Agent Knowledge URL ingest form that writes only through the isolated Agent Knowledge route.
92
-
93
- ## 0.1.106 - 2026-06-01
94
-
95
- - b67a2fe Polish Agent setup entrypoint
96
- - Harden Bun global install with `bun add -g --trust`, zero-untrusted lifecycle verification, and packed TUI launch smoke.
97
- - Make Agent status and doctor output client/operator focused, including external runtime diagnostics and fail-closed isolated Agent Knowledge readiness.
98
- - Route `/memory` to Agent-local durable memory and move conversation-pinned compaction notes to `/session-memory`.
99
- - Remove copied file-edit undo/redo behavior from Agent conversation commands.
100
- - Remove stale hidden-share shortcut guidance and keep diff/file operations delegation-oriented.
101
- - Make provider onboarding generic across provider routes, subscription sessions, and credential inventory while keeping OpenAI as an optional quick-start path.
102
- - Tighten package-facing language around isolated Agent Knowledge and non-Agent knowledge boundaries.
103
- - Shorten release workflow validation by relying on the single branch-CI gate run instead of duplicating release checks.
104
-
105
- ## 0.1.105 - 2026-06-01
106
-
107
- - 7ea88c8 Remove development panel surface
108
-
109
- ## 0.1.104 - 2026-06-01
110
-
111
- - 37fe253 Add Agent memory workspace controls
112
-
113
- ## 0.1.103 - 2026-06-01
114
-
115
- - ed9895a Add CLI controls for Agent memory
116
- - da48bc2 Add CLI controls for local agent libraries
117
- - ef18975 Use runtime naming in agent workspace
118
- - c172f38 Rename Agent tool policy guard
119
- - 7708f3e Prune local agent activity modals
120
- - 24eae8e Remove local agent activity panel
121
- - 90dcd58 Remove legacy release test runner
122
-
123
- ## 0.1.102 - 2026-06-01
124
-
125
- - 34aaea8 Prune hidden copied panel surfaces
126
-
127
- ## 0.1.101 - 2026-06-01
128
-
129
- - 5f35012 Prune hidden copied command surfaces
130
-
131
- ## 0.1.100 - 2026-06-01
132
-
133
- - e2d5eee Run release tests only through branch CI
134
- - 7d46e87 Prune dormant copied command modules
135
-
136
- ## 0.1.99 - 2026-06-01
137
-
138
- - 804edd2 Prune copied setup commands and single-test CI
139
-
140
- ## 0.1.98 - 2026-06-01
141
-
142
- - Avoid duplicate remote test runs during releases by letting the tag Release workflow own the single full validation pass.
143
-
144
- ## 0.1.97 - 2026-06-01
145
-
146
- - d17b910 Harden package TUI launch smoke
147
-
148
- ## 0.1.96 - 2026-06-01
149
-
150
- - 7ae787f Remove unused widget scaffold
151
-
152
- ## 0.1.95 - 2026-06-01
153
-
154
- - a3b0dea Remove copied foundation examples
155
-
156
- ## 0.1.94 - 2026-06-01
157
-
158
- - ae6fa3e Polish Agent runtime status labels
159
-
160
- ## 0.1.93 - 2026-06-01
161
-
162
- - 7f802e5 Add external runtime URL override
163
-
164
- ## 0.1.92 - 2026-06-01
165
-
166
- - f52b62e Fix copied CLI executable guidance
167
-
168
- ## 0.1.91 - 2026-06-01
169
-
170
- - efbb82a Expand Agent Knowledge CLI management
171
-
172
- ## 0.1.90 - 2026-06-01
173
-
174
- - 19f67ea Polish Agent command guidance
175
-
176
- ## 0.1.89 - 2026-06-01
177
-
178
- - 6be201c Fix Agent workspace command targets
179
-
180
- ## 0.1.88 - 2026-06-01
181
-
182
- - e97d2a2 Fix release test service port allocation
183
-
184
- ## 0.1.87 - 2026-06-01
185
-
186
- - cd0d9fc Improve Agent TUI startup diagnostics
187
-
188
- ## 0.1.86 - 2026-06-01
189
-
190
- - aac1849 Retry npm publish verification
191
-
192
- ## 0.1.85 - 2026-06-01
193
-
194
- - 4a046f7 Harden npm publish reruns
195
-
196
- ## 0.1.84 - 2026-06-01
197
-
198
- - 35dbf3d Show live external runtime status
199
-
200
- ## 0.1.83 - 2026-06-01
201
-
202
- - Foregrounded live external-runtime reachability, SDK compatibility, operator-token state, and isolated Agent Knowledge readiness in `status`/`doctor` output.
203
- - Removed the deprecated `actions/cache@v4` setup step so future CI/CD runs avoid Node 20 deprecation annotations from the shared workflow setup action.
204
-
205
- - f5099c1 Hide runtime-owned settings from Agent workspace
206
-
207
- ## 0.1.82 - 2026-06-01
208
-
209
- - 3185531 Remove Agent local auth ownership paths
210
-
211
- ## 0.1.81 - 2026-06-01
212
-
213
- - Added local Agent skill bundles so users can group related local skills, enable or disable the bundle, and inject the bundle's member procedures into the same serial assistant conversation.
214
- - Added `/agent-skills bundle ...` commands plus Agent workspace visibility for skill bundle counts, enabled bundle state, active skill count, and bundle membership.
215
- - Restored the GitHub CI eval gate script and replaced the copied release workflow with an Agent package release workflow that validates Bun global install, package contents, compiled binary launch, and optional registry publish.
216
- - Kept bundles Agent-local and reviewable with no connected-service lifecycle behavior, hidden background agents, or non-Agent knowledge fallback.
217
-
218
- ## 0.1.80 - 2026-06-01
219
-
220
- - Added an Agent day-one readiness checklist to the onboarding review step covering runtime connection, default model route, profile setup, isolated Agent Knowledge, local behavior, channels, routines/schedules, and explicit build delegation.
221
- - Kept the first-run review focused on Agent setup outcomes instead of copied runtime lifecycle or non-Agent knowledge behavior.
222
-
223
- ## 0.1.79 - 2026-06-01
224
-
225
- - Expanded the Voice & Media workspace into a provider readiness matrix covering selected TTS readiness, missing secret key names, media understanding/generation posture, and browser-tool state.
226
- - Kept voice, browser, and generated media side effects explicit: the workspace renders setup state and next steps only, never secret values or hidden runtime actions.
227
-
228
- ## 0.1.78 - 2026-06-01
229
-
230
- - Expanded the Agent channel workspace into a concrete readiness matrix with setup state, missing runtime config keys, default-target posture, and safe next steps for each externally owned channel.
231
- - Kept channel setup read-only inside Agent: no runtime lifecycle ownership, no hidden sends, and no secret values rendered.
232
-
233
- ## 0.1.77 - 2026-06-01
234
-
235
- - Added a first-class Agent profile creation form inside the fullscreen operator workspace instead of dispatching a placeholder command template.
236
- - Surfaced profile and starter-template summaries directly in the Profiles workspace so day-one setup can pick an isolated Agent home from the TUI.
237
- - Made Agent runtime profile creation refuse existing profile homes to protect local profile state across CLI, onboarding, and workspace flows.
238
-
239
- ## 0.1.76 - 2026-05-31
240
-
241
- - Added optional starter profile creation to first-run onboarding so setup can create an isolated Agent home seeded with persona, skill, and routine templates.
242
- - Added onboarding apply/verify support for Agent profile creation with prevalidation, rollback, and overwrite protection.
243
- - Updated onboarding and renderer regressions so the first-run flow stays Agent-specific while exposing the starter profile path directly in the TUI.
244
-
245
- ## 0.1.75 - 2026-05-31
246
-
247
- - Reworded Agent status, doctor, and external runtime diagnostics away from copied service/surface ownership language.
248
- - Added `--delivery-channel` as the documented schedule promotion delivery flag while keeping prior delivery aliases as compatibility-only parser inputs.
249
- - Cleaned Agent TUI help, workspace, and panel guidance so visible copy describes Agent workflows, channels, runtime endpoints, and external runtime connection boundaries.
250
-
251
- ## 0.1.74 - 2026-05-31
252
-
253
- - Filtered checked-in foundation operator artifacts to Agent-relevant routes so host-specific knowledge segments are not documented in Agent artifacts.
254
- - Added a release regression that rejects excluded host-specific route IDs, paths, descriptions, and enum values from Agent operator artifacts.
255
- - Updated foundation artifact wording to describe the Agent-filtered contract instead of a full host contract dump.
256
-
257
- ## 0.1.73 - 2026-05-31
258
-
259
- - Replaced copied first-run capability language with Agent-specific setup: operator TUI, provider access, isolated Agent Knowledge, local memory/skills, channels, automation review, and explicit TUI delegation.
260
- - Reworked the fullscreen settings workspace grouping and descriptions around Agent experience, models, local Agent state, tools/automation, and external runtime connection.
261
- - Added package-facing guards and regressions so copied browser/network/listener setup wording does not return to shipped Agent docs.
262
-
263
- ## 0.1.72 - 2026-05-31
264
-
265
- - Removed copied runtime lifecycle and transport words from the Agent CLI parser, command handler, detailed help, and package exports.
266
- - Replaced package-facing deployment/service docs with runtime-connection docs focused on the external runtime prerequisite and Agent product boundary.
267
- - Added regression coverage so hidden lifecycle words are treated as normal TUI prompts instead of supported Agent commands.
268
-
269
- ## 0.1.71 - 2026-05-31
270
-
271
- - Stopped importing copied TUI slash-command modules that do not belong to the Agent product surface.
272
- - Trimmed the built-in panel registry to Agent-relevant approval, automation, auth, provider, security, task, and policy views.
273
- - Reduced package contents so hidden copied command and panel modules are not shipped with the installed Agent TUI.
274
-
275
- ## 0.1.70 - 2026-05-31
276
-
277
- - Removed copied TUI coding, runtime lifecycle, and developer-maintenance slash commands from the visible Agent command registry.
278
- - Focused `/help` on Agent operator workflows instead of conversation branching, templates, tool inspection, or blocked TUI exit commands.
279
- - Added regression coverage so copied TUI commands stay hidden while Agent knowledge, memory, skills, personas, routines, delegation, schedule, secrets, and work-plan commands remain available.
280
-
281
- ## 0.1.69 - 2026-05-31
282
-
283
- - Made the first-run onboarding detail area wrap selected-row guidance across multiple lines instead of hiding setup context behind single-line truncation.
284
- - Shortened first-screen setup labels and values so Agent identity, runtime connection, secret policy, profiles, and continue actions remain readable at normal terminal widths.
285
- - Fixed tiny-view onboarding scroll behavior so the selected action stays visible when field capacity is minimal.
286
-
287
- ## 0.1.68 - 2026-05-31
288
-
289
- - Removed internal foundation-phase language and blocked lifecycle command examples from package-facing docs.
290
- - Stopped advertising runtime lifecycle and surface-management commands in shell completion while keeping safety blocks for accidental invocations.
291
- - Added package text guards so shipped docs stay focused on the Agent TUI product path.
292
-
293
- ## 0.1.67 - 2026-05-31
294
-
295
- - Reworked remote bridge and remote review language from copied runner/control-room wording to Agent-facing worker/review wording.
296
- - Made bridge worker assignment read-only in Agent and removed hidden contract creation from remote show/contract paths.
297
- - Added regressions around the remote worker review panel and bridge command wording.
298
-
299
- ## 0.1.66 - 2026-05-31
300
-
301
- - Removed remote-runner and node/device posture wording from first-run Agent setup surfaces.
302
- - Replaced the blocked remote-runner workspace action with a read-only build-delegation status action.
303
- - Added onboarding/workspace regressions to keep visible setup focused on Agent features instead of copied runner internals.
304
-
305
- ## 0.1.65 - 2026-05-31
306
-
307
- - Made the operator workspace more product-facing by replacing foundation/setup jargon with Agent profile, runtime status, voice/media, and browser-tool language.
308
- - Removed the remote-runner item from the first-run voice/media workspace so day-one setup stays focused on user-facing assistant capabilities.
309
- - Reworded settings, status panels, profile commands, and docs away from internal runtime terminology while preserving the same underlying contracts.
310
-
311
- ## 0.1.64 - 2026-05-31
312
-
313
- - Cleaned remaining visible setup, workspace, panel, and auth wording that still exposed copied runtime-host terminology.
314
- - Changed the advertised auth login target to runtime/listener while keeping legacy runtime-host aliases non-prominent.
315
- - Added regression coverage so setup and workspace text stay Agent-specific and avoid copied platform/product wording.
316
-
317
- ## 0.1.63 - 2026-05-31
318
-
319
- - Rewrote the remaining repo docs that still read like copied runtime/API notes into Agent-facing product docs.
320
- - Clarified channel, provider, planning, voice, tools, and Agent Knowledge boundaries around external runtime usage and no default Knowledge/Wiki fallback.
321
- - Kept the shipped package focused on the Agent TUI while preserving non-packaged foundation docs as Agent-specific references.
322
-
323
- ## 0.1.62 - 2026-05-31
5
+ ## 1.0.0 - 2026-06-03
324
6
 
325
- - Tightened primary CLI help around Agent workflows instead of advanced runtime diagnostics.
326
- - Reworded onboarding, workspace, and routine schedule surfaces toward Agent/operator language.
327
- - Kept schedule promotion explicit while removing stale runtime-schedule wording from user-facing flows.
7
+ - Promoted GoodVibes Agent to the release-candidate 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.
8
+ - 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.
9
+ - 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.
10
+ - 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.
11
+ - 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.
12
+ - Completed package and release hardening for the 1.0 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 readiness inventory are now part of the validated release path.
328
13
 
329
- ## 0.1.61 - 2026-05-31
14
+ ## 0.1.117 - 2026-06-02
330
15
 
331
- - ff6766d Stop shipping repo-local skills
332
- - 2eedcf5 Focus primary CLI help on Agent use
333
- - 0ec6af0 Document Bun trust path for SDK native deps
334
- - f9a6c76 Surface Agent actions in slash help
16
+ - Added TUI workspace entrypoints for Agent Knowledge connectors, source/node/issue list views, review queue, transcript controls, doctor diagnostics, and connected-host compatibility.
17
+ - Added a TUI-first command coverage regression so product CLI commands cannot drift into shell-only workflows.
18
+ - Updated package-facing docs and help to describe the fullscreen Agent workspace as the primary product surface, with CLI commands only as scriptable mirrors.
335
19
 
336
- ## 0.1.60 - 2026-05-31
337
-
338
- - f3f2486 Stop shipping developer guidance in package
339
- - 80c273e Remove developer debug surface
340
- - e2d058f Remove code intelligence command surface
341
- - acb3eeb Remove coding intelligence render dependencies
342
-
343
- ## 0.1.59 - 2026-05-31
344
-
345
- - f03ee5f Remove unused coding panel sources
346
- - 5950687 Remove blocked teamwork command surface
347
- - e60bf10 Remove noisy Bun preinstall lifecycle
348
-
349
- ## 0.1.58 - 2026-05-31
350
-
351
- - e137f90 Fail cleanly for non-TTY TUI launch
352
-
353
- ## 0.1.57 - 2026-05-31
354
-
355
- - 90edab3 Expand Agent onboarding setup surfaces
356
- - 251ae62 Guard package-facing Agent product language
357
-
358
- ## 0.1.56 - 2026-05-31
359
-
360
- - a0b54e8 Document Bun global PATH setup
361
- - f845cca Rename onboarding setup step
362
- - 4462e52 Clarify Bun-only install path
363
-
364
- ## 0.1.55 - 2026-05-31
365
-
366
- - d8f4eee Remove developer-only setup surfaces
367
-
368
- ## 0.1.54 - 2026-05-31
369
-
370
- - dc1a290 Keep release docs version-neutral
371
- - 07eb275 Stabilize Bun package install smoke
372
- - d5da8fb Fix Bun global TUI launch smoke
373
- - 883a11c Add exact-confirm local library delete flow
374
-
375
- ## 0.1.53 - 2026-05-31
376
-
377
- - 77ad0cf Add local library edit workspace flow
378
-
379
- ## 0.1.52 - 2026-05-31
380
-
381
- - e543fa5 Add selected local library actions
382
-
383
- ## 0.1.51 - 2026-05-31
384
-
385
- - 6a8e8a6 Add local library workspace editors
386
-
387
- ## 0.1.50 - 2026-05-31
388
-
389
- - bdb654a Improve local library workspaces
390
-
391
- ## 0.1.49 - 2026-05-31
392
-
393
- - 445e694 Show isolated Agent Knowledge in TUI panel
394
- - 632d951 Add agent-local registry tool
395
- - 4832355 Make agent setup workspace actionable
396
-
397
- ## 0.1.48 - 2026-05-31
398
-
399
- - 67f8ce0 Surface the Agent setup checklist
400
- - 34c3d0b Remove internal development-only surfaces
401
-
402
- ## 0.1.47 - 2026-05-31
403
-
404
- - 2bb2b8a Internal cleanup before operator UX work
405
-
406
- ## 0.1.46 - 2026-05-31
407
-
408
- - e0addfe Internal cleanup before operator UX work
409
-
410
- ## 0.1.45 - 2026-05-31
411
-
412
- - 0aa4b3e Approval UX cleanup
413
-
414
- ## 0.1.44 - 2026-05-31
415
-
416
- - fdee09e Internal cleanup before operator UX work
417
-
418
- ## 0.1.43 - 2026-05-31
419
-
420
- - 3afba9c Approval UX cleanup
421
-
422
- ## 0.1.42 - 2026-05-31
423
-
424
- - 3c84649 Agent workspace cleanup
425
-
426
- ## 0.1.41 - 2026-05-31
427
-
428
- - c108e13 Internal cleanup before operator UX work
429
-
430
- ## 0.1.40 - 2026-05-31
431
-
432
- - 329dc13 Add routine schedule delivery targets
433
-
434
- ## 0.1.39 - 2026-05-31
435
-
436
- - c98de19 Add routine schedule reconciliation
437
-
438
- ## 0.1.38 - 2026-05-31
439
-
440
- - 072503c Add routine schedule promotion receipts
441
-
442
- ## 0.1.37 - 2026-05-31
443
-
444
- - 656b6f4 Add Agent routine runtime schedule promotion
445
-
446
- ## 0.1.36 - 2026-05-31
447
-
448
- - 9de2f5e Add guided Agent starter authoring
449
-
450
- ## 0.1.35 - 2026-05-31
451
-
452
- - 2c25d5e Add local starter profile import export
453
-
454
- ## 0.1.34 - 2026-05-31
455
-
456
- - 28838cc Add curated Agent profile starters
457
-
458
- ## 0.1.33 - 2026-05-31
459
-
460
- - bfe0127 Add profile portability workspace coverage
461
-
462
- ## 0.1.32 - 2026-05-31
463
-
464
- - 8af3cbd Add voice media node workspace coverage
465
-
466
- ## 0.1.31 - 2026-05-31
467
-
468
- - 2bc4887 Expand Agent Knowledge workspace flows
469
-
470
- ## 0.1.30 - 2026-05-31
471
-
472
- - 6a1c818 Add channel readiness to Agent workspace
473
-
474
- ## 0.1.29 - 2026-05-31
475
-
476
- - 3fafcda Add Agent channel workspace guidance
477
-
478
- ## 0.1.28 - 2026-05-31
479
-
480
- - 77a9dc4 Add isolated Agent runtime profiles
481
-
482
- ## 0.1.27 - 2026-05-31
483
-
484
-
485
- ## 0.1.26 - 2026-05-31
486
-
487
- - dfb6147 Harden Agent read tool policy
488
-
489
- ## 0.1.25 - 2026-05-31
490
-
491
- - cba5f6d Harden Agent find tool policy
492
-
493
- ## 0.1.24 - 2026-05-31
494
-
495
- - 2375df3 Bound web search tool policy
496
-
497
- ## 0.1.23 - 2026-05-31
498
-
499
- - 18d7381 Harden analyze and registry tool policy
500
-
501
- ## 0.1.22 - 2026-05-31
502
-
503
- - 07e4445 Mark control tool read-only in agent runtime
504
-
505
- ## 0.1.21 - 2026-05-31
506
-
507
- - d83f325 Keep inspect scaffold dry-run-only in agent runtime
508
-
509
- ## 0.1.20 - 2026-05-31
510
-
511
- - c0eca13 Block settings mutation tool in agent runtime
512
-
513
- ## 0.1.19 - 2026-05-31
514
-
515
- - a4255d5 Restrict durable workflow tool mutations in agent runtime
516
-
517
- ## 0.1.18 - 2026-05-31
518
-
519
- - 1fd7729 Restrict state tool mutations in agent runtime
520
-
521
- ## 0.1.17 - 2026-05-31
522
-
523
- - f148186 Restrict fetch side effects in agent runtime
524
-
525
- ## 0.1.16 - 2026-05-31
526
-
527
- - bea1197 Restrict MCP tool mutations in agent runtime
528
-
529
- ## 0.1.15 - 2026-05-31
530
-
531
- - 67de700 Restrict remote and channel tools in agent runtime
532
-
533
- ## 0.1.14 - 2026-05-31
534
-
535
- - d128004 Block background exec in agent runtime
536
-
537
- ## 0.1.13 - 2026-05-31
538
-
539
- - 989b048 Block local coding tools in agent runtime
540
-
541
- ## 0.1.12 - 2026-05-31
542
-
543
- - 1843a77 Handle external runtime SDK mismatch in live verification
544
- - 2b1a3f4 Align agent-owned test paths
545
-
546
- ## 0.1.11 - 2026-05-31
547
-
548
- - d20a93e Allow explicit recall review without yes
549
- - 601f41c Require confirmation for eval execution
550
- - f41befb Block copied infrastructure onboarding mutations
551
- - 79071ec Block implicit block file saves
552
- - 40aca02 Block inline diff file edits in Agent
553
- - 854eda8 Block MCP workspace config mutations
554
- - 665c423 Require confirmation for CLI Agent Knowledge ingest
555
- - f07255a Require confirmation for recall review mutations
556
- - 6e78ec3 Require confirmation for Agent Knowledge mutations
557
- - c1e5ac1 Require confirmation for operator control mutations
558
- - 5d6fc3c Require confirmation for local state mutations
559
- - 3afd788 Require confirmation for remaining export paths
560
- - d36ae96 Require confirmation for portable state bundles
561
- - 1f0caab Require confirmation for setup and remote exports
562
- - 2e149c9 Require confirmation for incident and handoff exports
563
- - b439c55 Require confirmation for settings mutations
564
- - f7c8fe6 Require confirmation for platform auth mutations
565
- - 09064e0 Require confirmation for auth and service mutations
566
- - 55e8b8d Require confirmation for marketplace mutations
567
- - 88becca Require confirmation for plugin mutations
568
- - 89c0584 Require confirmation for local provider mutations
569
- - 7f3af1b Require confirmation for managed hook mutations
570
- - 323426c Require confirmation for destructive workplan cleanup
571
- - 191350e Require confirmation for side-effecting slash commands
572
-
573
- ## 0.1.10 - 2026-05-31
574
-
575
- - 93aba19 Block agent-spawning hook authoring
576
- - 735839a Prune git header renderer from Agent
577
- - 95d22fd Remove unused git shell bootstrap wiring
578
- - 1392ebc Remove Agent write-quit commit helper
579
- - df6572f Remove coding header posture from Agent shell
580
- - 2b8e679 Align live verification with Agent routes
581
- - 70eb800 Add stable typecheck release scripts
582
- - 6b57500 Hide local agent activity in Agent UI
583
- - 7166188 Add Agent Knowledge CLI shortcuts
584
- - 386c19d Align service diagnostics with Agent boundaries
585
- - e8b19db Lock runtime-owned settings in Agent
586
-
587
- ## 0.1.9 - 2026-05-31
588
-
589
- - 75e5d4a Align shell surface delegation test
590
- - a24c581 Use delegation wording in runtime indicator
591
- - 259a75f Guard Agent knowledge isolation
592
- - 59b6729 Align task help with Agent policy
593
- - 0074a76 Classify stale runtime knowledge routes
594
-
595
- ## 0.1.8 - 2026-05-31
596
-
597
- - 384c85a Remove stale WRFC artifact test
598
- - 6230c64 Remove copied TUI historical docs
599
- - 9065f4d Add local Agent routines
600
- - e90d579 Lock Agent Knowledge CLI routes
601
- - 1b05f97 Guard agent runtime policy boundaries
602
- - 86f4bd1 Block agent cancellation from activity UI
603
- - 22d6a1d Block remote runner cancellation from agent
604
- - 9553688 Drop local agent records from saved sessions
605
- - f4b6f9d Block local session graph mutations
606
- - e372c44 Make orchestration command read-only
607
- - 7bb908c Narrow local agent tool to read-only modes
608
- - e8ed9c6 Verify packed global install smoke
609
- - fdc956b Forbid packaged local agent definitions
610
- - 881a18f Exclude local review agents from package
611
- - 649cac7 Improve full test failure reporting
612
- - 9982abc Remove default wiki from Agent runtime
613
- - f625ac6 Make ops command view only
614
- - af86ce5 Block copied CLI task submission
615
- - 567e07c Externalize worktree recovery guidance
616
- - 0fb2aa3 Block local runtime task mutations
617
-
618
- ## 0.1.7 - 2026-05-31
619
-
620
- - Replaced active planning-loop output and tests that still described planning as TUI-owned with Agent-owned planning state and planning namespace language.
621
- - Added `LICENSE` to the explicit package file contract and release verification so registry tarballs cannot omit license text.
622
- - Prevented the operator workspace from dispatching placeholder delegation commands such as `/delegate --wrfc <task>`; those actions now provide guidance until the user supplies real task text.
623
- - Added local Agent routines with `/routines`: create/list/search/show/enable/disable/start/review/stale/delete, secret-looking value rejection, enabled routine prompt injection, and operator workspace status. Starting a routine stays in the main conversation and does not create hidden background jobs.
624
- - Removed copied TUI release, UAT, and WRFC artifact docs from the Agent source tree and updated remaining source docs so channel, voice, integration, and panel guidance speaks in Agent/external-runtime terms.
625
-
626
- ## 0.1.6 - 2026-05-31
20
+ ## 0.1.116 - 2026-06-02
627
21
 
628
- - Made the publish helper use exported `NODE_AUTH_TOKEN` or `NPM_TOKEN` automatically by writing a temporary npm user config for publish commands.
629
- - Rewrote source docs for tools, commands, knowledge, artifacts, and multimodal behavior so they describe Agent-only Knowledge/Wiki and never teach default Knowledge/Wiki or non-Agent graph fallback.
630
- - Updated `/plan` command and Planning panel language from copied TUI-owned wording to Agent-owned workspace planning state.
631
- - Added regression tests that keep source docs and active planning surfaces aligned with Agent Knowledge isolation and Agent product language.
22
+ - Added behavior discovery to first-run setup so local persona, skill, and routine files can be reviewed and imported from the Agent TUI instead of starting from blank records.
23
+ - Added profile creation from discovered behavior bundles, including local starter-template creation, profile creation, and in-workspace setup guidance.
24
+ - Kept the installed command path simple: `bun add -g @pellux/goodvibes-agent`, then `goodvibes-agent` starts the interactive Agent TUI.
25
+ - Preserved the Agent product boundary: connected host required, no Agent-owned host lifecycle, isolated Agent Knowledge only, local memory/skills/personas/routines, and explicit build delegation.
632
26
 
633
- ## 0.1.5 - 2026-05-31
27
+ ## 0.1.108 - 0.1.115
634
28
 
635
- - Hardened package-facing release checks so shipped docs and Agent guidance cannot reintroduce default Knowledge/Wiki, non-Agent graph, copied runtime-hosting, or copied WRFC-first policy text.
636
- - Removed the generic default `knowledgeApi` client from the active Agent command context so slash commands must use the isolated Agent Knowledge API.
637
- - Changed CLI `knowledge ingest-url` to post directly to `/api/goodvibes-agent/knowledge/ingest/url` instead of invoking the generic knowledge operator method.
638
- - Rejected default-space and broad cross-space query flags in CLI and slash Agent Knowledge commands before any runtime call.
29
+ - Expanded day-one setup with local behavior import, starter profiles, profile templates, Agent workspace forms, and clearer launch/status identity.
30
+ - Added Agent Knowledge management for isolated URL, file, connector, bookmark, and browser-history ingest through `/api/goodvibes-agent/knowledge/*`.
31
+ - Improved channel readiness, voice/media setup, provider/model visibility, MCP setup, and routine scheduling workflows while keeping side effects behind explicit confirmation.
32
+ - Hardened the package runtime bundle and Bun global install smoke so the installed TUI must launch from a packed package.
639
33
 
640
- ## 0.1.4 - 2026-05-31
34
+ ## 0.1.80 - 0.1.107
641
35
 
642
- - Hardened Agent Knowledge route isolation for CLI JSON output and diagnostics: Agent status, ask, search, and ingest-url now report explicit `agentKnowledge.*` identities and `/api/goodvibes-agent/knowledge/*` routes.
643
- - Pointed runtime orchestrator and multimodal writeback dependencies at Agent Knowledge so assistant-authored knowledge cannot land in default Knowledge/Wiki.
644
- - Moved project planning and work-plan artifacts onto the Agent Knowledge store so Agent task state does not use the regular wiki segment.
36
+ - Made the Agent operator workspace the normal TUI landing surface after first-run setup.
37
+ - Added Agent-local memory, personas, skills, skill bundles, routines, schedule receipts, and schedule reconciliation.
38
+ - Added connected-host diagnostics for status, compatibility, auth presence, Agent Knowledge readiness, approvals, work plans, automation, and schedules.
39
+ - Strengthened release gates around Bun-only install, TypeScript-only source, package contents, packed install checks, and single branch-CI test execution.
645
40
 
646
- ## 0.1.3 - 2026-05-31
41
+ ## 0.1.63 - 0.1.79
647
42
 
648
- - Added local Agent personas with `/personas`: create/list/search/show/use/review/stale/delete, secret-looking value rejection, active persona prompt injection, and operator workspace status.
649
- - Added local Agent skills with `/agent-skills` and `/skills local`: create/list/search/show/enable/disable/review/stale/delete, secret-looking value rejection, enabled skill prompt injection, and operator workspace status.
650
- - Kept persona and skill state Agent-local with no default Knowledge/Wiki or non-Agent graph fallback.
43
+ - Reworked onboarding, settings, help, docs, and workspace language around the Agent product: operator TUI, local behavior, isolated Agent Knowledge, provider access, channel readiness, automation review, and explicit build delegation.
44
+ - Added first-run readiness review covering runtime connection, default model route, profile setup, Agent Knowledge, local behavior, channels, routines, schedules, and delegation.
45
+ - Added workspace and renderer improvements for readable setup guidance, wrapped detail text, tiny-terminal behavior, and profile creation flows.
651
46
 
652
- ## 0.1.2 - 2026-05-30
47
+ ## 0.1.48 - 0.1.62
653
48
 
654
- - Added `goodvibes-agent compat` for package SDK pin, external runtime version, auth presence, and isolated Agent Knowledge route readiness.
655
- - Added `goodvibes-agent knowledge ...` commands for the isolated `/api/goodvibes-agent/knowledge/*` environment with no default Knowledge/Wiki or non-Agent graph fallback.
656
- - Added explicit GoodVibes TUI build delegation through `goodvibes-agent delegate` and `/delegate`; WRFC is requested only through explicit `--wrfc`, `/wrfc`, or `/review` delegation.
657
- - Removed the copied WRFC panel from the default Agent panel registry while preserving explicit TUI delegation for build/fix/review work.
658
- - Hardened the Agent release helper and CLI help output for the current Agent changelog and command set.
49
+ - Added the first Agent setup checklist, local library workspaces, local library editors, delete confirmations, command-help polish, and Bun global PATH guidance.
50
+ - Removed developer-only and coding-intelligence surfaces from the visible Agent product.
51
+ - Improved non-TTY launch diagnostics and package install smoke coverage.
659
52
 
660
- ## 0.1.1 - 2026-05-30
53
+ ## 0.1.2 - 0.1.47
661
54
 
662
- - Reissued the first public alpha package after the initial `0.1.0` registry publish produced an install-blocking npm packument inconsistency.
663
- - Kept the same Agent runtime boundary and TUI-derived shell foundation: external runtime only, serial/proactive Agent policy, and explicit GoodVibes TUI delegation for build/fix/review work.
55
+ - Added isolated Agent Knowledge CLI and slash-command routing with no fallback to default knowledge/wiki or non-Agent knowledge segments.
56
+ - Added Agent-local personas, skills, and routines with create/list/search/show/review/stale/delete workflows and secret-looking value rejection.
57
+ - Added explicit build/fix/review delegation to the GoodVibes build environment; delegated review is requested only through explicit delegation.
58
+ - Established release checks for package-facing docs, installability, executable bin behavior, and Agent product policy.
664
59
 
665
- ## 0.1.0 - 2026-05-28
60
+ ## 0.1.0 - 0.1.1
666
61
 
667
62
  - Published the first public alpha package for `@pellux/goodvibes-agent`.
668
- - Kept the GoodVibes TUI-derived shell, renderer, input, fullscreen workspace, command registry, and release foundation.
669
- - Preserved Agent product policy: serial/proactive main conversation by default, no local Agent-owned WRFC/spawn fanout, and explicit GoodVibes TUI delegation for build/fix/review work.
670
- - Moved Agent-owned runtime state to `.goodvibes/agent` surface roots.
671
- - Updated packaged Agent guidance, reviewer persona, and provider skill to avoid copied TUI WRFC/multi-agent defaults.
672
- - Kept runtime lifecycle external: Agent connects to an already-running GoodVibes runtime and blocks runtime/service ownership commands.
673
- - Pinned `@pellux/goodvibes-sdk` to `0.33.35`.
63
+ - Exposed the `goodvibes-agent` executable as the TUI entrypoint.
64
+ - Established the core Agent policy: serial/proactive assistant behavior, connected-host dependency, no local worker fanout by default, isolated Agent state, and explicit build delegation.
65
+ - Reissued `0.1.1` after the initial registry publish produced an install-blocking package metadata inconsistency.
674
66
 
675
67
  ## 0.0.0 - Private Baseline
676
68
 
677
- - Adopted the GoodVibes terminal foundation as the starting point for the Agent product.
678
- - Renamed package identity to `@pellux/goodvibes-agent` and exposed one executable, `goodvibes-agent`.
679
- - Pinned `@pellux/goodvibes-sdk` to `0.33.35`.
680
- - Removed packaged runtime-host binaries and blocked Agent-owned runtime/service lifecycle commands.
681
- - Limited package-facing docs to Agent install, external-runtime deployment, and release guidance.
682
- - Replaced copied coding-first orchestration policy with Agent serial/proactive policy and explicit GoodVibes TUI build delegation.
683
- - Added the first Agent operator workspace on the copied fullscreen workspace foundation, exposed through `/agent`, `/home`, and `/operator`.
684
-
685
- The private baseline intentionally kept broad TUI foundation code so the Agent could inherit the renderer, input, fullscreen workspace, command registry, and release bones before Agent-specific policy was applied.
69
+ - Created the private Agent package baseline with the GoodVibes terminal shell foundation.
70
+ - Set package identity to `@pellux/goodvibes-agent`.
71
+ - Kept host lifecycle external to the Agent package.
72
+ - Started the Agent-specific operator workspace, local behavior registries, and product policy work that led to the public alpha.