@pellux/goodvibes-agent 0.1.113 → 0.1.116
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 +19 -0
- package/README.md +4 -0
- package/dist/package/main.js +1659 -324
- package/docs/getting-started.md +4 -0
- package/package.json +1 -1
- package/src/agent/behavior-discovery-summary.ts +167 -0
- package/src/agent/persona-discovery.ts +117 -0
- package/src/agent/routine-discovery.ts +115 -0
- package/src/agent/runtime-profile-starters.ts +331 -0
- package/src/agent/runtime-profile.ts +150 -330
- package/src/cli/help.ts +11 -3
- package/src/cli/local-library-command.ts +81 -1
- package/src/cli/profiles-command.ts +128 -0
- package/src/cli/routines-command.ts +156 -1
- package/src/input/agent-workspace-basic-command-editor-submission.ts +534 -0
- package/src/input/agent-workspace-basic-command-editors.ts +77 -395
- package/src/input/agent-workspace-categories.ts +7 -0
- package/src/input/agent-workspace-command-editor.ts +4 -0
- package/src/input/agent-workspace-setup.ts +33 -13
- package/src/input/agent-workspace-snapshot.ts +6 -0
- package/src/input/agent-workspace-types.ts +6 -0
- package/src/input/commands/agent-runtime-profile-runtime.ts +73 -4
- package/src/input/commands/personas-runtime.ts +87 -2
- package/src/input/commands/routines-runtime.ts +87 -2
- package/src/input/onboarding/onboarding-wizard-operator-steps.ts +46 -9
- package/src/input/onboarding/onboarding-wizard-steps.ts +1 -1
- package/src/renderer/agent-workspace.ts +26 -0
- package/src/runtime/onboarding/derivation.ts +20 -1
- package/src/runtime/onboarding/snapshot.ts +2 -0
- package/src/runtime/onboarding/types.ts +2 -0
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GoodVibes Agent will be recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.116 - 2026-06-02
|
|
6
|
+
|
|
7
|
+
- Includes the behavior-discovery and profile setup work prepared in 0.1.115; 0.1.115 was superseded before npm publish.
|
|
8
|
+
- 8fcd30f fix: split architecture-gated modules
|
|
9
|
+
|
|
10
|
+
## 0.1.115 - 2026-06-02
|
|
11
|
+
|
|
12
|
+
- d0e1499 feat: guide setup to discovered profiles
|
|
13
|
+
- b94ce82 feat: create profiles from discovered behaviors
|
|
14
|
+
- 5590487 feat: create starters from discovered behaviors
|
|
15
|
+
- 70c5261 feat: show behavior imports in onboarding
|
|
16
|
+
- d836392 feat: surface discovered behaviors in setup
|
|
17
|
+
|
|
18
|
+
## 0.1.114 - 2026-06-02
|
|
19
|
+
|
|
20
|
+
- 34cbe9d feat: import discovered agent routines
|
|
21
|
+
- 98a003a feat: add persona import workspace form
|
|
22
|
+
- c205cad feat: import discovered agent personas
|
|
23
|
+
|
|
5
24
|
## 0.1.113 - 2026-06-02
|
|
6
25
|
|
|
7
26
|
- efe8b9c feat: expose skill discovery in agent cli
|
package/README.md
CHANGED
|
@@ -56,8 +56,12 @@ bun run publish:check
|
|
|
56
56
|
|
|
57
57
|
After setup has been shown once, the Agent TUI opens directly into the operator workspace. You can also reopen it with `/agent`, `/home`, or `/operator`. It is the Agent-first fullscreen workspace for setup, model/provider selection, isolated Agent Knowledge, local memory/skills/routines/personas, channel readiness, voice/media setup, work-plan/approval review, automation observability, and explicit build delegation to GoodVibes TUI.
|
|
58
58
|
|
|
59
|
+
The setup workspace surfaces discovered local Agent persona, skill, and routine markdown files so day-one setup can import useful behavior instead of starting from blank records.
|
|
60
|
+
|
|
59
61
|
Inside the workspace, use `/agent-profile guide` to author custom profile starters without leaving the Agent TUI. The guided flow lists starters, exports starter JSON, imports edited local starters, and creates isolated Agent profiles from them.
|
|
60
62
|
|
|
63
|
+
Use `profiles create-from-discovered <name> --yes` or the Profiles workspace form to turn reviewed discovered persona, skill, and routine files into a local starter template and isolated Agent profile in one confirmed flow. `profiles templates from-discovered <id> --yes` is still available when you only want to save the starter first.
|
|
64
|
+
|
|
61
65
|
The Knowledge area includes an in-workspace URL ingest form. It writes only to Agent Knowledge, requires typed confirmation, and dispatches the existing isolated `/knowledge ingest-url ... --yes` route.
|
|
62
66
|
|
|
63
67
|
Use isolated Agent profiles when one machine needs separate operator identities or local state:
|