@pellux/goodvibes-agent 1.0.31 → 1.0.34
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 +59 -2
- package/README.md +72 -58
- package/dist/package/main.js +7572 -2430
- package/docs/README.md +25 -21
- package/docs/channels-remote-and-api.md +6 -2
- package/docs/connected-host.md +27 -6
- package/docs/getting-started.md +87 -66
- package/docs/knowledge-artifacts-and-multimodal.md +16 -4
- package/docs/project-planning.md +2 -2
- package/docs/providers-and-routing.md +3 -2
- package/docs/release-and-publishing.md +15 -11
- package/docs/tools-and-commands.md +150 -128
- package/docs/voice-and-live-tts.md +1 -1
- package/package.json +8 -3
- package/release/live-verification/live-verification.json +148 -0
- package/release/live-verification/live-verification.md +187 -0
- package/release/performance-snapshot.json +57 -0
- package/release/release-notes.md +19 -0
- package/release/release-readiness.json +581 -0
- package/src/agent/harness-control.ts +42 -3
- package/src/cli/agent-knowledge-command.ts +5 -5
- package/src/cli/agent-knowledge-format.ts +11 -0
- package/src/cli/agent-knowledge-runtime.ts +92 -13
- package/src/cli/bundle-command.ts +5 -4
- package/src/cli/entrypoint.ts +5 -2
- package/src/cli/external-runtime.ts +2 -15
- package/src/cli/management.ts +4 -3
- package/src/input/commands/guidance-runtime.ts +1 -1
- package/src/input/commands/knowledge.ts +2 -2
- package/src/runtime/bootstrap.ts +10 -18
- package/src/runtime/connected-host-auth.ts +16 -0
- package/src/tools/agent-analysis-registry-policy.ts +2 -9
- package/src/tools/agent-channel-send-tool.ts +3 -9
- package/src/tools/agent-context-policy.ts +1 -5
- package/src/tools/agent-find-policy.ts +1 -4
- package/src/tools/agent-harness-channel-metadata.ts +177 -0
- package/src/tools/agent-harness-cli-metadata.ts +4 -1
- package/src/tools/agent-harness-command-catalog.ts +10 -3
- package/src/tools/agent-harness-connected-host-status.ts +9 -3
- package/src/tools/agent-harness-delegation-posture.ts +216 -0
- package/src/tools/agent-harness-keybinding-metadata.ts +57 -22
- package/src/tools/agent-harness-mcp-metadata.ts +248 -0
- package/src/tools/agent-harness-media-posture.ts +282 -0
- package/src/tools/agent-harness-metadata.ts +44 -9
- package/src/tools/agent-harness-model-routing.ts +501 -0
- package/src/tools/agent-harness-model-tool-catalog.ts +7 -2
- package/src/tools/agent-harness-notification-metadata.ts +217 -0
- package/src/tools/agent-harness-operator-methods.ts +285 -0
- package/src/tools/agent-harness-pairing-posture.ts +265 -0
- package/src/tools/agent-harness-panel-metadata.ts +26 -12
- package/src/tools/agent-harness-provider-account-metadata.ts +205 -0
- package/src/tools/agent-harness-release-evidence.ts +364 -0
- package/src/tools/agent-harness-release-readiness.ts +298 -0
- package/src/tools/agent-harness-security-posture.ts +648 -0
- package/src/tools/agent-harness-service-posture.ts +207 -0
- package/src/tools/agent-harness-session-metadata.ts +284 -0
- package/src/tools/agent-harness-setup-posture.ts +295 -0
- package/src/tools/agent-harness-tool-schema.ts +104 -27
- package/src/tools/agent-harness-tool.ts +251 -235
- package/src/tools/agent-harness-ui-surface-metadata.ts +20 -12
- package/src/tools/agent-harness-workspace-actions.ts +260 -0
- package/src/tools/agent-knowledge-ingest-tool.ts +4 -10
- package/src/tools/agent-knowledge-tool.ts +120 -25
- package/src/tools/agent-local-registry-tool.ts +3 -7
- package/src/tools/agent-media-generate-tool.ts +2 -8
- package/src/tools/agent-notify-tool.ts +3 -8
- package/src/tools/agent-operator-action-tool.ts +4 -10
- package/src/tools/agent-operator-briefing-tool.ts +1 -6
- package/src/tools/agent-read-policy.ts +1 -4
- package/src/tools/agent-reminder-schedule-tool.ts +4 -9
- package/src/tools/agent-tool-policy-guard.ts +15 -51
- package/src/tools/agent-web-search-policy.ts +1 -4
- package/src/tools/agent-work-plan-tool.ts +1 -6
- package/src/version.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,65 @@
|
|
|
2
2
|
|
|
3
3
|
Product-facing release notes for GoodVibes Agent.
|
|
4
4
|
|
|
5
|
-
## 1.0.
|
|
5
|
+
## 1.0.34 - 2026-06-04
|
|
6
6
|
|
|
7
|
+
- Promoted GoodVibes Agent to the stable 1.0.x 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.
|
|
8
|
+
- Completed the Agent-local behavior system for day-one operation: local memory and notes, personas, skills, skill bundles, routines, starter profiles, discovery/import flows, review/stale/delete controls, and secret-looking content rejection all stay under Agent ownership.
|
|
9
|
+
- Completed isolated Agent Knowledge coverage across CLI, slash commands, workspace panels, connector/source/node/issue views, URL/file/browser/connector ingest, semantic ask/search, and connected-host `/api/goodvibes-agent/knowledge/*` routes without fallback to default or non-Agent knowledge surfaces.
|
|
10
|
+
- Completed connected-host operator integration without taking host lifecycle ownership: compatibility/status checks, authenticated health and model routes, channel readiness, provider-account posture, approvals, automation snapshots, schedules, work plans, media/voice readiness, pairing, and explicit public-route diagnostics are all visible from Agent.
|
|
11
|
+
- Completed explicit side-effect boundaries for personal operation: channel sends, notifications, routine schedule promotion, reminders, subscription/auth actions, memory bundle imports/exports, support bundles, MCP configuration, profile changes, and build delegation require explicit confirmation where they mutate state or call external routes.
|
|
12
|
+
- Completed package and release hardening for the release gate: Bun-only install/run instructions, package-facing text verification, package runtime bundling, packed global install smoke, blocked lifecycle command smoke, source/package boundary checks, architecture checks, recorded performance snapshot checks, verification ledger, strict live verification artifacts, and release-quality readiness inventory dimensions are now part of the validated release path.
|
|
13
|
+
- Completed the compact model-visible harness pass: `agent_harness` summary and plural catalogs now default to compact rows, with full schemas, policy blocks, route metadata, editor fields, release artifact detail, redacted log tail, and parameter detail behind `includeParameters:true` or singular inspect modes.
|
|
14
|
+
- Completed direct model access to user-facing harness operations: workspace actions, slash commands, settings, panels, UI surfaces, keybindings, tool catalogs, channel/notification posture, provider/account posture, MCP posture, setup, model routing, pairing, delegation, security/support bundles, media, sessions, operator methods, release evidence, and connected-host diagnostics are all exposed through Agent tools or harness modes.
|
|
15
|
+
- Completed connected-host daemon aliases for the model: `daemon` maps to connected-host posture and `daemon_status` maps to live connected-host status while lifecycle control stays outside Agent.
|
|
16
|
+
- Completed settings parity for the model-facing harness: settings discovery is compact by default, `get_setting` and `includeParameters:true` expose full descriptors, and `set_setting`/`reset_setting` use the same config/secret managers with confirmation and external-host setting locks.
|
|
17
|
+
- Completed the tool-description verbosity sweep: first-class Agent tools and wrapped built-in tool definitions now register concise descriptions, while detailed safety rules remain enforced in policy wrappers, confirmation errors, and detailed harness inspection.
|
|
18
|
+
- Completed copyable model route hint cleanup: confirmed harness examples now include the required `confirm:true` and `explicitUserRequest` fields so route hints match the actual execution contract.
|
|
19
|
+
- Completed resilient shortcut/keybinding discovery: `agent_harness` returns fixed shortcuts and default-fallback keybinding descriptors when the live keybinding manager is absent, while keybinding execution and mutation still fail closed until the runtime manager is available.
|
|
20
|
+
- Completed the model-visible operator method catalog: `agent_harness` can now list and inspect allowlisted public operator and Agent Knowledge methods with their owning first-class model tools, confirmation policy, and boundaries, without exposing arbitrary route invocation.
|
|
21
|
+
- Expanded first-class Agent Knowledge reads: `agent_knowledge` now covers status, ask, search, source/node/issue lists, item lookup, map summary, connector list/detail, and connector doctor while staying inside `/api/goodvibes-agent/knowledge/*`.
|
|
22
|
+
- Added fail-closed Agent Knowledge response-scope validation: CLI, model tools, and live verification reject successful-looking payloads that expose default scope metadata or known non-Agent payload markers.
|
|
23
|
+
- Expanded release-route enforcement for Agent Knowledge: architecture/package policy now guards the full route catalog, and live verification definitions include source, node, issue, map, and connector read routes in addition to status, ask, and search.
|
|
24
|
+
- Pinned the release line to `@pellux/goodvibes-sdk@0.33.36` so the packaged connected-host runtime includes Agent Knowledge alias scope normalization and telephony channel surface support.
|
|
25
|
+
- Renamed active release evidence artifacts to current-release paths under `release/`, including release notes, readiness inventory, performance snapshot, and live-verification reports, so current release metadata no longer depends on stale historical filenames.
|
|
26
|
+
|
|
27
|
+
## 1.0.33 - 2026-06-04
|
|
28
|
+
|
|
29
|
+
- Fixed the release lockfile so frozen CI installs resolve @pellux/goodvibes-sdk@0.33.36 and its published peer packages.
|
|
30
|
+
- Carries forward the 1.0.32 model-facing harness coverage, compact tool catalog, keybinding discovery fallback, and connected-host release evidence.
|
|
31
|
+
|
|
32
|
+
## 1.0.32 - 2026-06-04
|
|
33
|
+
|
|
34
|
+
- Pin the Agent release line to `@pellux/goodvibes-sdk@0.33.36` so the packaged connected-host runtime includes Agent Knowledge alias scope normalization and telephony channel surface support.
|
|
35
|
+
- Refresh release readiness evidence to match the current strict live verification run: 19 pass, 0 warn, 0 fail, 0 skip.
|
|
36
|
+
- Treat environment-provisioned connected-host operator tokens as first-class status, doctor, auth, pairing, Agent Knowledge, and model-visible connected-host credentials.
|
|
37
|
+
- Expose channel readiness through `agent_harness` with summary/search and single-channel lookup so the model can inspect setup state, delivery posture, risk labels, and safe config-key names before using the explicit confirmed send tool.
|
|
38
|
+
- Expose notification target posture through `agent_harness` with redacted summary/search and single-target lookup so the model can inspect configured target readiness without receiving full webhook values.
|
|
39
|
+
- Expose provider account posture through `agent_harness` with summary/search and single-provider lookup so the model can inspect auth routes, subscription freshness, usage windows, route issues, and confirmation-gated account actions without receiving tokens.
|
|
40
|
+
- Expose MCP server posture through `agent_harness` with summary/search and single-server lookup so the model can inspect connection, trust, role, quarantine, and tool inventory posture before using explicit confirmed workspace or slash-command mutation flows.
|
|
41
|
+
- Expose setup/onboarding posture through `agent_harness` with summary/search and single setup-item lookup so the model can inspect onboarding snapshot state, derived capability flags, setup marker state, local behavior discovery, channel/media/setup signals, and setup collection issues without applying setup.
|
|
42
|
+
- Expose provider/model routing through `agent_harness` with summary/search and single route/model lookup so the model can inspect current chat route, selectable models, provider ids, pinned models, reasoning support, context windows, and safe route setting keys without changing routes.
|
|
43
|
+
- Expose companion pairing posture through `agent_harness` with summary/search and single pairing-route lookup so the model can inspect endpoint binding, pairing surface id, token presence/fingerprint, and route catalog without receiving raw tokens or QR payloads.
|
|
44
|
+
- Expose explicit build-delegation posture through `agent_harness` with summary/search and single-route lookup so the model can inspect delegation routes, runtime availability, review policy, main-conversation ownership, and blocked local coding ownership without submitting delegated work.
|
|
45
|
+
- Expose security/support posture through `agent_harness` with redacted summary/search, single-finding lookup, bundle route discovery, and existing-bundle inspection by counts and redaction metadata without returning raw config, token, or secret values.
|
|
46
|
+
- Expose voice/media posture through `agent_harness` with summary/search and single-provider lookup so the model can inspect provider readiness, selected TTS setup, browser-tool posture, artifact availability, and safe secret-key names before using confirmed media generation or settings routes.
|
|
47
|
+
- Expose sessions/bookmarks through `agent_harness` with current-session posture, saved-session metadata/search, bookmark counts, saved bookmark file counts, and single-session lookup while save/resume/export/delete/bookmark changes stay visible user flows.
|
|
48
|
+
- Compact model-facing tool registration and schema descriptions, with package verification thresholds to prevent tool-description bloat from returning.
|
|
49
|
+
- Compact `agent_harness` summary route hints so the model gets concise mode names and confirmation rules instead of paragraph-length surface guidance.
|
|
50
|
+
- Keep shortcut and keybinding discovery available when the live keybinding manager is absent by returning default-fallback descriptors while keybinding execution and mutation still fail closed.
|
|
51
|
+
|
|
52
|
+
## 1.0.31 - 2026-06-04
|
|
53
|
+
|
|
54
|
+
- Expose the packaged release evidence bundle through agent_harness so the model can inspect release notes, performance snapshot, readiness inventory, and live-verification artifacts.
|
|
55
|
+
- Expose service posture and single-endpoint diagnostics through agent_harness so the model can inspect status/doctor/support-bundle endpoint posture without connected-host lifecycle control.
|
|
56
|
+
- Expose the public operator method catalog through agent_harness with preferred first-class tool routes and single-method lookup, without arbitrary route invocation.
|
|
57
|
+
- Expand agent_knowledge beyond status/ask/search to cover read-only source, node, issue, item, map, connector, and connector doctor inspection.
|
|
58
|
+
- Expand live verification definitions to check isolated Agent Knowledge source, node, issue, map, and connector routes in addition to status, ask, and search.
|
|
59
|
+
- Strengthen architecture/package policy so the full Agent Knowledge route catalog remains Agent-specific.
|
|
60
|
+
- Reject Agent Knowledge responses that expose default scope metadata or known non-Agent payload markers across CLI, model tools, and live verification.
|
|
61
|
+
- Count the packaged release evidence bundle and release-evidence harness modes in the verification ledger.
|
|
62
|
+
- Count the model-visible service posture modes and endpoint ids in the verification ledger.
|
|
63
|
+
- Count the model-visible operator method catalog modes and sources in the verification ledger.
|
|
7
64
|
- Expose settings catalog filters in the agent_harness summary so the model can discover category, prefix, query, includeHidden, and limit before mutating settings.
|
|
8
65
|
- Expose model-tool catalog schema inlining in the agent_harness summary and package docs.
|
|
9
66
|
- Add focused harness coverage for settings filter guidance and model-tool includeParameters schema inlining.
|
|
@@ -187,7 +244,7 @@ Product-facing release notes for GoodVibes Agent.
|
|
|
187
244
|
|
|
188
245
|
## 1.0.0 - 2026-06-03
|
|
189
246
|
|
|
190
|
-
- Promoted GoodVibes Agent to the
|
|
247
|
+
- Promoted GoodVibes Agent to the stable 1.0.x 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.
|
|
191
248
|
- Completed the Agent-local behavior system for day-one operation: local memory and notes, personas, skills, skill bundles, routines, starter profiles, discovery/import flows, review/stale/delete controls, and secret-looking content rejection all stay under Agent ownership.
|
|
192
249
|
- Completed isolated Agent Knowledge coverage across CLI, slash commands, workspace panels, connector/source/node/issue views, URL/file/browser/connector ingest, semantic ask/search, and connected-host `/api/goodvibes-agent/knowledge/*` routes without fallback to default or non-Agent knowledge surfaces.
|
|
193
250
|
- Completed connected-host operator integration without taking host lifecycle ownership: compatibility/status checks, authenticated health and model routes, channel readiness, provider-account posture, approvals, automation snapshots, schedules, work plans, media/voice readiness, pairing, and explicit public-route diagnostics are all visible from Agent.
|
package/README.md
CHANGED
|
@@ -3,30 +3,26 @@
|
|
|
3
3
|
[](https://opensource.org/licenses/MIT)
|
|
4
4
|
[](#install)
|
|
5
5
|
|
|
6
|
-
GoodVibes Agent is the personal operator assistant TUI for GoodVibes. It is built for day-to-day operator work: chat, setup,
|
|
6
|
+
GoodVibes Agent is the installable personal operator assistant TUI for GoodVibes. It is built for day-to-day operator work: chat, setup, profiles, routines, skills, personas, Agent-local memory and notes, isolated Agent Knowledge, channel readiness, voice/media setup, work-plan tracking, approvals, automation visibility, and explicit build delegation.
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Most work happens in the interactive TUI. The installed CLI exists to launch that TUI and provide scriptable mirrors for workflows that are already reachable from the workspace. The main Agent model can inspect the same harness surface through Agent-owned tools: workspace categories/actions and single-action lookup, built-in panels and single-panel lookup, modal/overlay/picker UI surfaces and single-surface lookup, named operator surfaces, top-level CLI mirrors and single-mirror lookup with preferred model routes, fixed shortcuts, configurable keybindings, single-keybinding lookup, shell-safe keybinding execution, slash commands, single-command lookup with effect, boundary, and preferred-route policy metadata, filtered settings and single-setting lookup, model tools with optional schema inlining and individual model tool schemas, local registries, connected-host capability boundaries, and live connected-host readiness are all discoverable from the conversation without exposing connected-host lifecycle control.
|
|
8
|
+
Agent connects to a GoodVibes host owned outside this package. It does not install, start, stop, restart, expose, or own that host.
|
|
11
9
|
|
|
12
10
|
## Install
|
|
13
11
|
|
|
14
|
-
Install the current `1.0.x` package with Bun:
|
|
15
|
-
|
|
16
12
|
```sh
|
|
17
13
|
bun add -g @pellux/goodvibes-agent
|
|
18
14
|
goodvibes-agent --help
|
|
19
15
|
goodvibes-agent
|
|
20
16
|
```
|
|
21
17
|
|
|
22
|
-
If
|
|
18
|
+
If the command is not on `PATH`, add Bun's global bin directory:
|
|
23
19
|
|
|
24
20
|
```sh
|
|
25
21
|
export PATH="$(bun pm bin -g):$PATH"
|
|
26
22
|
goodvibes-agent --help
|
|
27
23
|
```
|
|
28
24
|
|
|
29
|
-
`goodvibes-agent`
|
|
25
|
+
On a fresh Agent home, `goodvibes-agent` opens setup first. After setup is applied, it opens directly into the Agent workspace.
|
|
30
26
|
|
|
31
27
|
## Source Usage
|
|
32
28
|
|
|
@@ -37,7 +33,7 @@ bun install
|
|
|
37
33
|
bun run dev
|
|
38
34
|
```
|
|
39
35
|
|
|
40
|
-
Useful checks:
|
|
36
|
+
Useful local checks:
|
|
41
37
|
|
|
42
38
|
```sh
|
|
43
39
|
bun run typecheck
|
|
@@ -46,90 +42,110 @@ bun run package:install-check
|
|
|
46
42
|
bun run publish:check
|
|
47
43
|
```
|
|
48
44
|
|
|
49
|
-
|
|
45
|
+
## Operator Workspace
|
|
46
|
+
|
|
47
|
+
The fullscreen Agent workspace is the primary product surface. Reopen it with `/agent`, `/home`, or `/operator`.
|
|
50
48
|
|
|
51
|
-
|
|
49
|
+
Workspace areas:
|
|
52
50
|
|
|
53
51
|
- Home: normal assistant chat, operator briefing, model selection, setup, and health.
|
|
54
|
-
- Conversation: context usage, inline `@file`/`@folder`/`@url` references, compaction, title/session save/load/search/export,
|
|
55
|
-
- Research: read-only web research, URL inspection, source triage, and explicit handoff into
|
|
56
|
-
- Artifacts: image attachment, conversation/session export, source-file ingest, source lookup, bookmark/browser-history import, and generated media
|
|
52
|
+
- Conversation: context usage, inline `@file`/`@folder`/`@url` references, compaction, title/session save/load/search/export, bookmarks, paste/image/TTS helpers, undo/redo/retry, clear/reset, shortcuts, and keybindings.
|
|
53
|
+
- Research: read-only web research, URL inspection, source triage, and explicit handoff into Agent Knowledge.
|
|
54
|
+
- Artifacts: image attachment, conversation/session export, source-file ingest, source lookup, bookmark/browser-history import, and generated media artifacts.
|
|
57
55
|
- Setup: provider/model, compatibility, Agent Knowledge readiness, profiles, support bundles, subscriptions, and auth review.
|
|
58
|
-
- Tools & MCP: MCP server setup, tool inventory, trust review,
|
|
59
|
-
- Knowledge: isolated Agent Knowledge status, ask/search,
|
|
56
|
+
- Tools & MCP: MCP server setup, tool inventory, trust review, secrets, and settings.
|
|
57
|
+
- Knowledge: isolated Agent Knowledge status, ask/search, source/node/issue libraries, item lookup, map review, connectors, ingest, review queue, and reindex.
|
|
60
58
|
- Memory & Skills: local memory, scratchpad notes, learned behavior capture, personas, skills, routines, and schedule promotion.
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
- Build Delegation: explicit handoff to GoodVibes TUI for build/fix/review work.
|
|
59
|
+
- Channels: companion pairing, channel readiness, confirmed channel delivery, and confirmed webhook notification management.
|
|
60
|
+
- Voice & Media: voice review, spoken response setup, image input, confirmed image/video generation, browser-tool posture, and provider readiness.
|
|
61
|
+
- Automation: reminders, schedule status, routine promotion receipts, reconciliation, and exact confirmed approval/automation/schedule actions.
|
|
62
|
+
- Build Delegation: explicit handoff to GoodVibes TUI for build, fix, implementation, or review work.
|
|
66
63
|
|
|
67
|
-
|
|
64
|
+
Press `/` inside the workspace to search actions by name, category, command, or detail. Slash commands and CLI subcommands remain power-user/scriptable mirrors; the workspace is the first-class user path.
|
|
68
65
|
|
|
69
|
-
|
|
66
|
+
## Model-Visible Harness
|
|
70
67
|
|
|
71
|
-
The
|
|
68
|
+
The main Agent model can inspect and operate the same user-facing harness through Agent-owned tools. The important entrypoint is `agent_harness`.
|
|
72
69
|
|
|
73
|
-
|
|
70
|
+
`agent_harness mode:"summary"` is compact by default. It returns counts, status, and a short mode guide. Plural catalog modes are also compact by default: they return ids, labels, counts, safe state, and route hints. Use `includeParameters:true` or a singular inspect mode when the model needs schemas, detailed route hints, full policy blocks, redacted log tail, release artifact data, or editor field definitions.
|
|
74
71
|
|
|
75
|
-
|
|
72
|
+
High-value `agent_harness` mode groups:
|
|
76
73
|
|
|
77
|
-
|
|
74
|
+
- Discovery: `workspace_categories`, `workspace_actions`, `commands`, `cli_commands`, `panels`, `ui_surfaces`, `shortcuts`, `keybindings`, `tools`, `settings`.
|
|
75
|
+
- Single-item inspection: `workspace_action`, `command`, `cli_command`, `panel`, `ui_surface`, `keybinding`, `tool`, `get_setting`.
|
|
76
|
+
- User-visible effects: `run_workspace_action`, `run_command`, `open_panel`, `open_ui_surface`, `run_keybinding`, `set_keybinding`, `reset_keybinding`, `set_setting`, `reset_setting`.
|
|
77
|
+
- Product posture: `channels`, `notifications`, `provider_accounts`, `mcp_servers`, `setup_posture`, `model_routing`, `pairing_posture`, `delegation_posture`, `security_posture`, `support_bundles`, `media_posture`, `sessions`.
|
|
78
|
+
- Connected host: `service_posture`, `service_endpoint`, `connected_host`, `connected_host_status`, `connected_host_capability`; `daemon` and `daemon_status` are aliases for connected-host posture/status.
|
|
79
|
+
- Release evidence: `release_evidence`, `release_evidence_artifact`, `release_readiness`, `release_readiness_item`.
|
|
80
|
+
- Operator methods: `operator_methods`, `operator_method`.
|
|
78
81
|
|
|
79
|
-
|
|
82
|
+
Every mutating or externally visible effect requires `confirm:true` plus `explicitUserRequest` unless a narrower first-class tool has its own confirmation contract. Ambiguous lookups return candidates instead of guessing.
|
|
80
83
|
|
|
81
|
-
|
|
84
|
+
First-class model tools cover common workflows directly:
|
|
82
85
|
|
|
83
|
-
|
|
86
|
+
- `agent_knowledge` and `agent_knowledge_ingest` for isolated Agent Knowledge reads and confirmed ingest.
|
|
87
|
+
- `agent_local_registry` for Agent-local memory, notes, personas, skills, bundles, and routines.
|
|
88
|
+
- `agent_work_plan` for visible local work-plan tracking.
|
|
89
|
+
- `agent_operator_briefing` and `agent_operator_action` for connected work/approval/automation/schedule posture and exact confirmed actions.
|
|
90
|
+
- `agent_channel_send`, `agent_notify`, `agent_reminder_schedule`, and `agent_media_generate` for confirmed delivery, notification, reminder, and media generation.
|
|
84
91
|
|
|
85
|
-
|
|
92
|
+
## Local Behavior
|
|
86
93
|
|
|
87
|
-
|
|
94
|
+
Agent-local memory, notes, personas, skills, routines, and profiles are stored under the Agent home. They are injected only into the serial Agent conversation unless an explicit Agent workflow promotes or ingests reviewed material elsewhere.
|
|
88
95
|
|
|
89
|
-
|
|
96
|
+
Useful workspace paths:
|
|
90
97
|
|
|
91
|
-
|
|
98
|
+
- Memory & Skills -> Create memory, Create note, or Capture learned behavior.
|
|
99
|
+
- Notes -> Create, edit, review, stale, delete, or promote scratchpad notes.
|
|
100
|
+
- Personas -> Create, inspect, activate, review, stale, or delete local personas.
|
|
101
|
+
- Skills -> Create skills, import discovered skills, enable/disable, review, delete, and manage skill bundles.
|
|
102
|
+
- Routines -> Create routines, start a routine in chat, review receipts, and explicitly promote one routine to a connected schedule.
|
|
103
|
+
- Profiles -> Create isolated Agent profiles from built-in or imported starter templates.
|
|
92
104
|
|
|
93
|
-
|
|
105
|
+
Starting a routine prints its steps in the main conversation. It does not start background automation. Promotion to a connected schedule is separate, explicit, confirmation-gated, and records a redacted local receipt.
|
|
94
106
|
|
|
95
|
-
|
|
107
|
+
## Knowledge And Artifacts
|
|
96
108
|
|
|
97
|
-
|
|
98
|
-
- Agent Workspace -> Skills: create skills, import discovered skills, enable or disable them, and manage skill bundles.
|
|
99
|
-
- Agent Workspace -> Routines: create routines, start a routine in the main conversation, review receipts, and explicitly promote one routine to a connected schedule.
|
|
100
|
-
- Agent Workspace -> Work: review the visible local work plan, add work items, and update status from the TUI while the main assistant conversation can keep the same plan current.
|
|
101
|
-
- Agent Workspace -> Memory & Skills: create memory, search memory, review/stale/delete records, export/import bundles, and rebuild the local vector index.
|
|
102
|
-
- Agent Workspace -> Notes: create, edit, review, stale, delete, and promote Agent-local scratchpad notes into memory, skills, routines, or personas.
|
|
103
|
-
- Agent Workspace -> Channels: inspect readiness, pair companion clients, send one confirmed channel delivery message, and manage or send configured notification targets with confirmation.
|
|
109
|
+
Agent Knowledge is its own product segment. Agent uses only:
|
|
104
110
|
|
|
105
|
-
|
|
111
|
+
```text
|
|
112
|
+
/api/goodvibes-agent/knowledge/*
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Agent does not fall back to default knowledge or other product-specific knowledge routes. Successful connected-host responses are checked for scope contamination before rendering.
|
|
106
116
|
|
|
107
|
-
|
|
117
|
+
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, review queue, and reindex.
|
|
108
118
|
|
|
109
|
-
|
|
119
|
+
Artifacts are first-class runtime objects for uploaded files, generated media, and delegated outputs. Generated media is stored as GoodVibes artifacts and reported by artifact id and metadata, not inline base64.
|
|
110
120
|
|
|
111
121
|
## Connected Host
|
|
112
122
|
|
|
113
|
-
Start the owning GoodVibes host before launching Agent.
|
|
123
|
+
Start the owning GoodVibes host before launching Agent. The default connection is:
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
http://127.0.0.1:3421
|
|
127
|
+
```
|
|
114
128
|
|
|
115
|
-
Use `--runtime-url http://host:port` for
|
|
129
|
+
Use `--runtime-url http://host:port` for one launch or `GOODVIBES_AGENT_RUNTIME_URL=http://host:port` for a shell/session override. `GOODVIBES_AGENT_BASE_URL` is accepted as a legacy alias. These only change the connection target.
|
|
116
130
|
|
|
117
|
-
Agent reports unavailable, unauthenticated, or incompatible
|
|
131
|
+
Agent reports unavailable, unauthenticated, or incompatible host state from Agent Workspace -> Home through Host compatibility, Doctor diagnostics, and Review health. Scriptable mirrors are `goodvibes-agent status`, `goodvibes-agent doctor`, and `goodvibes-agent compat`.
|
|
118
132
|
|
|
119
|
-
|
|
133
|
+
Model-visible diagnostics are read-only:
|
|
134
|
+
|
|
135
|
+
- `service_posture` and `service_endpoint` expose endpoint binding, network-facing posture, issues, optional probes, and redacted log tail.
|
|
136
|
+
- `connected_host` and `daemon` are compact posture maps by default; `includeParameters:true` adds route families, allowed capabilities, blocked lifecycle/non-Agent surfaces, and first-class tool availability. `connected_host_capability` inspects one capability.
|
|
137
|
+
- `connected_host_status` and `daemon_status` run live readiness checks for host status, SDK compatibility, token posture, endpoint binding, and isolated Agent Knowledge readiness.
|
|
120
138
|
|
|
121
|
-
|
|
139
|
+
Host lifecycle stays outside GoodVibes Agent.
|
|
122
140
|
|
|
123
|
-
|
|
141
|
+
## Product Boundary
|
|
124
142
|
|
|
125
|
-
Agent
|
|
143
|
+
GoodVibes Agent owns the operator assistant TUI, serial assistant flow, local behavior libraries, Agent Knowledge routes, companion chat, work-plan tracking, approvals/automation observability, channel/media/reminder tools, and explicit build delegation.
|
|
126
144
|
|
|
127
|
-
GoodVibes TUI owns coding execution: file edits, git/worktree workflows, coding panels, execution isolation UX, and delegated review execution. Agent may delegate explicit build/fix/review work
|
|
145
|
+
GoodVibes TUI owns coding execution: file edits, git/worktree workflows, coding panels, execution isolation UX, and delegated review execution. Agent may delegate explicit build/fix/review work; normal assistant chat does not use shared coding sessions.
|
|
128
146
|
|
|
129
147
|
## Package Docs
|
|
130
148
|
|
|
131
|
-
Package-facing docs:
|
|
132
|
-
|
|
133
149
|
- [Getting Started](docs/getting-started.md)
|
|
134
150
|
- [Connected Host](docs/connected-host.md)
|
|
135
151
|
- [Knowledge, Artifacts, and Multimodal](docs/knowledge-artifacts-and-multimodal.md)
|
|
@@ -139,5 +155,3 @@ Package-facing docs:
|
|
|
139
155
|
- [Voice and Live TTS](docs/voice-and-live-tts.md)
|
|
140
156
|
- [Project Planning](docs/project-planning.md)
|
|
141
157
|
- [Release And Publishing](docs/release-and-publishing.md)
|
|
142
|
-
|
|
143
|
-
The package-facing Agent documentation is limited to the docs listed above.
|