@pellux/goodvibes-agent 0.1.111 → 0.1.113

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 (34) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +3 -3
  3. package/dist/package/main.js +9921 -9868
  4. package/docs/getting-started.md +3 -3
  5. package/package.json +1 -1
  6. package/src/cli/help.ts +4 -1
  7. package/src/cli/local-library-command.ts +90 -1
  8. package/src/cli/parser.ts +0 -8
  9. package/src/cli/service-posture.ts +1 -8
  10. package/src/cli/status.ts +1 -30
  11. package/src/cli/types.ts +0 -1
  12. package/src/input/agent-workspace-categories.ts +5 -7
  13. package/src/input/agent-workspace-snapshot.ts +2 -10
  14. package/src/input/agent-workspace-types.ts +2 -3
  15. package/src/input/commands/brief-runtime.ts +1 -1
  16. package/src/input/commands/channels-runtime.ts +397 -35
  17. package/src/input/commands/experience-runtime.ts +4 -9
  18. package/src/input/commands/health-runtime.ts +26 -6
  19. package/src/input/commands/mcp-runtime.ts +51 -26
  20. package/src/input/commands/memory.ts +10 -10
  21. package/src/input/commands/planning-runtime.ts +4 -9
  22. package/src/input/commands/provider-accounts-runtime.ts +2 -3
  23. package/src/input/commands/qrcode-runtime.ts +48 -9
  24. package/src/input/commands/recall-bundle.ts +16 -16
  25. package/src/input/commands/recall-capture.ts +18 -18
  26. package/src/input/commands/recall-query.ts +22 -22
  27. package/src/input/commands/recall-review.ts +12 -12
  28. package/src/input/commands/tasks-runtime.ts +9 -15
  29. package/src/input/commands/work-plan-runtime.ts +5 -19
  30. package/src/input/commands.ts +2 -7
  31. package/src/renderer/agent-workspace.ts +1 -2
  32. package/src/renderer/ui-factory.ts +1 -1
  33. package/src/runtime/onboarding/derivation.ts +6 -67
  34. package/src/version.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.113 - 2026-06-02
6
+
7
+ - efe8b9c feat: expose skill discovery in agent cli
8
+ - 13ef595 fix: align agent docs and launch identity
9
+ - 26fb57b fix: keep agent diagnostics product scoped
10
+
11
+ ## 0.1.112 - 2026-06-02
12
+
13
+ - 566995c test: align operator visibility gate
14
+ - 5035e09 fix: remove daemon-home cli flag
15
+ - f31e35c fix: remove copied recall cli alias
16
+ - aba694f fix: hide stale health open usage
17
+ - a771a42 fix: remove copied panel entrypoints from agent commands
18
+ - 27c858d fix: keep work tracking out of copied panels
19
+ - f13c66a fix: keep profile workspace agent owned
20
+ - 523415f fix: simplify agent command surface
21
+ - 0e55cb3 ci: collapse branch gate into one test job
22
+ - 5d6d7f3 fix: make mcp servers setup action explicit
23
+ - 95b6994 feat: show connected channel diagnostics
24
+ - 1daeac0 fix: keep host posture out of agent setup
25
+ - e8ef013 feat: improve channel setup visibility
26
+
5
27
  ## 0.1.111 - 2026-06-02
6
28
 
7
29
  - 3c53136 fix: harden package runtime bundle
package/README.md CHANGED
@@ -90,9 +90,9 @@ Local Agent behavior is editable from the TUI:
90
90
  /schedule reconcile
91
91
  /channels
92
92
  /agent-skills create --name "Morning Brief" --description "Daily briefing flow" --procedure "Check tasks, approvals, calendar, and unread state before summarizing." --enabled true
93
- /skills local list
94
- /recall add fact Prefers concise morning briefings --scope project --tags preference
95
- /recall search morning
93
+ /skills list
94
+ /memory add fact "Prefers concise morning briefings" --scope project --tags preference
95
+ /memory search morning
96
96
  ```
97
97
 
98
98
  Starting a routine records local usage and prints its steps; it does not spawn background agents or automation jobs. Promotion to a connected schedule is separate and explicit: it calls the public `schedules.create` route only after `--yes`, can include explicit delivery targets such as `--delivery-channel slack`, records a redacted local receipt, and the generated scheduled prompt keeps Agent Knowledge isolated from default Knowledge/Wiki and non-Agent knowledge segments. Use `/schedule reconcile` to compare those local receipts against live connected schedules through public `schedules.list`.