@pellux/goodvibes-agent 0.1.113 → 0.1.114
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 +6 -0
- package/dist/package/main.js +736 -50
- package/package.json +1 -1
- package/src/agent/persona-discovery.ts +117 -0
- package/src/agent/routine-discovery.ts +115 -0
- package/src/cli/help.ts +9 -1
- package/src/cli/local-library-command.ts +81 -1
- package/src/cli/routines-command.ts +156 -1
- package/src/input/agent-workspace-basic-command-editors.ts +90 -0
- package/src/input/agent-workspace-categories.ts +4 -0
- package/src/input/agent-workspace-command-editor.ts +2 -0
- package/src/input/agent-workspace-types.ts +2 -0
- package/src/input/commands/personas-runtime.ts +87 -2
- package/src/input/commands/routines-runtime.ts +87 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GoodVibes Agent will be recorded here.
|
|
4
4
|
|
|
5
|
+
## 0.1.114 - 2026-06-02
|
|
6
|
+
|
|
7
|
+
- 34cbe9d feat: import discovered agent routines
|
|
8
|
+
- 98a003a feat: add persona import workspace form
|
|
9
|
+
- c205cad feat: import discovered agent personas
|
|
10
|
+
|
|
5
11
|
## 0.1.113 - 2026-06-02
|
|
6
12
|
|
|
7
13
|
- efe8b9c feat: expose skill discovery in agent cli
|