@pellux/goodvibes-agent 1.0.0 → 1.0.1
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 +7 -0
- package/dist/package/main.js +292 -357
- package/package.json +1 -1
- package/src/cli/local-library-command.ts +25 -5
- package/src/cli/routines-command.ts +15 -3
- package/src/input/agent-workspace-knowledge-url-editor.ts +4 -11
- package/src/input/commands/agent-local-library-args.ts +52 -0
- package/src/input/commands/agent-skills-runtime.ts +4 -29
- package/src/input/commands/mcp-runtime.ts +62 -15
- package/src/input/commands/personas-runtime.ts +4 -29
- package/src/input/commands/routines-runtime.ts +4 -29
- package/src/input/session-picker-modal.ts +3 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Product-facing release notes for GoodVibes Agent.
|
|
4
4
|
|
|
5
|
+
## 1.0.1 - 2026-06-03
|
|
6
|
+
|
|
7
|
+
- Preserved Agent Knowledge setup paths with spaces, quoted generated Agent command guidance, and hardened MCP trust and role command validation.
|
|
8
|
+
- Blocked MCP allow-all escalation from Agent slash commands while keeping Settings as the explicit allow-all surface.
|
|
9
|
+
- Preserved MCP server passthrough arguments after -- and local persona, skill, and routine text that starts with flag-like values.
|
|
10
|
+
- Kept the 1.0 release package and install gates green across typecheck, architecture, performance, package build, publish check, packed install smoke, and verification ledger.
|
|
11
|
+
|
|
5
12
|
## 1.0.0 - 2026-06-03
|
|
6
13
|
|
|
7
14
|
- Promoted GoodVibes Agent to the release-candidate operator product surface: the fullscreen Agent workspace is the primary TUI, with setup, provider/model routing, status, compatibility, and doctor flows shaped around personal operator use instead of copied host lifecycle controls.
|