@pellux/goodvibes-agent 0.1.36 → 0.1.38

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 CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.38 - 2026-05-31
6
+
7
+ - 072503c Add routine schedule promotion receipts
8
+ - 5bb9801 Update automation capability benchmark
9
+
10
+ ## 0.1.37 - 2026-05-31
11
+
12
+ - 656b6f4 Add Agent routine daemon schedule promotion
13
+
5
14
  ## 0.1.36 - 2026-05-31
6
15
 
7
16
  - 9de2f5e Add guided Agent starter authoring
package/README.md CHANGED
@@ -68,10 +68,14 @@ Local Agent behavior is editable from the TUI:
68
68
  /personas use research
69
69
  /routines create --name "Evening Review" --description "Review open work before shutdown" --steps "Check work plan, approvals, and Agent Knowledge status before summarizing." --enabled true
70
70
  /routines start evening-review
71
+ /schedule promote-routine evening-review --cron "0 17 * * 1-5" --timezone America/Chicago --yes
72
+ /schedule receipts
71
73
  /agent-skills create --name "Morning Brief" --description "Daily briefing flow" --procedure "Check tasks, approvals, calendar, and unread state before summarizing." --enabled true
72
74
  /skills local list
73
75
  ```
74
76
 
77
+ Starting a routine records local usage and prints its steps; it does not spawn background agents or daemon automation jobs. Promotion to a daemon schedule is separate and explicit: it calls the public `schedules.create` route on the externally managed daemon only after `--yes`, records a redacted local receipt, and the generated scheduled prompt keeps Agent Knowledge isolated from default Knowledge/Wiki and HomeGraph.
78
+
75
79
  ## Daemon Prerequisite
76
80
 
77
81
  Start or restart the daemon from GoodVibes TUI or the daemon host before launching Agent. Agent status and companion/knowledge routes connect to that external daemon, normally on `http://127.0.0.1:3421`.
@@ -70,12 +70,13 @@ Personas, routines, and reusable Agent skills are local to GoodVibes Agent. They
70
70
  /personas use research
71
71
  /routines create --name "Evening Review" --description "Review open work before shutdown" --steps "Check work plan, approvals, and Agent Knowledge status before summarizing." --enabled true
72
72
  /routines start evening-review
73
+ /schedule promote-routine evening-review --cron "0 17 * * 1-5" --timezone America/Chicago --yes
73
74
  /agent-skills create --name "Morning Brief" --description "Daily briefing flow" --procedure "Check tasks, approvals, calendar, and unread state before summarizing." --enabled true
74
75
  /agent-skills enabled
75
76
  /skills local list
76
77
  ```
77
78
 
78
- The active persona plus enabled Agent routines and skills are injected into the main serial assistant conversation. Starting a routine records local usage and prints its steps; it does not spawn background agents or daemon automation jobs.
79
+ The active persona plus enabled Agent routines and skills are injected into the main serial assistant conversation. Starting a routine records local usage and prints its steps; it does not spawn background agents or daemon automation jobs. Promoting a routine to a schedule is an explicit `schedules.create` call to the external daemon, requires `--yes`, writes a local redacted promotion receipt, and preserves the rule that Agent Knowledge never falls back to default Knowledge/Wiki or HomeGraph.
79
80
 
80
81
  ## External Daemon
81
82
 
@@ -53,7 +53,7 @@ Primary sources used for the benchmark:
53
53
  | Channels | WhatsApp, Telegram, Slack, Discord, Signal, iMessage, web chat | GoodVibes daemon channel and companion surfaces with Agent-side policy, a Channels operator workspace, and per-channel readiness/risk labels |
54
54
  | Knowledge/memory | Durable memory, semantic search, wiki/claim layers | Isolated Agent Knowledge routes with workspace ask/search/ingest/review flows plus local memory/skills/personas/routines |
55
55
  | Skills/procedural memory | Skills directories, registries, skill lifecycle | Local Agent skills with review/stale/source/provenance fields |
56
- | Scheduling | Natural-language cron, run/pause/resume/edit/remove, delivery | Guarded automation/schedule routes plus local routines; hidden model scheduling blocked |
56
+ | Scheduling | Natural-language cron, run/pause/resume/edit/remove, delivery | Local routines can be explicitly promoted to external daemon `schedules.create` with `--yes`; redacted local promotion receipts are reviewable; hidden model scheduling and local scheduler spawns are blocked |
57
57
  | Tools/MCP | Broad toolsets, MCP, browser, media, terminal, files | GoodVibes SDK tools with Agent policy guards and MCP/provider integrations |
58
58
  | Voice/media/canvas/nodes | Voice, TTS, mobile nodes, live canvas, browser automation | GoodVibes media/voice/browser/node primitives with an Agent workspace for setup, image input, browser posture, MCP, and remote/node inspection |
59
59
  | Build/code work | Direct terminal/file/code tools and subagents | Explicit delegation to GoodVibes TUI; local WRFC/spawn fanout blocked |
@@ -66,6 +66,7 @@ GoodVibes Agent should exceed OpenClaw/Hermes by making these properties true fr
66
66
 
67
67
  - Capability surfaces are discoverable through `goodvibes-agent capabilities`, `/capabilities`, onboarding, and the operator workspace.
68
68
  - Agent Knowledge isolation is a release gate, not a convention.
69
+ - Routine-to-schedule promotion preserves Agent Knowledge isolation and uses only public external daemon schedule routes.
69
70
  - Model-visible tools are policy-gated for serial, non-secret, non-destructive use.
70
71
  - Personal assistant state is Agent-local unless an explicit Agent Knowledge ingest route is used.
71
72
  - Build work is delegated to the product that owns coding execution instead of turning the personal operator into a second coding TUI.
@@ -77,6 +78,7 @@ GoodVibes Agent should exceed OpenClaw/Hermes by making these properties true fr
77
78
  - Artifact and multimodal Agent Knowledge ingest affordances once Agent-specific routes are stable.
78
79
  - Visual starter-template editing inside the fullscreen Agent workspace after the command-guided authoring path.
79
80
  - Artifact and multimodal Agent Knowledge ingestion when the isolated Agent route accepts artifact-backed media.
81
+ - Live schedule recovery/status correlation for promoted routines.
80
82
  - Delegation receipts and artifact review inside the operator workspace.
81
83
  - Approval center with route risk labels and saved policy presets.
82
84
  - Intent-gated tool exposure so the model sees fewer irrelevant tools per turn while retaining broad capability coverage.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.36",
3
+ "version": "0.1.38",
4
4
  "private": false,
5
5
  "description": "Near-fork GoodVibes operator assistant with the GoodVibes TUI shell, renderer, input, fullscreen workspace, and daemon-connected Agent product brain.",
6
6
  "type": "module",