@pellux/goodvibes-agent 1.1.2 → 1.1.4
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 +12 -0
- package/README.md +1 -1
- package/dist/package/main.js +862 -337
- package/docs/channels-remote-and-api.md +1 -1
- package/docs/connected-host.md +1 -1
- package/docs/getting-started.md +1 -1
- package/docs/knowledge-artifacts-and-multimodal.md +1 -1
- package/docs/tools-and-commands.md +1 -1
- package/package.json +2 -2
- package/release/release-notes.md +1 -1
- package/release/release-readiness.json +4 -4
- package/src/agent/knowledge-scope-alias.ts +56 -0
- package/src/cli/agent-knowledge-runtime.ts +25 -9
- package/src/input/agent-workspace-activation.ts +11 -1
- package/src/input/agent-workspace-categories.ts +225 -69
- package/src/input/agent-workspace-category-actions.ts +25 -0
- package/src/input/agent-workspace-settings.ts +314 -0
- package/src/input/agent-workspace-types.ts +14 -1
- package/src/input/agent-workspace.ts +69 -34
- package/src/renderer/agent-workspace.ts +13 -12
- package/src/tools/agent-harness-ui-surface-metadata.ts +1 -1
- package/src/tools/agent-harness-workspace-actions.ts +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Product-facing release notes for GoodVibes Agent.
|
|
4
4
|
|
|
5
|
+
## 1.1.4 - 2026-06-05
|
|
6
|
+
|
|
7
|
+
- Rebuilt first-run onboarding into actionable Account & Model, Assistant Behavior, Tools & Permissions, Interface, Messaging, Voice & Phone, Context, Verify, and Finish pages with persisted setting actions instead of inert links.
|
|
8
|
+
- Added GoodVibes TUI settings import plus conditional channel, telephony, model, permission, display, behavior, voice, and local-context setup rows that write Agent-owned config and saved settings.
|
|
9
|
+
- Cleaned the model-facing Agent workspace surface with compact summaries, complete workspace action catalog exposure, unique action and category labels, and unambiguous canonical memory lookup.
|
|
10
|
+
- Fixed full-suite temp isolation so exec-tool tests stay stable when other tests clean project temp workspaces.
|
|
11
|
+
|
|
12
|
+
## 1.1.3 - 2026-06-05
|
|
13
|
+
|
|
14
|
+
- Add telephony channel support through the updated Agent platform dependency.
|
|
15
|
+
- Keep Agent Knowledge scope alias normalization inside Agent CLI, model tools, and live verification while preserving fail-closed non-Agent contamination checks.
|
|
16
|
+
|
|
5
17
|
## 1.1.2 - 2026-06-05
|
|
6
18
|
|
|
7
19
|
- Remove the redundant Finish action so onboarding completion presents only Apply & close.
|
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ Agent Knowledge is its own product segment. Agent uses only:
|
|
|
114
114
|
/api/goodvibes-agent/knowledge/*
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
-
Agent does not fall back to default knowledge or other product-specific knowledge routes. Successful connected-host responses
|
|
117
|
+
Agent does not fall back to default knowledge or other product-specific knowledge routes. Successful connected-host responses normalize public Agent-route scope aliases before checking for non-Agent contamination.
|
|
118
118
|
|
|
119
119
|
The Knowledge workspace and model tools support status, ask/search, source/node/issue lists, item lookup, map review, connector inspection, URL/file/URL-list/bookmark/browser-history/connector ingest, issue review, prompt packet/explain previews, consolidation, review queue, and reindex.
|
|
120
120
|
|