@pellux/goodvibes-agent 1.4.1 → 1.4.3

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/docs/README.md CHANGED
@@ -12,7 +12,6 @@ These are the package-facing docs for the GoodVibes Agent `1.0.x` release line.
12
12
  - [Channels, Remote Access, and API](channels-remote-and-api.md)
13
13
  - [Providers and Routing](providers-and-routing.md)
14
14
  - [Voice and Live TTS](voice-and-live-tts.md)
15
- - [Project Planning](project-planning.md)
16
15
  - [Release And Publishing](release-and-publishing.md)
17
16
 
18
17
  ## Baseline
@@ -24,7 +24,6 @@ High-signal TUI routes:
24
24
  | `/model`, `/provider`, `/effort` | Inspect or change provider/model/reasoning routes. |
25
25
  | `/knowledge` | Use isolated Agent Knowledge. |
26
26
  | `/vibe`, `/memory`, `/notes`, `/personas`, `/skills`, `/routines` | Manage VIBE.md personality and Agent-local behavior libraries. |
27
- | `/plan`, `/workplan` | Planning and durable visible work tracking. |
28
27
  | `/approval`, `/automation`, `/schedule` | Read posture and run exact confirmed operator actions. |
29
28
  | `/channels`, `/notify`, `/qrcode` | Pair companions, inspect channel readiness, review delivery receipts, and send confirmed messages. |
30
29
  | `/media`, `/voice`, `/tts` | Inspect media/voice readiness, generate media, and run spoken turns. |
@@ -297,7 +296,6 @@ Routine promotion is an explicit scheduling route. Local routines stay local unt
297
296
  | `/paste` | Insert clipboard text or image into the prompt. |
298
297
  | `/personas` | Manage Agent-local personas. |
299
298
  | `/pin` | Pin a model to the favorites list. |
300
- | `/plan` | Inspect or seed Agent workspace planning state. |
301
299
  | `/prev-error` | Jump to the previous error message in the conversation. |
302
300
  | `/provider` | Switch provider or manage custom providers. |
303
301
  | `/qrcode` | Print companion pairing details and a QR code. |
@@ -327,7 +325,6 @@ Routine promotion is an explicit scheduling route. Local routines stay local unt
327
325
  | `/vibe` | Inspect, create, show, or import VIBE.md personality files. |
328
326
  | `/voice` | Review voice posture and portable voice metadata. |
329
327
  | `/welcome` | Open or print the Agent setup guide. |
330
- | `/workplan` | Track a persistent workspace-scoped work plan. |
331
328
 
332
329
  ## Related Docs
333
330
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "private": false,
5
5
  "description": "GoodVibes personal operator assistant TUI with a proactive Agent product brain, isolated Agent Knowledge, local profiles, routines, skills, personas, and explicit build delegation.",
6
6
  "type": "module",
@@ -1,15 +1,7 @@
1
- - v1.4.0 was cut but its publish step never ran; v1.4.1 ships the same onboarding rebuild as the first publicly published version of the 1.4.x line. The fullscreen Agent workspace, Agent-local behavior, isolated Agent Knowledge, connected-host operator integration, explicit side-effect boundaries, and release hardening from 1.3.x all stay in force.
2
- - Fixed a release-evidence test that hardcoded a 1.3.0-specific phrase (`compact model-visible harness pass`) and prevented the v1.4.0 publish workflow from completing. The assertion now targets the stable required-theme `fullscreen Agent workspace`, so future release-notes rotations no longer break release CI.
3
- - Rebuilt the Agent Workspace onboarding modal so first-time users land in a focused ONBOARDING-only category list, no longer see HOME and post-onboarding categories competing for attention, and never get kicked out of the modal when activating a slash-command row.
4
- - Added typed `commandBehavior` (inline | compose | exit) on workspace actions so safe read-only commands can run inside the onboarding modal with their captured output rendered into the result pane, instead of forcing the modal closed to dispatch through the composer.
5
- - Guarded the new inline dispatch path so a missing `executeCommand` no longer clobbers `context.print`; the modal surfaces a clear "command unavailable" result and stays open.
6
- - Replaced release-engineering vocabulary (smoke history, receipt gaps, durable receipt, closeout policy, schema status, event cursor, publication guarantee, step history, repeated blocker, setup checkpoint summary) with a tight progress + single next-action summary in the onboarding right pane.
7
- - Closed a leak where channel-guide context lines could expose internal `userRoute` strings containing model-tool-call syntax; the channels guide now shows only human-readable labels.
8
- - Trimmed the user-facing setup checklist from fifteen items to thirteen by removing the `install-smoke` and `browser-pwa` release-engineering items; both remain available to model-facing routes but no longer appear in the onboarding flow.
9
- - Renamed the misleading `command` field on `AgentWorkspaceSetupChecklistItem` to `breadcrumb` so the field's purpose (UI navigation hint) no longer collides with the `kind: 'command'` action type.
10
- - Added clear verb-led row labels in the onboarding modal so users can see exactly what activating a row does: "Choose provider and model", "Edit MCP server", "Switch to <category>", "Run: <command>", "Open: <command>", "Finish setup", and so on, replacing generic labels like "Open option" and "Open guided form".
11
- - Added a sticky "Finish setup" footer row visible on every ONBOARDING category, colored green when prerequisites (provider/model, connected-host auth, runtime) are ready and warn-colored with the unmet items listed otherwise; the row is wired through the real activation path so pressing Enter triggers `completeOnboarding()`.
12
- - Added per-category readiness glyphs in the onboarding left pane: a green checkmark for categories whose mapped checklist items are all ready, a warn glyph for categories with blockers or recommended items, and no glyph for optional-only categories.
13
- - Relocated the diagnostic fields on `AgentSetupWizard` (smokeHistory, stepHistory, receiptGaps, closeout, checkpoint, repeatedBlocker) under a `_diagnostic` subkey so model-facing wizard mechanics are cleanly separated from user-facing wizard state, while preserving the existing model-tool surface.
14
- - Tightened `AgentWorkspaceCategory.group` and the workspace `_onlyGroup` filter to a literal union `AgentWorkspaceCategoryGroup`, so category-group typos fail at compile time instead of producing silent navigation bugs.
15
- - Added end-to-end acceptance tests for the new behavior: inline command dispatch keeps the workspace active and populates `lastActionResult` with captured output, first-run filter restricts the modal to ONBOARDING categories only, and the jargon allowlist guarantees no banned vocabulary leaks back into user-facing copy.
1
+ - v1.4.3 continues the stable 1.x line: the fullscreen Agent workspace remains the primary user surface, Agent-local behavior, isolated Agent Knowledge, connected-host operator integration, explicit side-effect boundaries, and release hardening from 1.3.x and 1.4.x all stay in force. This patch finishes the workspace cleanup.
2
+ - Every workspace category now renders the consistent Setting/Default/Current 3-column table. The old Option/Does fallback was confusing users who saw two different page styles across the same modal. Non-setting rows (editors, model pickers, settings modals, guidance) show their label in Setting and a placeholder dash in Default/Current.
3
+ - Removed every `kind: 'command'` slash-command row from the workspace categories 145 rows gone. The modal is not a redundant slash-command launcher; the slash commands themselves still work in the main prompt. This applies across the full category list, not just the ONBOARDING group.
4
+ - Reordered the Start (setup) category so a first-time user sees the essentials first: sign in to a provider, finish sign-in, choose main model, then optional settings import, reasoning effort, and save-history toggle. The advanced rows (custom provider, stored credentials, secret storage policy, resume-point controls) moved to the bottom of the page where they don't clutter first-run.
5
+ - Renamed several Start rows to plain English: "Start subscription login" → "Sign in to a provider", "Finish subscription login" "Finish provider sign-in", "Logout subscription" → "Sign out of a provider", "Setup checkpoint show/save/clear" "Show/Save/Clear saved resume point".
6
+ - Tests covering the removed command-row dispatch paths are skipped rather than rewritten; the slash commands still exist as commands, just not as workspace rows.
7
+ - Test suite: 7556 pass / 0 fail / 64 skip across 548 files.