@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.
- package/CHANGELOG.md +22 -0
- package/README.md +3 -3
- package/dist/package/main.js +9921 -9868
- package/docs/getting-started.md +3 -3
- package/package.json +1 -1
- package/src/cli/help.ts +4 -1
- package/src/cli/local-library-command.ts +90 -1
- package/src/cli/parser.ts +0 -8
- package/src/cli/service-posture.ts +1 -8
- package/src/cli/status.ts +1 -30
- package/src/cli/types.ts +0 -1
- package/src/input/agent-workspace-categories.ts +5 -7
- package/src/input/agent-workspace-snapshot.ts +2 -10
- package/src/input/agent-workspace-types.ts +2 -3
- package/src/input/commands/brief-runtime.ts +1 -1
- package/src/input/commands/channels-runtime.ts +397 -35
- package/src/input/commands/experience-runtime.ts +4 -9
- package/src/input/commands/health-runtime.ts +26 -6
- package/src/input/commands/mcp-runtime.ts +51 -26
- package/src/input/commands/memory.ts +10 -10
- package/src/input/commands/planning-runtime.ts +4 -9
- package/src/input/commands/provider-accounts-runtime.ts +2 -3
- package/src/input/commands/qrcode-runtime.ts +48 -9
- package/src/input/commands/recall-bundle.ts +16 -16
- package/src/input/commands/recall-capture.ts +18 -18
- package/src/input/commands/recall-query.ts +22 -22
- package/src/input/commands/recall-review.ts +12 -12
- package/src/input/commands/tasks-runtime.ts +9 -15
- package/src/input/commands/work-plan-runtime.ts +5 -19
- package/src/input/commands.ts +2 -7
- package/src/renderer/agent-workspace.ts +1 -2
- package/src/renderer/ui-factory.ts +1 -1
- package/src/runtime/onboarding/derivation.ts +6 -67
- 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
|
|
94
|
-
/
|
|
95
|
-
/
|
|
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`.
|