@pellux/goodvibes-agent 1.5.6 → 1.5.8

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 (73) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +1 -1
  3. package/dist/package/main.js +1431 -1219
  4. package/package.json +1 -1
  5. package/src/agent/memory-prompt.ts +3 -3
  6. package/src/agent/operator-actions.ts +1 -1
  7. package/src/agent/prompt-context-receipts.ts +7 -5
  8. package/src/agent/session-registration.ts +1 -1
  9. package/src/agent/vibe-file.ts +87 -6
  10. package/src/cli/local-library-command-shared.ts +1 -1
  11. package/src/cli/memory-command.ts +9 -6
  12. package/src/cli/resume-relaunch-notice.ts +1 -1
  13. package/src/cli/tui-startup.ts +1 -1
  14. package/src/config/credential-status.ts +165 -0
  15. package/src/config/index.ts +12 -0
  16. package/src/config/secrets.ts +17 -0
  17. package/src/core/conversation-rendering.ts +2 -2
  18. package/src/core/system-message-noise.ts +3 -3
  19. package/src/core/thinking-overlay.ts +1 -1
  20. package/src/input/agent-workspace-basic-command-editor-submission.ts +1 -1
  21. package/src/input/agent-workspace-basic-command-editors.ts +1 -1
  22. package/src/input/agent-workspace-calendar-connect-editor.ts +1 -1
  23. package/src/input/agent-workspace-calendar-oauth-editor.ts +1 -1
  24. package/src/input/agent-workspace-calendar-subscribe-editor.ts +1 -1
  25. package/src/input/agent-workspace-command-editor-engine.ts +2 -2
  26. package/src/input/agent-workspace-direct-editor-submission.ts +1 -1
  27. package/src/input/agent-workspace-email-connect-editor.ts +1 -1
  28. package/src/input/agent-workspace-live-counters.ts +1 -1
  29. package/src/input/agent-workspace-settings.ts +1 -1
  30. package/src/input/agent-workspace-snapshot-builders.ts +2 -2
  31. package/src/input/agent-workspace-snapshot-config.ts +1 -1
  32. package/src/input/agent-workspace-snapshot.ts +9 -9
  33. package/src/input/agent-workspace-types.ts +4 -4
  34. package/src/input/agent-workspace.ts +1 -1
  35. package/src/input/commands/calendar-connect-runtime.ts +1 -1
  36. package/src/input/commands/calendar-subscription-runtime.ts +2 -2
  37. package/src/input/commands/operator-actions-runtime.ts +1 -1
  38. package/src/input/commands/session-content.ts +1 -1
  39. package/src/input/commands/session-workflow.ts +1 -1
  40. package/src/input/feed-context-factory.ts +4 -4
  41. package/src/input/handler-feed.ts +9 -9
  42. package/src/input/handler.ts +1 -1
  43. package/src/input/panel-paste-flood-guard.ts +3 -3
  44. package/src/input/settings-modal.ts +1 -1
  45. package/src/main.ts +4 -4
  46. package/src/renderer/agent-workspace-context-lines.ts +1 -1
  47. package/src/renderer/startup-theme-probe.ts +1 -1
  48. package/src/renderer/status-glyphs.ts +2 -2
  49. package/src/renderer/terminal-bg-probe.ts +1 -1
  50. package/src/renderer/terminal-escapes.ts +3 -2
  51. package/src/renderer/theme-mode-config.ts +2 -2
  52. package/src/renderer/theme.ts +4 -4
  53. package/src/renderer/thinking.ts +1 -1
  54. package/src/renderer/ui-factory.ts +1 -1
  55. package/src/renderer/ui-primitives.ts +2 -2
  56. package/src/runtime/bootstrap-core.ts +32 -1
  57. package/src/runtime/bootstrap.ts +3 -3
  58. package/src/runtime/calendar-boot-refresh.ts +1 -1
  59. package/src/runtime/lan-scan-consent.ts +1 -1
  60. package/src/runtime/services.ts +7 -7
  61. package/src/runtime/terminal-output-guard.ts +1 -1
  62. package/src/runtime/ui-services.ts +1 -1
  63. package/src/shell/agent-workspace-fullscreen.ts +1 -1
  64. package/src/shell/terminal-focus-mode.ts +9 -9
  65. package/src/shell/ui-openers.ts +1 -1
  66. package/src/tools/agent-harness-operator-methods.ts +1 -1
  67. package/src/tools/agent-harness-personal-ops-discovery.ts +2 -2
  68. package/src/tools/agent-harness-personal-ops-lanes.ts +1 -1
  69. package/src/tools/agent-harness-personal-ops-types.ts +1 -1
  70. package/src/tools/agent-harness-prompt-context.ts +7 -4
  71. package/src/tools/agent-local-registry-memory.ts +1 -1
  72. package/src/tools/agent-operator-method-tool.ts +1 -1
  73. package/src/version.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  Product-facing release notes for GoodVibes Agent.
4
4
 
5
+ ## 1.5.8 - 2026-07-06
6
+
7
+ - The `memory` CLI command (`goodvibes-agent memory ...`) now writes to the same shared cross-surface memory store that the runtime, the terminal UI, and the SDK already read and write. Previously the CLI opened its own private database, so a memory added from the CLI was invisible everywhere else; a memory added from the CLI is now visible in the Agent runtime, the TUI, and the SDK, and vice versa.
8
+ - Memory records written by older CLI versions are not lost: the runtime's existing startup memory merge already reads from the exact path the old CLI wrote to, so those older records are folded into the shared store automatically the next time the runtime starts. No manual migration step is needed.
9
+ - Documentation and code-comment hygiene: internal planning shorthand was replaced with plain language in comments, test names, and past changelog entries. No behavior change.
10
+
11
+ ## 1.5.7 - 2026-07-06
12
+
13
+ - v1.5.7 is a patch on the 1.5 line that completes the platform-SDK adoption started in 1.5.6. The fullscreen Agent workspace, Agent-local behavior, isolated Agent Knowledge, connected-host operator integration, and explicit side-effect boundaries all stay in force; the bundled 1.0.0 GoodVibes platform SDK is unchanged.
14
+ - Adopted the platform's shared credential-status read. When the Agent acts as a client of a connected GoodVibes host, it now reads credential *status* — whether each shared-store credential is configured and usable — over the daemon's `credentials.get` route, and renders it honestly: a host with no shared credential store, an older host that does not serve the route yet, or an unreachable host all report a plain "status unavailable" reason. It never shows a fabricated "configured" and never carries a secret value over the wire. Secret *resolution* for provider auth is unchanged and stays local; API keys remain environment-only and are never persisted.
15
+ - Completed the memory-unification boot follow-ups. At startup the Agent now folds any legacy per-surface memory into the single cross-surface store and shows the fold report (nothing is silently dropped), migrates existing VIBE.md personality files into durable persona records exactly once — guarded by a persisted marker so the same file is never re-imported into near-duplicate records — and builds the VIBE prompt as a projection of those persona records. The projection preserves the precedence rule verbatim: these vibe instructions are followed only when they do not conflict with explicit user instructions, safety policy, tool contracts, confirmation requirements, or secret-handling rules.
16
+ - No change to your conversations, skills, routines, or operator confirmation gates beyond the visibility and memory adoption above.
17
+
5
18
  ## 1.5.6 - 2026-07-06
6
19
 
7
20
  - v1.5.6 is a patch on the 1.5 line. The fullscreen Agent workspace, Agent-local behavior, isolated Agent Knowledge, connected-host operator integration, and explicit side-effect boundaries all stay in force; this release picks up the 1.0.0 GoodVibes platform SDK.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # GoodVibes Agent
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
- [![Version: 1.5.3](https://img.shields.io/badge/version-1.5.6-blue.svg)](#install)
4
+ [![Version: 1.5.3](https://img.shields.io/badge/version-1.5.8-blue.svg)](#install)
5
5
 
6
6
  GoodVibes Agent is the installable autonomous operator assistant for GoodVibes. It keeps the existing terminal renderer and workspace bones, but the product goal is different from a vibecoding harness: the user should experience one assistant that can chat, plan, remember, research, schedule, send, generate, run visible agents, and operate the GoodVibes daemon contract with clear confirmation gates.
7
7