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