@pellux/goodvibes-agent 1.1.7 → 1.2.0
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 +170 -0
- package/README.md +46 -30
- package/dist/package/{ast-grep-napi.linux-x64-gnu-mkk8xwww.node → ast-grep-napi.linux-x64-gnu-swtppvy9.node} +0 -0
- package/dist/package/{ast-grep-napi.linux-x64-musl-ryqtgdv6.node → ast-grep-napi.linux-x64-musl-ttfcdtap.node} +0 -0
- package/dist/package/main.js +132577 -91483
- package/docs/README.md +14 -7
- package/docs/channels-remote-and-api.md +8 -5
- package/docs/connected-host.md +14 -12
- package/docs/getting-started.md +56 -30
- package/docs/knowledge-artifacts-and-multimodal.md +7 -5
- package/docs/project-planning.md +2 -2
- package/docs/providers-and-routing.md +11 -3
- package/docs/tools-and-commands.md +114 -45
- package/docs/voice-and-live-tts.md +3 -1
- package/package.json +3 -2
- package/release/release-notes.md +130 -5
- package/release/release-readiness.json +120 -90
- package/src/agent/assistant-cockpit.ts +247 -0
- package/src/agent/autonomy-schedule-format.ts +96 -0
- package/src/agent/autonomy-schedule.ts +514 -0
- package/src/agent/channel-delivery-receipts.ts +292 -0
- package/src/agent/competitive-feature-inventory.ts +296 -0
- package/src/agent/document-registry-types.ts +106 -0
- package/src/agent/document-registry.ts +734 -0
- package/src/agent/harness-control.ts +2 -2
- package/src/agent/memory-prompt.ts +2 -2
- package/src/agent/operator-actions.ts +50 -6
- package/src/agent/persona-registry.ts +8 -0
- package/src/agent/project-context-files.ts +273 -0
- package/src/agent/prompt-context-receipts.ts +502 -0
- package/src/agent/reminder-schedule-format.ts +16 -2
- package/src/agent/research-run-registry.ts +582 -0
- package/src/agent/research-source-registry.ts +441 -0
- package/src/agent/routine-registry.ts +19 -3
- package/src/agent/routine-schedule-format.ts +27 -2
- package/src/agent/runtime-profile-starters.ts +7 -0
- package/src/agent/runtime-profile.ts +106 -4
- package/src/agent/schedule-edit-format.ts +129 -0
- package/src/agent/schedule-edit.ts +496 -0
- package/src/agent/schedule-next-routes.ts +42 -0
- package/src/agent/setup-wizard-checkpoint.ts +140 -0
- package/src/agent/setup-wizard.ts +447 -0
- package/src/agent/skill-registry-types.ts +102 -0
- package/src/agent/skill-registry.ts +81 -107
- package/src/agent/vibe-confirmation-routes.ts +62 -0
- package/src/agent/vibe-file.ts +285 -0
- package/src/cli/agent-knowledge-command.ts +45 -2
- package/src/cli/help.ts +3 -0
- package/src/cli/profiles-command.ts +25 -11
- package/src/config/agent-settings-policy.ts +1 -18
- package/src/input/agent-workspace-activation.ts +53 -0
- package/src/input/agent-workspace-artifact-browser-editor.ts +494 -0
- package/src/input/agent-workspace-artifact-metadata.ts +17 -0
- package/src/input/agent-workspace-basic-command-editors.ts +5 -1
- package/src/input/agent-workspace-categories.ts +153 -155
- package/src/input/agent-workspace-channel-triage.ts +481 -0
- package/src/input/agent-workspace-channels.ts +263 -0
- package/src/input/agent-workspace-command-editor.ts +152 -0
- package/src/input/agent-workspace-context-snapshot.ts +349 -0
- package/src/input/agent-workspace-delegation-editor-submission.ts +8 -0
- package/src/input/agent-workspace-document-editor.ts +502 -0
- package/src/input/agent-workspace-document-ops-editor.ts +523 -0
- package/src/input/agent-workspace-host-category.ts +1 -1
- package/src/input/agent-workspace-local-library-snapshot.ts +167 -0
- package/src/input/agent-workspace-model-compare-editor.ts +376 -0
- package/src/input/agent-workspace-model-compare-prompt-submission.ts +552 -0
- package/src/input/agent-workspace-model-compare-types.ts +82 -0
- package/src/input/agent-workspace-model-compare-utils.ts +35 -0
- package/src/input/agent-workspace-onboarding-categories.ts +141 -0
- package/src/input/agent-workspace-operations-command-editor-submission.ts +53 -0
- package/src/input/agent-workspace-operations-command-editors.ts +22 -0
- package/src/input/agent-workspace-research-report-editor.ts +212 -0
- package/src/input/agent-workspace-research-run-editor.ts +144 -0
- package/src/input/agent-workspace-research-source-editor.ts +167 -0
- package/src/input/agent-workspace-review-packet-snapshot.ts +593 -0
- package/src/input/agent-workspace-review-packet-utils.ts +265 -0
- package/src/input/agent-workspace-settings.ts +262 -30
- package/src/input/agent-workspace-setup-checkpoint-action.ts +127 -0
- package/src/input/agent-workspace-setup-snapshot.ts +198 -0
- package/src/input/agent-workspace-setup.ts +34 -1
- package/src/input/agent-workspace-snapshot.ts +162 -147
- package/src/input/agent-workspace-types.ts +287 -2
- package/src/input/agent-workspace.ts +18 -0
- package/src/input/command-registry.ts +9 -2
- package/src/input/commands/agent-runtime-profile-runtime.ts +28 -13
- package/src/input/commands/channels-runtime.ts +102 -114
- package/src/input/commands/delegation-runtime.ts +87 -24
- package/src/input/commands/knowledge-browser-flags.ts +12 -0
- package/src/input/commands/knowledge.ts +28 -14
- package/src/input/commands/operator-actions-runtime.ts +6 -3
- package/src/input/commands/schedule-runtime.ts +71 -14
- package/src/input/commands/session-content.ts +2 -2
- package/src/input/commands/shell-core.ts +2 -0
- package/src/input/commands/vibe-runtime.ts +140 -0
- package/src/input/commands.ts +2 -0
- package/src/input/connected-host-routes.ts +123 -0
- package/src/input/settings-modal-types.ts +14 -0
- package/src/main.ts +15 -15
- package/src/panels/qr-panel.ts +2 -2
- package/src/renderer/agent-workspace-context-lines.ts +686 -0
- package/src/renderer/agent-workspace.ts +30 -419
- package/src/renderer/settings-modal-helpers.ts +12 -0
- package/src/renderer/settings-modal.ts +12 -0
- package/src/runtime/bootstrap-command-context.ts +11 -1
- package/src/runtime/bootstrap-command-parts.ts +14 -3
- package/src/runtime/bootstrap-core.ts +39 -1
- package/src/runtime/bootstrap-shell.ts +6 -0
- package/src/runtime/bootstrap.ts +113 -30
- package/src/runtime/connected-host-auth.ts +3 -2
- package/src/runtime/execution-ledger.ts +231 -0
- package/src/runtime/services.ts +88 -10
- package/src/runtime/tool-permission-safety.ts +199 -5
- package/src/shell/session-continuity-hints.ts +39 -0
- package/src/tools/agent-artifacts-tool.ts +606 -0
- package/src/tools/agent-audit-tool.ts +155 -0
- package/src/tools/agent-autonomy-schedule-tool.ts +238 -0
- package/src/tools/agent-autonomy-tool.ts +140 -0
- package/src/tools/agent-channel-send-tool.ts +24 -2
- package/src/tools/agent-channels-tool.ts +140 -0
- package/src/tools/agent-computer-tool.ts +168 -0
- package/src/tools/agent-context-policy.ts +137 -7
- package/src/tools/agent-context-tool.ts +143 -0
- package/src/tools/agent-delegation-tool.ts +128 -0
- package/src/tools/agent-device-tool.ts +240 -0
- package/src/tools/agent-documents-tool.ts +684 -0
- package/src/tools/agent-execution-tool.ts +230 -0
- package/src/tools/agent-harness-agent-orchestration.ts +703 -0
- package/src/tools/agent-harness-autonomy-intake.ts +785 -0
- package/src/tools/agent-harness-autonomy-live-records.ts +588 -0
- package/src/tools/agent-harness-autonomy-queue-types.ts +88 -0
- package/src/tools/agent-harness-autonomy-queue.ts +560 -0
- package/src/tools/agent-harness-background-processes-types.ts +35 -0
- package/src/tools/agent-harness-background-processes.ts +794 -0
- package/src/tools/agent-harness-browser-cockpit-route.ts +219 -0
- package/src/tools/agent-harness-browser-control.ts +338 -0
- package/src/tools/agent-harness-channel-metadata.ts +168 -10
- package/src/tools/agent-harness-cli-command-policy.ts +110 -0
- package/src/tools/agent-harness-command-catalog.ts +4 -2
- package/src/tools/agent-harness-command-runner.ts +42 -0
- package/src/tools/agent-harness-connected-host-status.ts +7 -4
- package/src/tools/agent-harness-delegation-posture.ts +234 -19
- package/src/tools/agent-harness-document-ops-reviewer-readiness.ts +234 -0
- package/src/tools/agent-harness-document-ops-types.ts +72 -0
- package/src/tools/agent-harness-document-ops.ts +671 -0
- package/src/tools/agent-harness-execution-history.ts +489 -0
- package/src/tools/agent-harness-execution-posture.ts +382 -0
- package/src/tools/agent-harness-file-recovery.ts +135 -0
- package/src/tools/agent-harness-keybinding-metadata.ts +16 -12
- package/src/tools/agent-harness-learning-curator-common.ts +102 -0
- package/src/tools/agent-harness-learning-curator-consolidation.ts +295 -0
- package/src/tools/agent-harness-learning-curator-proposals.ts +606 -0
- package/src/tools/agent-harness-learning-curator-types.ts +151 -0
- package/src/tools/agent-harness-learning-curator.ts +417 -0
- package/src/tools/agent-harness-local-model-benchmarks.ts +199 -0
- package/src/tools/agent-harness-local-model-cookbook.ts +238 -0
- package/src/tools/agent-harness-local-model-endpoints.ts +673 -0
- package/src/tools/agent-harness-media-posture.ts +208 -2
- package/src/tools/agent-harness-memory-posture.ts +556 -0
- package/src/tools/agent-harness-metadata.ts +100 -168
- package/src/tools/agent-harness-mode-catalog.ts +84 -33
- package/src/tools/agent-harness-model-catalog.ts +162 -0
- package/src/tools/agent-harness-model-provider-health.ts +186 -0
- package/src/tools/agent-harness-model-readiness.ts +406 -0
- package/src/tools/agent-harness-model-routing-types.ts +266 -0
- package/src/tools/agent-harness-model-routing-utils.ts +30 -0
- package/src/tools/agent-harness-model-routing.ts +137 -190
- package/src/tools/agent-harness-operator-methods.ts +115 -133
- package/src/tools/agent-harness-pairing-posture.ts +431 -18
- package/src/tools/agent-harness-personal-ops-discovery.ts +533 -0
- package/src/tools/agent-harness-personal-ops-intake.ts +385 -0
- package/src/tools/agent-harness-personal-ops-lanes.ts +204 -0
- package/src/tools/agent-harness-personal-ops-records.ts +732 -0
- package/src/tools/agent-harness-personal-ops-runner.ts +637 -0
- package/src/tools/agent-harness-personal-ops-types.ts +222 -0
- package/src/tools/agent-harness-personal-ops.ts +606 -0
- package/src/tools/agent-harness-project-context.ts +144 -0
- package/src/tools/agent-harness-prompt-context.ts +589 -0
- package/src/tools/agent-harness-provider-account-metadata.ts +2 -2
- package/src/tools/agent-harness-release-evidence.ts +9 -7
- package/src/tools/agent-harness-release-readiness.ts +9 -7
- package/src/tools/agent-harness-research-briefing.ts +427 -0
- package/src/tools/agent-harness-research-queue.ts +250 -0
- package/src/tools/agent-harness-research-runs.ts +295 -0
- package/src/tools/agent-harness-research-workflow.ts +322 -0
- package/src/tools/agent-harness-security-posture.ts +2 -2
- package/src/tools/agent-harness-service-posture.ts +9 -9
- package/src/tools/agent-harness-session-metadata.ts +3 -3
- package/src/tools/agent-harness-setup-connected-host.ts +501 -0
- package/src/tools/agent-harness-setup-describe.ts +557 -0
- package/src/tools/agent-harness-setup-handoffs.ts +502 -0
- package/src/tools/agent-harness-setup-model-helpers.ts +101 -0
- package/src/tools/agent-harness-setup-plan.ts +253 -0
- package/src/tools/agent-harness-setup-posture-types.ts +218 -0
- package/src/tools/agent-harness-setup-posture-utils.ts +173 -0
- package/src/tools/agent-harness-setup-posture.ts +449 -221
- package/src/tools/agent-harness-setup-smoke.ts +508 -0
- package/src/tools/agent-harness-sudo-posture.ts +114 -0
- package/src/tools/agent-harness-tool-schema.ts +120 -7
- package/src/tools/agent-harness-tool-types.ts +78 -0
- package/src/tools/agent-harness-tool-utils.ts +43 -0
- package/src/tools/agent-harness-tool.ts +311 -370
- package/src/tools/agent-harness-ui-surface-metadata.ts +76 -69
- package/src/tools/agent-harness-ui-surface-types.ts +46 -0
- package/src/tools/agent-harness-vibe-health.ts +105 -0
- package/src/tools/agent-harness-workspace-action-runner.ts +149 -0
- package/src/tools/agent-harness-workspace-actions.ts +114 -8
- package/src/tools/agent-harness-workspace-editor-execution.ts +214 -0
- package/src/tools/agent-harness-workspace-editor-runner.ts +755 -0
- package/src/tools/agent-host-tool.ts +159 -0
- package/src/tools/agent-knowledge-ingest-tool.ts +34 -1
- package/src/tools/agent-learning-consolidation-core.ts +327 -0
- package/src/tools/agent-learning-consolidation-tool.ts +758 -0
- package/src/tools/agent-memory-tool.ts +214 -0
- package/src/tools/agent-model-compare-export.ts +315 -0
- package/src/tools/agent-model-compare-handoff.ts +592 -0
- package/src/tools/agent-model-compare-judgment.ts +633 -0
- package/src/tools/agent-model-compare-run.ts +722 -0
- package/src/tools/agent-model-compare-tool.ts +698 -0
- package/src/tools/agent-model-compare-types.ts +191 -0
- package/src/tools/agent-model-compare-utils.ts +93 -0
- package/src/tools/agent-models-tool.ts +208 -0
- package/src/tools/agent-operator-action-tool.ts +1 -1
- package/src/tools/agent-operator-method-tool.ts +643 -0
- package/src/tools/agent-personal-ops-tool.ts +197 -0
- package/src/tools/agent-policy-explanation.ts +415 -0
- package/src/tools/agent-research-report-tool.ts +608 -0
- package/src/tools/agent-research-runs-tool.ts +434 -0
- package/src/tools/agent-research-sources-tool.ts +443 -0
- package/src/tools/agent-research-tool.ts +687 -0
- package/src/tools/agent-review-packet-presets-core.ts +757 -0
- package/src/tools/agent-review-packet-presets-tool.ts +466 -0
- package/src/tools/agent-review-packet-share-tool.ts +305 -0
- package/src/tools/agent-route-planner-candidates-setup.ts +411 -0
- package/src/tools/agent-route-planner-candidates-surfaces.ts +432 -0
- package/src/tools/agent-route-planner-candidates-work.ts +251 -0
- package/src/tools/agent-route-planner-helpers.ts +667 -0
- package/src/tools/agent-route-planner.ts +185 -0
- package/src/tools/agent-route-tool.ts +105 -0
- package/src/tools/agent-schedule-edit-tool.ts +210 -0
- package/src/tools/agent-schedule-tool.ts +282 -0
- package/src/tools/agent-security-tool.ts +145 -0
- package/src/tools/agent-sessions-tool.ts +122 -0
- package/src/tools/agent-settings-import-tool.ts +104 -0
- package/src/tools/agent-settings-tool.ts +176 -0
- package/src/tools/agent-setup-tool.ts +226 -0
- package/src/tools/agent-support-tool.ts +122 -0
- package/src/tools/agent-terminal-process-tools.ts +167 -0
- package/src/tools/agent-tool-policy-guard-types.ts +77 -0
- package/src/tools/agent-tool-policy-guard.ts +106 -85
- package/src/tools/agent-vibe-tool.ts +297 -0
- package/src/tools/agent-work-plan-tool.ts +265 -6
- package/src/tools/agent-workspace-tool.ts +305 -0
- package/src/tools/artifact-archive.ts +169 -0
- package/src/tools/tool-definition-compaction.ts +36 -0
- package/src/version.ts +1 -1
package/docs/README.md
CHANGED
|
@@ -20,21 +20,28 @@ These are the package-facing docs for the GoodVibes Agent `1.0.x` release line.
|
|
|
20
20
|
- Package executable: `goodvibes-agent`.
|
|
21
21
|
- Install/runtime: Bun `1.3.10` or newer.
|
|
22
22
|
- Agent version source: exact `package.json` semver, kept in sync with `CHANGELOG.md` and `src/version.ts` during release.
|
|
23
|
-
- Connected-host compatibility: public Agent routes report readiness through the `compat` and `status` CLI commands plus `
|
|
23
|
+
- Connected-host compatibility: public Agent routes report readiness through the `compat` and `status` CLI commands plus `host action:"status"`.
|
|
24
24
|
- Connected host: owned outside Agent; Agent reports and uses it but does not manage lifecycle.
|
|
25
25
|
- Agent Knowledge: only `/api/goodvibes-agent/knowledge/*`; no default knowledge fallback.
|
|
26
|
-
- Local state: memory, notes, personas, skills, routines, sessions, setup, and profiles live under the Agent home.
|
|
27
|
-
-
|
|
26
|
+
- Local state: VIBE.md personality, project context files, memory, notes, personas, skills, routines, sessions, setup, and profiles live under the Agent home or current project.
|
|
27
|
+
- Computer work: local read/edit/exec routes are allowed when the current Agent workspace and permissions are sufficient; process monitor/live tail/tool inspector supervision and local file edit/write recovery are inspectable and confirmation-gated; delegation is for isolation, parallelism, remote execution, separate worktrees, or user-requested delegated review.
|
|
28
28
|
|
|
29
29
|
## Model Access Baseline
|
|
30
30
|
|
|
31
31
|
Agent-owned model tools expose Agent-controlled product surfaces plus operator/audit inspection routes:
|
|
32
32
|
|
|
33
|
-
- `
|
|
33
|
+
- `setup` for the first-run path: status, item lookup, checkpoint inspect/save/clear, connected-host token repair, setup smoke, finish onboarding, and GoodVibes settings import through existing setup gates.
|
|
34
|
+
- `models` for direct provider/model route readiness, exact route/provider inspection, provider and subscription posture, local model cookbook guidance, and confirmed local server smoke checks while lower-level provider/model harness modes remain compatibility/detail routes.
|
|
35
|
+
- `settings` for first-class Agent settings list/get/set/reset and GoodVibes settings import preview/apply through existing redacted confirmation gates.
|
|
36
|
+
- `agent_harness` for the same assistant-first cockpit shown in TUI Home, searchable mode discovery, workspace actions, GoodVibes settings import workspace parity, detailed setup posture, ordered channel setup guide, channel triage, redacted channel delivery receipts, slash commands, settings compatibility modes, panels, UI surfaces including the confirmed connected browser cockpit/PWA route with category coverage, mobile/PWA controls, and receipt-gap reporting, keybindings, tool schemas, model detail compatibility routes, local-vs-delegated execution posture, process monitor/live tail/tool inspector supervision routes, file edit recovery, ongoing-work intake, visible autonomy queue with live research run, connected-host task, approval, automation run, and schedule records/log tails, service/daemon posture, connected-host capability/status, posture catalogs, and operator/audit release artifact inspection.
|
|
37
|
+
- `computer` for direct browser/PWA, browser/screenshot/desktop-control route planning, setup, MCP, and confirmed visible browser cockpit handoffs; `device` remains the companion/mobile/voice/TTS/provider route while lower-level pairing/media/UI harness modes remain compatibility/detail routes.
|
|
34
38
|
- `agent_knowledge` and `agent_knowledge_ingest` for isolated Agent Knowledge.
|
|
35
|
-
- `
|
|
36
|
-
- `
|
|
39
|
+
- `vibe` for direct VIBE.md personality status/show, confirmed project or global VIBE.md initialization, and confirmed VIBE.md-to-persona import.
|
|
40
|
+
- `personal_ops` for direct daily briefing, readiness status, request intake, lane inspection, and one confirmed read-only inbox/calendar connector operation with structured next routes while lower-level harness modes remain available for detailed inspection.
|
|
41
|
+
- `agent_local_registry` and `agent_learning_consolidation` for Agent-local memory, notes, personas, skills, bundles, routines, confirmed duplicate-consolidation phases with receipts, and `agent_harness` learning-curator modes for ranked review/setup/stale, duplicate-consolidation, reviewed-note, completed-work, completed-research, and saved-session memory/behavior proposals.
|
|
42
|
+
- `agent_work_plan` for visible local work-plan state and confirmed dispatch of approved plan items to visible agents, with linked receipts surfaced in orchestration closeout.
|
|
37
43
|
- `agent_operator_briefing` and `agent_operator_action` for public connected operator state and exact confirmed actions.
|
|
38
|
-
- `
|
|
44
|
+
- `agent_documents`, `agent_review_packet_presets`, `agent_review_packet_share`, `agent_artifacts`, and `research` for versioned Agent document drafts, review comments, AI suggestion review, saved artifact attachment/insertion, reviewer-ready markdown artifact export with comment and suggestion summaries, reusable review packet preset save/list/show/refresh routes with freshness checks, confirmed reviewer packet archive-reference sharing, saved artifact browsing/export/package/archive, project-local visible research run state with log tails, `research action:"briefing"` next-action queues, `research action:"plan"` route planning with browser-runner and visual-report packet contracts, `research action:"search"` bounded public source-candidate packets with confirmed capture routes, `research action:"runner"` browser-runner readiness, research source review, reviewed-source bundles, `research action:"reports|report_artifact"` saved report inspection, sourced research report artifacts with citation coverage repair hints and optional visual report packets, and reviewed artifact-to-Knowledge promotion; lower-level `agent_research_runs`, `agent_research_sources`, and `agent_research_report` remain compatibility/detail routes.
|
|
45
|
+
- `agent_channel_send`, `agent_notify`, `schedule`, `setup`, `vibe`, `personal_ops action:"read"`, `import_goodvibes_settings`, lower-level schedule compatibility tools, `agent_media_generate`, and `agent_model_compare` for explicit confirmed effects, including channel send receipt ids, connected autonomous schedules, reminders, schedule edits and lifecycle controls, setup checkpoint/token/smoke/finish actions, VIBE.md init/persona import, one bounded live Personal Ops inbox/calendar read, redacted settings import preview/apply, and blind comparison from saved text artifacts with side-by-side reviewer views, split-pane reviewer handoff diffs with section jumps and recent-handoff choices, chronological review packet timeline state including packet presets and preset freshness attention, review packet wizard progress/routes/refreshed-preset lineage/share handoff, route-decision receipt artifacts for apply/leave-unchanged evidence, packet-default form prefill for export/handoff/archive/apply/save-preset/share workflows, inline reviewer-readiness badges before export/archive/apply, task/document/benchmark-filtered saved judgment analytics/synthesis, reviewer handoff artifacts, and one-click handoff ZIP archives with matching route-decision receipt evidence.
|
|
39
46
|
|
|
40
47
|
Catalog modes are compact by default. `agent_harness mode:"modes"` searches all harness modes; `mode:"mode"` inspects one mode contract. Plural catalog rows keep summaries short and expose effect class, `modelRoute`, or `modelAccess` hints where the model needs an immediate route decision. Detailed schemas, route hints, redacted log tail, release artifact data, and editor fields require `includeParameters:true` or a singular inspect mode. The slash-command and CLI catalogs mirror every registered built-in command with policy and preferred model route metadata available to the model. Keybinding and fixed-shortcut rows identify direct model routes versus direct-user-only controls. Registered tool definitions use short top-level descriptions, omit nested parameter descriptions from the default model catalog, and carry direct harness inspection routes. Mutations, external delivery, UI routing, keybinding changes, setting writes, local destructive actions, media generation, reminders, and connected-host operator actions remain confirmation-gated and refuse ambiguous lookup.
|
|
@@ -4,7 +4,7 @@ GoodVibes Agent can be reached from terminal-first and companion surfaces, but t
|
|
|
4
4
|
|
|
5
5
|
## Channel Posture
|
|
6
6
|
|
|
7
|
-
Channel setup is explicit. Agent can inspect channel readiness, guide pairing, and send one confirmed delivery message through configured strategies, including connected-host telephony targets, but it must not silently expose a new public surface or send messages to people without a user action.
|
|
7
|
+
Channel setup is explicit. Agent can inspect channel readiness, guide pairing, inspect recent redacted delivery receipts, and send one confirmed delivery message through configured strategies, including connected-host telephony targets, but it must not silently expose a new public surface or send messages to people without a user action.
|
|
8
8
|
|
|
9
9
|
Agent channel UX should show:
|
|
10
10
|
|
|
@@ -12,16 +12,19 @@ Agent channel UX should show:
|
|
|
12
12
|
- whether account/token setup is present without printing secret values;
|
|
13
13
|
- the default target, if configured;
|
|
14
14
|
- delivery risk and public exposure warnings;
|
|
15
|
+
- the ordered setup guide step for the next channel, including setup schema, secret-backed settings, allowlist policy, live status or doctor checks, and explicit test-send boundary;
|
|
16
|
+
- channel triage across setup blockers, daemon delivery attempts, visible control-plane surface messages, route bindings, and Agent receipts;
|
|
17
|
+
- recent confirmed-send receipts with webhook/link target values redacted and message previews bounded;
|
|
15
18
|
- the command or workspace action needed to pair companion clients through QR-first setup;
|
|
16
19
|
- the confirmed `Send channel message` action when the user explicitly wants a one-off delivery.
|
|
17
20
|
|
|
18
|
-
Agent-local memory, routines, skills, and personas are not automatically broadcast to channels. External delivery is an effect and requires an exact command, an explicit routine promotion, or a user-approved connected-host request. Companion pairing uses `/pair` without printing the raw token; manual token display requires `/pair --show-token --yes`. One-off delivery uses Agent Workspace -> Channels -> Send channel message or `/channels send ... --yes`.
|
|
21
|
+
VIBE.md, project context files, Agent-local memory, routines, skills, and personas are not automatically broadcast to channels. External delivery is an effect and requires an exact command, an explicit routine promotion, or a user-approved connected-host request. Companion pairing uses `/pair` without printing the raw token; manual token display requires `/pair --show-token --yes`. One-off delivery uses Agent Workspace -> Channels -> Send channel message or `/channels send ... --yes`; channel triage is visible through Agent Workspace -> Channels -> Channel triage or `/channels triage`, and recent receipts are visible through Delivery receipts or `/channels deliveries`.
|
|
19
22
|
|
|
20
|
-
The model can inspect pairing posture with `
|
|
23
|
+
The model can inspect pairing and device posture with `device action:"status"`, and inspect one pairing route with `device action:"capability"` using `capabilityId`, `pairingRouteId`, `target`, or `query`. Lower-level `agent_harness` modes `pairing_posture` and `pairing_route` remain available for detailed compatibility. Those routes return endpoint binding, pairing surface id, route catalog, token fingerprint, and companion device capability posture only; raw tokens and QR payloads are never returned by the read-only posture modes. QR display, manual token display, companion connection, channel delivery, task, approval, provider/model, and attachment actions stay visible user flows.
|
|
21
24
|
|
|
22
|
-
The model can inspect channel-facing workspace actions with `
|
|
25
|
+
The model can inspect channel-facing workspace actions with `workspace action:"actions|action"`, but the preferred channel route is `channels action:"status|channel|setup|triage|deliveries"`. It lists the structured channel readiness map, inspects one channel, inspects channel triage, inspects recent redacted delivery receipts, and shows the ordered channel setup guide using `channelId`, `target`, or `query`. Channel discovery is compact by default, and workspace action rows include `modelRoute` hints for send/setup actions. Use `includeParameters:true`, single-channel inspection, triage, the receipt ledger, or the setup guide when the model needs delivery target shape, read-only connected-route hints, current setup step, allowlist review route, live-check route, recent confirmed-send outcome ids, route-binding continuity, surface messages, or delivery retry candidates. These actions are read-only: they return setup state, delivery posture, risk labels, safe config-key names, default-target key names, route ids, redacted/digested external ids, and redacted receipt summaries without printing secret values or sending messages. `channels action:"triage"` reads `/api/deliveries`, `/api/control-plane/messages`, and `/api/routes/bindings` when the connected host is authenticated; it does not claim provider-specific unread Slack, Discord, or email inbox polling because the current channel contract does not publish a general inbox feed. The model can send one explicit configured delivery through `agent_channel_send` only when the user asks for that exact effect. Lower-level `agent_harness` channel modes remain compatibility/detail routes. `agent_review_packet_share` is the specialized confirmed route for sending a reviewer packet archive reference through a configured channel target without attaching ZIP bytes. It must not create routes, authorize accounts, infer recipients, or expose new public surfaces from chat.
|
|
23
26
|
|
|
24
|
-
The model can inspect configured notification target posture with `agent_harness` mode `notifications`, and inspect one redacted target with mode `notification_target` using `notificationTargetId`, `target`, or `query`. Notification discovery is compact by default, while `
|
|
27
|
+
The model can inspect configured notification target posture with `agent_harness` mode `notifications`, and inspect one redacted target with mode `notification_target` using `notificationTargetId`, `target`, or `query`. Notification discovery is compact by default, while `workspace action:"actions"` distinguishes direct `agent_notify` sends/tests from confirmed workspace routes for add/remove/clear management. Use `includeParameters:true` or single-target inspection when management route hints are needed. These modes return target count, validity, protocol/host posture, and fingerprints, but not full webhook URLs. Use `agent_notify` for one explicit confirmed notification. Use confirmed `/notify` mirrors for target management only when the user supplies the exact add/remove/clear/test intent.
|
|
25
28
|
|
|
26
29
|
## Companion And Session Routes
|
|
27
30
|
|
package/docs/connected-host.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Connected Host
|
|
2
2
|
|
|
3
|
-
GoodVibes Agent is
|
|
3
|
+
GoodVibes Agent is the autonomous TUI harness for a connected GoodVibes daemon. The package exposes one executable:
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
goodvibes-agent
|
|
@@ -13,9 +13,9 @@ The installed command is backed by TypeScript-authored source with a Bun shebang
|
|
|
13
13
|
- `goodvibes-agent status --json`
|
|
14
14
|
- `goodvibes-agent` launches the TUI in a real PTY
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Daemon Prerequisite
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Connect to a GoodVibes daemon before using daemon-backed features. Agent expects that daemon to expose public operator routes and the isolated Agent Knowledge routes:
|
|
19
19
|
|
|
20
20
|
```text
|
|
21
21
|
http://127.0.0.1:3421
|
|
@@ -51,7 +51,7 @@ For a persistent shell/session override, set:
|
|
|
51
51
|
export GOODVIBES_AGENT_RUNTIME_URL=http://127.0.0.1:3421
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
`GOODVIBES_AGENT_BASE_URL` is accepted as a legacy alias. These values
|
|
54
|
+
`GOODVIBES_AGENT_BASE_URL` is accepted as a legacy alias. These values select the connected GoodVibes API root.
|
|
55
55
|
|
|
56
56
|
If the connected host is unavailable, unauthenticated, or incompatible with Agent, the Agent TUI reports actionable diagnostics without printing token values.
|
|
57
57
|
|
|
@@ -65,20 +65,22 @@ Use the TUI first for those checks:
|
|
|
65
65
|
|
|
66
66
|
## Product Boundary
|
|
67
67
|
|
|
68
|
-
Agent owns the
|
|
68
|
+
Agent owns the user-facing autonomous harness: terminal renderer, setup, chat, profiles, VIBE.md personality, project context files, local memory/notes/routines/skills/personas, isolated Agent Knowledge calls, companion chat, visible agents, approvals, schedules, automation posture, daemon method access, channel delivery, reminders, and media workflows.
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
The GoodVibes daemon owns the platform capabilities. Agent should expose those capabilities through the easiest safe user path: simple first-class tools for common tasks, dynamic operator method discovery for exact contract parity, and confirmation gates for write/admin routes.
|
|
71
71
|
|
|
72
|
-
The model can inspect this boundary with `
|
|
72
|
+
The model can inspect this boundary with `host action:"capabilities"`. By default the report is compact: configured base URL, token posture, ownership, mode hints, capability counts, and a short `modelRoute` for the next safe Agent-owned route. Use `includeParameters:true` for full route families, allowed capabilities, blocked capabilities, and first-class Agent tool availability; those expanded rows also carry compact `modelRoute` hints. Allowed capabilities include read-only operator briefing, explicit allowlisted approval/automation/schedule actions, isolated Agent Knowledge read/ingest, confirmed channel or notification delivery, confirmed reminder schedules, and configured media generation. Blocked capabilities include connected-host lifecycle, listener mutation, default or non-Agent knowledge fallback, hidden background Agent jobs, implicit delegated review, route/account creation, and arbitrary connected-host mutations. To inspect one surface without parsing the full report, use `host action:"capability"` with `capabilityId`, `target`, or `query`; capability results return the allowed or blocked route hint. Lower-level `agent_harness` modes `connected_host`, `connected_host_capability`, and `daemon` remain compatibility routes.
|
|
73
73
|
|
|
74
|
-
The model can inspect the public operator method catalog with `
|
|
74
|
+
The model can inspect the public operator method catalog with `host action:"methods"`. That report is generated from the GoodVibes SDK contract, not a stale hand-maintained shortlist. To inspect one method without parsing the full report, use `host action:"method"` with `methodId`, `target`, or `query`. Execute exact daemon methods with `agent_operator_method`: read-only routes can run directly; write/admin routes require `confirm:true` and `explicitUserRequest`. Lower-level `operator_methods` and `operator_method` remain compatibility routes.
|
|
75
75
|
|
|
76
|
-
The model can inspect service posture with `
|
|
76
|
+
The model can inspect service posture with `host action:"services"`. That report exposes endpoint binding, network-facing posture, issues, and redacted-log diagnostics used by status, doctor, and support bundles. Use `includeParameters:true` when reachability probes and redacted log tail are needed. To inspect one endpoint, use `host action:"service"` with `endpointId`, `target`, or `query`; valid endpoint ids are `controlPlane`, `httpListener`, and `web`. The connected browser cockpit/PWA is the visible UI surface `connected-browser-cockpit`; `computer action:"browser"` inspects readiness and `computer action:"open_browser" confirm:true explicitUserRequest:"..."` opens the configured URL through the existing confirmed surface route. `ui_surface surfaceId:"connected-browser-cockpit"` remains available for detailed compatibility inspection and reports Agent workspace category coverage, mobile/PWA control routes, the Agent onboarding marker, and the unpublished browser/PWA first-run receipt contract. Service lifecycle and listener changes must use setup or confirmed daemon operator methods.
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
For setup or host repair asks, start with `setup action:"repair"`. It is read-only and chooses the next safe route for the current setup blocker or a named target: connected-host status, a `services.status` receipt, confirmed token repair, user-run bootstrap commands, or no lifecycle action when the host is already reachable. It does not start, install, restart, write tokens, import settings, or open UI by itself.
|
|
79
79
|
|
|
80
|
-
The model can inspect
|
|
80
|
+
The model can inspect live connected-host readiness with `host action:"status"`. That report uses the same status probe as the CLI: it checks the connected-host status route, verifies host compatibility, checks isolated Agent Knowledge when token and compatibility posture allow it, reports endpoint bindings and token posture without printing token values, returns actionable findings, and includes a compact `modelRoute` for follow-up diagnostics. `includeParameters:true` adds route family and capability detail. Lower-level `connected_host_status` and `daemon_status` remain compatibility routes.
|
|
81
|
+
|
|
82
|
+
The model can inspect companion pairing posture through `device action:"status"` and inspect one pairing/mobile route with `device action:"capability" capabilityId:"..."`. Lower-level `agent_harness` modes `pairing_posture` and `pairing_route` remain available for detailed compatibility. Those routes report the control-plane endpoint binding, pairing surface id, token presence/fingerprint, route catalog, and a companion device capability map for pairing, mobile command routing, browser/PWA, voice/TTS, notifications, browser/desktop control, and unpublished camera/location posture without returning raw tokens or QR payloads. Pairing display, manual token display, companion connection, channel delivery, task, approval, provider/model, and attachment actions remain visible user flows.
|
|
81
83
|
|
|
82
84
|
Agent Knowledge is its own product segment. Agent uses `/api/goodvibes-agent/knowledge/*` only and must not fall back to default knowledge or other product-specific knowledge routes. Agent normalizes public Agent-route scope aliases and rejects successful-looking responses that carry known non-Agent payload markers.
|
|
83
85
|
|
|
84
|
-
Normal assistant chat
|
|
86
|
+
Normal assistant chat can use local tools, visible Agent jobs, daemon automation, shared sessions, delegation, or remote runners. GoodVibes TUI remains the vibecoding harness; Agent should choose it when that UX is best for the user rather than exposing package ownership as friction.
|
package/docs/getting-started.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
# Getting Started
|
|
2
2
|
|
|
3
|
-
GoodVibes Agent is the installable
|
|
3
|
+
GoodVibes Agent is the installable autonomous operator assistant for GoodVibes.
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
7
7
|
- Bun `1.3.10` or newer.
|
|
8
|
-
- A connected GoodVibes
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
Agent does not launch or manage the connected host.
|
|
8
|
+
- A connected GoodVibes daemon or compatible host with operator routes.
|
|
9
|
+
- Token/config state accepted by that daemon.
|
|
12
10
|
|
|
13
11
|
## Install From Package
|
|
14
12
|
|
|
@@ -42,13 +40,17 @@ Use the interactive workspace first. CLI subcommands are secondary support paths
|
|
|
42
40
|
|
|
43
41
|
Primary first-run areas:
|
|
44
42
|
|
|
45
|
-
- Setup: provider/model, connected-host compatibility
|
|
46
|
-
- Home:
|
|
43
|
+
- Setup: guided first-run wizard with progress, current-step route hints, saved setup checkpoints, checkpoint auto-advance evidence when a saved step is already ready, backtracking routes, setup-smoke rerun/save routes, repeated-blocker focus from saved smoke history, and closeout state from critical blocker, saved smoke, and user completion-marker evidence; visible checklist for runtime, connected-host auth, provider/model, install smoke, and follow-on capabilities; prioritized first-run plan; primary handoffs from every actionable setup row to the safest visible form, diagnostic, or confirmed route; GoodVibes settings import preview/apply; read-only setup repair decisions; token-safe install smoke checks; confirmed setup smoke execution with saved redacted evidence artifacts and Home/setup latest-result plus history/trend surfacing; confirmed onboarding finish marker write; model readiness scores; Model Routing readiness and benchmark-evidence actions; hardware-scored local model cookbook with setup/download guidance; confirmed benchmark action/history; connected-host compatibility; live service probe evidence; token-safe connected-host auth posture with exact pairing route ids; confirmed local token create/repair; offline GoodVibes host bootstrap commands; diagnostic/status repair recommendations; inspect-first confirmed service install/start/restart routes with success criteria and certified service receipt outcomes; Agent Knowledge readiness; profiles; support bundles; subscriptions; and auth review.
|
|
44
|
+
- Home: assistant cockpit lanes for setup, chat/model choice, browser cockpit/PWA handoff, project work, Personal Ops, research/docs, background supervision, and safety/recovery, plus briefing, model refresh, health, doctor, and compatibility actions.
|
|
47
45
|
- Knowledge: isolated Agent Knowledge status, ask/search, inspection, and confirmed ingest.
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
46
|
+
- Research: read-only web research and URL inspection, a visible Research briefing next-action queue, workflow planning with bounded public source-candidate search, browser-runner and visual-report readiness, project-local visible research runs with log tails, browser-backed runner readiness/fallback posture, source queue, credibility review, reviewed-source bundles, plus confirmed sourced report artifacts with source maps, citation coverage checks, repair hints, and optional visual report packets.
|
|
47
|
+
- Documents & Compare: versioned markdown document drafts, review comments, AI suggestion review, draft browse/show/create/revise/review/suggest/accept/reject/artifact-attach/artifact-insert/export with reviewer-ready comment and suggestion summaries, chronological review packet timeline across document/comment/suggestion/compare/judgment/route-decision/packet-preset/handoff/archive events with stale preset attention, a read-only review packet wizard with progress/current-step routes/backtracking/final archive review/refreshed-preset lineage/share handoff, visible reviewer-readiness preflight before export/archive/apply, inline readiness badges at document export, reviewer handoff/archive, and route-apply forms, packet defaults that prefill the next export/handoff/archive/apply/leave-unchanged/save-preset/share ids from the latest review packet while falling back to saved preset metadata only when live evidence is missing, uploads, exports, source checks, generated media artifacts, saved artifact browse/show/export/package/archive, reviewed artifact-to-Knowledge promotion, saved packet preset save/list/show/refresh routes with missing/superseded id freshness checks and confirmed refresh into a new preset artifact, confirmed reviewer packet share through `agent_review_packet_share` with channel target preview and no ZIP-byte transcript output, saved text artifact reuse in blind comparison, and confirmed blind model comparison with delayed reveal, durable JSON comparison artifacts, saved review boards, side-by-side reviewer views, split-pane reviewer handoff diffs with section jumps plus recent-handoff defaults and visible recent choices, saved judgment artifacts, confirmed apply and leave-unchanged route-decision receipts, task/document/benchmark-filtered preference analytics/synthesis, markdown report export, reviewer handoff artifacts, one-click reviewer handoff ZIP archives with matching route-decision receipt evidence, and confirmed winner route updates.
|
|
48
|
+
- Personal Ops: a read-only daily briefing plan across inbox, agenda, tasks, reminders, routines, delivery, notes, and the autonomy queue; a read-only review queue for saved inbox thread/calendar event items, refreshable provider-read routes, and follow-up boundaries; inbox/calendar connector readiness; request intake that turns "triage my inbox", "brief my calendar", task, reminder, note, routine, and delivery asks into the safest lane/route/fields/confirmation boundary, email/calendar-capable MCP setup routes, expanded connector tool classification for read-only versus write-like inbox/calendar actions, schema-derived operation records with required fields, sample inputs, schema routes, confirmation flags, and fresh-read routes, inbox triage/draft and calendar agenda/conflict workflow cards with inspect routes, ordered execution plans for connector reads/local drafting/confirmed effects, confirmed read-only MCP execution for selected inbox/calendar reads with bounded redacted output, normalized review cards, optional saved redacted review-card artifacts, structured next-route packets for refresh/lane/queue/artifact/local-draft/confirmed-effect boundaries, and saved review artifacts resurfaced as redacted inbox thread/calendar event queue records with artifact inspect routes, freshness status, confirmed refresh routes when a matching read connector is ready, local draft/reminder follow-up routes, and confirmed provider-effect boundaries, plus live records for Agent-owned notes, routines, schedule receipts, delivery channels, and redacted delivery receipts.
|
|
49
|
+
- Memory & Skills: VIBE.md personality, project context files, local memory, notes, personas, skills, routines, learned behavior capture, prompt injection limited to safe VIBE.md, safe project context, and reviewed/confident setup-ready behavior, visible Local Context and Personas workspace health counts for VIBE.md/project context files, setup/curator visibility for blocked or truncated VIBE.md files, model-visible context inspection for blocked or truncated project context files, a Prompt context action that shows the currently applied prompt order, recent durable receipt ids, selected/suppressed context records, and approximate token budget, a Prompt plan action that explains prompt-active records, suppressed review/setup work, proposal queues, consolidation queues, and scored review routes before context expands, and a learning curator for review/setup/stale/duplicate-consolidation/reviewed-note/completed-work/completed-research/saved-session memory and behavior candidates, including guided duplicate-consolidation phase helpers with receipts.
|
|
50
|
+
- Channels: companion pairing, an ordered channel setup guide, channel readiness, channel triage, notification targets, allowlist/status review, redacted confirmed-send receipts, and confirmed sends.
|
|
51
|
+
- Voice & Media: TTS setup, image input, confirmed generated media, voice workflow posture, device capability readiness, and browser/PWA readiness.
|
|
51
52
|
- Work & Automation: work-plan tracking, approvals, schedules, reminders, and explicit operator actions.
|
|
53
|
+
- Operator Runtime: daemon status, method discovery, confirmed write/admin routes, visible autonomous agents, and cancellation/status follow-up.
|
|
52
54
|
|
|
53
55
|
Press `/` inside the Agent workspace to search actions by name, category, command, or detail.
|
|
54
56
|
|
|
@@ -67,20 +69,31 @@ Common model routes:
|
|
|
67
69
|
|
|
68
70
|
| Need | Tool Or Mode |
|
|
69
71
|
| --- | --- |
|
|
72
|
+
| Choose the best route for a user task | `route action:"plan" query:"..."`; host diagnostics route through `host action:"status"`; settings route through `settings action:"list"`; model provider/local-cookbook/smoke/route-fit requests route through `models action:"provider|local|smoke|route"`; Personal Ops briefing/queue/fresh-read/connector requests route through `personal_ops action:"briefing|queue|intake|lane"`; reminders/schedules route through `schedule action:"list"`; local background commands route through `execution action:"processes"`; interactive PTY/stdin/sudo questions route through `execution action:"process_capabilities"`; external memory-provider/backend/sync requests route through `memory action:"provider"` or the provider checklist, which now shows provider-specific next routes and missing receipt fields before provider effects; browser-backed research runner requests route through `research action:"runner"`; visual research report rendering routes through `research action:"plan"` plus report artifacts; voice workflow and TTS-provider requests route through `device action:"voice|provider"`; browser cockpit/PWA requests route through `computer action:"browser"` before confirmed open handoff; channel setup/triage/delivery-receipt/send requests route through `channels action:"setup|triage|deliveries|channel"`; permission posture/finding/blocked-action questions route through `security action:"status|finding|explain"`; support-bundle requests route through `support action:"status|bundle"`; saved-session/bookmark/continuity requests route through `sessions action:"list|get"`; release readiness/evidence requests route through `audit action:"readiness|evidence|item|artifact"`; file undo/redo routes through `execution action:"recovery"`; media generation routes through provider readiness plus `agent_media_generate`; screenshot/browser/desktop-control tasks route through `computer action:"plan"`; lower-level `agent_harness mode:"route_decision"` remains available for compatibility/detail |
|
|
70
73
|
| Harness mode discovery | `agent_harness mode:"modes"`, `mode:"mode"` |
|
|
71
|
-
| Workspace actions | `
|
|
72
|
-
| Slash commands | `
|
|
73
|
-
| Settings | `agent_harness mode:"settings"`, `mode:"get_setting"`, `mode:"set_setting"`, `mode:"reset_setting"` |
|
|
74
|
-
|
|
|
75
|
-
|
|
|
74
|
+
| Workspace actions | `workspace action:"status|actions|action|run"`; lower-level workspace harness modes remain available for compatibility/detail |
|
|
75
|
+
| Slash commands | `workspace action:"commands|command|run_command"`; lower-level command harness modes remain available for compatibility/detail |
|
|
76
|
+
| Settings | `settings action:"list|get|set|reset|import"`; lower-level `agent_harness mode:"settings"`, `mode:"get_setting"`, `mode:"set_setting"`, `mode:"reset_setting"` remain available for compatibility/detail |
|
|
77
|
+
| GoodVibes settings import | `settings action:"import"` previews by default; apply with `confirm:true explicitUserRequest:"..."`; `import_goodvibes_settings action:"preview|apply"` remains available |
|
|
78
|
+
| Visible UI and devices | `workspace action:"surfaces|surface|open|panels|panel|open_panel"` for visible navigation; `computer action:"status|plan|control|browser|setup|mcp|open_browser"` for browser/PWA, browser/screenshot/desktop-control planning, and computer-use UX; `device action:"status|capability|voice|provider|open_tts_provider|open_tts_voice"` for device/voice UX |
|
|
79
|
+
| Keybindings | `workspace action:"shortcuts|keybindings|keybinding|run_keybinding|set_keybinding|reset_keybinding"` |
|
|
76
80
|
| Tool contracts | `agent_harness mode:"tools"`, `mode:"tool"` |
|
|
77
81
|
| Agent Knowledge | `agent_knowledge`, `agent_knowledge_ingest` |
|
|
78
|
-
|
|
|
79
|
-
|
|
|
80
|
-
|
|
|
81
|
-
|
|
|
82
|
-
|
|
|
83
|
-
|
|
|
82
|
+
| Research runs, sources, and reports | `research action:"briefing|plan|search|runner|runs|run|sources|source|bundle|reports|report_artifact|create_run|start_run|checkpoint|pause|resume|cancel|complete|fail|delete_run|add_source|review_source|reject_source|use_source|delete_source|report"`; lower-level `agent_research_runs`, `agent_research_sources`, `agent_research_report`, and harness research modes remain available for detailed inspection |
|
|
83
|
+
| Personal operations | `personal_ops action:"briefing|status|queue|intake|lane|read"`; lower-level `agent_harness mode:"personal_ops_briefing"`, `mode:"personal_ops_queue"`, `mode:"personal_ops_intake"`, `mode:"personal_ops"`, `mode:"personal_ops_lane"`, and `mode:"run_personal_ops_read"` remain available for detailed inspection |
|
|
84
|
+
| Visible autonomy | `autonomy action:"intake|queue|item|status"`; lower-level `agent_harness mode:"autonomy_intake"`, `mode:"autonomy_queue"`, and `mode:"autonomy_queue_item"` remain available for detailed inspection |
|
|
85
|
+
| Model and local model choice | `models action:"status|route|local|providers|provider|smoke"`; lower-level `agent_harness mode:"model_routing"`, `mode:"model_route"`, `mode:"provider_accounts"`, `mode:"provider_account"`, and `mode:"run_local_model_smoke"` remain available for detailed inspection |
|
|
86
|
+
| Local background processes | `execution action:"processes|process"` for inspection, `execution action:"process_capabilities"` for PTY/stdin/sudo posture, `terminal command:"..." background:true` to start, and `process action:"list|poll|log|wait|kill"` for lifecycle controls |
|
|
87
|
+
| Documents, artifacts, compare | `agent_harness mode:"document_ops"`, `mode:"document_ops_lane"`, `agent_documents`, `agent_review_packet_presets`, `agent_review_packet_share`, `agent_artifacts`, `agent_model_compare` |
|
|
88
|
+
| VIBE.md, project context, and local memory/notes/personas/skills/routines | `vibe action:"status|show|init|import_persona"`, `/vibe`, `context action:"status|files|file|prompt|receipts|receipt"`, `memory action:"status|provider|curator|candidate|list|search|get"` for local memory plus external provider next routes/checklists/receipt contracts, `agent_local_registry`, `agent_learning_consolidation`, or confirmed workspace actions |
|
|
89
|
+
| Learning curator and prompt plan | `memory action:"curator" includeParameters:true`, `memory action:"candidate"`, `agent_learning_consolidation`; lower-level learning harness modes remain available for detail |
|
|
90
|
+
| Work plan | `agent_work_plan` including confirmed `dispatch_agents` for approved visible-agent work |
|
|
91
|
+
| Visible autonomous work | `agent_harness mode:"agent_orchestration"`, `mode:"agent_orchestration_agent"`, then `agent` with `mode:"spawn"`, `mode:"batch-spawn"`, `mode:"status"`, `mode:"message"`, `mode:"wait"`, or `mode:"cancel"` |
|
|
92
|
+
| Channels, notifications, reminders, scheduled autonomy, media | `channels action:"status|channel|setup|triage|deliveries"`, `agent_channel_send`, `agent_notify`, `schedule action:"list|create|remind|edit|run|pause|resume|delete"`, lower-level channel harness modes and `agent_reminder_schedule`/`agent_autonomy_schedule`/`agent_schedule_edit`, `agent_media_generate` |
|
|
93
|
+
| Operator state/actions | `agent_operator_briefing`, `agent_operator_action`, `agent_operator_method`; inspect method contracts with `host action:"methods|method"` |
|
|
94
|
+
| Connected host/daemon posture | `host action:"status|capabilities|capability|services|service|methods|method"`; lower-level connected-host harness modes remain available for detailed inspection |
|
|
95
|
+
| First-run setup plan | `setup action:"status"` exposes `setupCloseout`; use `action:"repair"` for the safest next repair route, `action:"item"`, `action:"checkpoint"`, `action:"save_checkpoint"`, `action:"clear_checkpoint"`, `action:"token"`, `action:"smoke"`, and confirmed `action:"finish"` for the guided setup path |
|
|
96
|
+
| Operator/audit evidence | `audit action:"readiness|item|evidence|artifact"`; lower-level `agent_harness mode:"release_evidence"`, `mode:"release_evidence_artifact"`, `mode:"release_readiness"`, and `mode:"release_readiness_item"` remain available |
|
|
84
97
|
|
|
85
98
|
All effects require explicit user request and confirmation. Ambiguous lookup is refused with candidates.
|
|
86
99
|
|
|
@@ -101,26 +114,33 @@ goodvibes-agent profiles templates
|
|
|
101
114
|
goodvibes-agent profiles create household --template household --yes
|
|
102
115
|
goodvibes-agent profiles use household --yes
|
|
103
116
|
goodvibes-agent --agent-profile household
|
|
104
|
-
goodvibes-agent profiles templates export research ./research-starter.json --yes
|
|
117
|
+
goodvibes-agent profiles templates export research ./research-starter.json --include-vibe --yes
|
|
105
118
|
goodvibes-agent profiles templates import ./research-starter.json --yes
|
|
106
119
|
```
|
|
107
120
|
|
|
108
|
-
Named profiles isolate Agent-local config, sessions, memory, notes, personas, skills, routines, and setup state.
|
|
121
|
+
Named profiles isolate Agent-local config, sessions, VIBE.md, memory, notes, personas, skills, routines, and setup state. Starter export/from-discovered flows can include the current safe VIBE.md with `--include-vibe`; blocked VIBE.md files must be repaired first. Shared GoodVibes settings import can reuse existing provider, UI, permission, subscription, surface, tool, and daemon endpoint settings from goodvibes-tui and other published GoodVibes platform stores. The direct `settings action:"import"` route, `import_goodvibes_settings` compatibility route, and workspace action all preview changed counts first, show source-package ownership metadata, redact secret values, and require confirmation before applying Agent-owned settings or provider subscriptions without mutating the source package stores.
|
|
109
122
|
|
|
110
123
|
## Local Behavior
|
|
111
124
|
|
|
112
|
-
|
|
125
|
+
VIBE.md is the friendly personality file for GoodVibes Agent. Project and global VIBE.md files are discovered, scanned for secret-looking content, surfaced in the Local Context and Personas workspaces, setup, and the learning curator when blocked or truncated, optionally carried through profile starter export/import with `--include-vibe`, and applied to the serial Agent conversation. The model-visible route is `vibe action:"status|show"` for inspection and `vibe action:"init|import_persona" confirm:true explicitUserRequest:"..."` for confirmed personality changes; previews also return exact model and CLI `confirmationRoutes` for the same init/import action. They do not write into default knowledge or other product segments.
|
|
126
|
+
|
|
127
|
+
Project context files are workspace instructions, not personality. GoodVibes Agent discovers `.hermes.md`, `HERMES.md`, `AGENTS.md`, `CLAUDE.md`, optional `HERMES_HOME/SOUL.md`, `.cursorrules`, and `.cursor/rules/*.mdc`, scans them for secret-looking content, applies bounded safe content to the serial Agent prompt, shows loaded/blocked/truncated counts in Local Context, and exposes loaded or blocked files through `context action:"files"` and `context action:"file"`. Subdirectory context is discovered when a target path is supplied.
|
|
128
|
+
|
|
129
|
+
Memory, notes, personas, routines, and Agent skills are local to GoodVibes Agent. Only reviewed, high-confidence local context should steer the assistant. Prompt context includes reviewed memory at or above the durable confidence threshold and reviewed setup-ready skills, routines, bundles, and personas. Enabled but unreviewed, stale, low-confidence, setup-blocked, or blocked context records are surfaced as suppressed review work instead of being applied silently. Prompt builds write durable receipts with ids, turn/source/model/provider, selected and suppressed record refs, segment counts, prompt hash, size, timestamp, and sanitized completed/error/cancelled outcome without storing raw prompt or response text. Agent Workspace -> Local Context shows a compact receipt timeline with outcome counts, latest turn outcome, applied/suppressed counts, bounded outcome detail, exact latest-receipt drill-in, and outcome filter routes. Use `context action:"prompt"`, `context action:"receipts"`, or `context action:"receipt"` when the model or operator needs the current applied order, recent receipt ids, exact `receiptId`, `turnId`, or `outcomeStatus` filtering, turn outcomes, selected records, suppressed records, prompt previews on request, and approximate token budget.
|
|
113
130
|
|
|
114
131
|
Use the workspace first:
|
|
115
132
|
|
|
116
133
|
- Memory & Skills -> Create memory, Create note, or Capture learned behavior.
|
|
134
|
+
- Memory & Skills -> Prompt plan to see which reviewed memories and setup-ready behaviors can guide the assistant now, what is suppressed, and which scored review/proposal/consolidation routes should run before context expands.
|
|
135
|
+
- Memory & Skills -> Learning curator to rank stale, low-confidence, missing-setup, VIBE.md personality health, duplicate-consolidation candidates with visible diffs and rollback/recreate routes, expose an ordered duplicate-consolidation batch review plan, apply confirmed merge/stale/delete/rollback/recreate phases through `agent_learning_consolidation`, surface reviewed-note memory/behavior proposals, completed-work memory/behavior proposals, completed-research memory/behavior proposals, saved-session memory/behavior proposals, and review-needed local behavior records before they silently guide the assistant.
|
|
136
|
+
- Local Context -> Prompt context, Inspect VIBE.md, Inspect project context, or Inspect one context file before relying on persistent personality or project instructions.
|
|
117
137
|
- Notes -> Create notes for source triage, temporary decisions, and operator handoff.
|
|
118
|
-
- Personas ->
|
|
138
|
+
- Personas -> Inspect, create, show, or import VIBE.md; create, inspect, activate, review, stale, or delete personas.
|
|
119
139
|
- Skills -> Create, enable/disable, review, bundle, or delete.
|
|
120
140
|
- Routines -> Create, start in chat, review receipts, or explicitly promote to a connected schedule.
|
|
121
141
|
- Work -> Add work item, review work plan, and update status.
|
|
122
142
|
|
|
123
|
-
Starting a routine records local usage and prints its steps in the main conversation.
|
|
143
|
+
Starting a routine records local usage and prints its steps in the main conversation. Promotion to a connected schedule or automation job is separate, explicit, confirmation-gated, visible in the autonomy queue, and keeps Agent Knowledge isolated. When the user asks for recurring autonomous work directly, use `schedule action:"create"` to create one connected schedule only with explicit task, cadence, success criteria, confirmation, and user request provenance; use `schedule action:"remind"` for reminders and `schedule action:"pause|resume|run|delete"` for exact-id lifecycle controls. Confirmed schedule creation, routine promotion, reminders, edits, and lifecycle actions return next routes for schedule list, autonomy queue inspection, run, edit, pause, resume, and delete when applicable.
|
|
124
144
|
|
|
125
145
|
## Knowledge And Artifacts
|
|
126
146
|
|
|
@@ -134,13 +154,13 @@ Agent commands fail closed if the route is unavailable or a successful-looking r
|
|
|
134
154
|
|
|
135
155
|
The Knowledge workspace also exposes route-backed and command-backed workflows for issue review, prompt packet previews, context-selection explain output, consolidation, and reindex. Read-only ask/search/list/get/map/connector/packet/explain paths do not require mutation confirmation. Ingest, review-issue, consolidation, and reindex paths require explicit confirmation.
|
|
136
156
|
|
|
137
|
-
Use Agent Workspace -> Research for read-only web research and
|
|
157
|
+
Use Agent Workspace -> Research for read-only web research, URL inspection, visible checkpointable research run state, a read-only Research briefing queue, bounded public source-candidate search, browser-backed runner readiness, project-local source queue review, reviewed-source bundles, saved report inspection, and confirmed sourced report artifacts. Research requests do not ingest sources. The Research workspace shows browser-runner and visual-report readiness, the direct `research` run/source/report routes, a Research briefing action for `research action:"briefing"`, a Plan workflow action for `research action:"plan"`, a Public source search action for `research action:"search"`, a Browser runner readiness action for `research action:"runner"`, and a Report artifacts action for `research action:"reports"`. Use `research action:"briefing"` first when the model needs one read-only next-action queue across visible runs, source review, saved report artifacts, browser readiness, and exact follow-up routes. Use `research action:"search"` for one bounded public web search that returns capture-ready source candidates plus exact confirmed `add_source` routes; pass `runId` to use an existing visible run's saved question and receive run-specific start/checkpoint follow-up routes. It does not create runs or write source records by itself. Use `research action:"runner"` for the direct browser-backed runner readiness contract and setup/fallback routes. Use `research action:"plan"` when the model needs one ordered route plan for a research request or existing run; it returns visible-run, source-collection, source-review, visual-report-save, and Knowledge-promotion steps plus browser-runner and visual-report packet contracts without performing any of them. Research run records keep the user-facing question, phase, progress, checkpoints, log tails, source ids, next steps, confirmed lifecycle routes, and runner posture that tells the model whether browser-backed research is ready, needs setup review, or should fall back to public web/fetch routes without starting hidden background work. Research run detail and mutation outputs include next-route packets for inspect, briefing, workflow, run-bound search, source queue, checkpoint, report save, artifact inspection, and Knowledge promotion when a report artifact exists. The browser-runner contract names the required visible run controls, source-capture receipts, bounded logs, report handoff, setup routes, and fallback routes before live browser execution is treated as ready. Source queue records keep credibility, score, report-ready source lines, source bundle handoffs, and safe routes; source detail and mutation outputs point to the next review, reject, bundle, report, mark-used, artifact inspection, or optional Knowledge promotion route without performing those effects. Saved report artifacts keep a source map, citation coverage metadata, repair hints, optional strict body-citation enforcement, optional `visualReport:true` packet sections for at-a-glance summary, evidence matrix, findings board, dated source/comparison view, open questions, next actions, and handoff checklist, and next-route packets for report inspection, artifact export/archive, Knowledge promotion, report listing, and visible run completion when `runId` is supplied. Use `research action:"report_artifact" artifactId:"..."` to inspect one saved report before export, archive, share, or Knowledge promotion. The visual-report contract names required sections, citation/source-map acceptance criteria, report save, review-packet, and ZIP archive routes so richer rendering stays tied to the same reviewed artifacts. Use Agent Workspace -> Documents & Compare when a document needs a versioned markdown draft, review comments, AI suggestion review, review status, reviewer-ready document artifact export, chronological review packet timeline with stale-preset attention, guided review packet progress/routes/backtracking/final archive review/refreshed-preset lineage/share handoff, reviewer-readiness preflight for unresolved comments/suggestions/source artifacts/comparison reveal/route decisions/handoff evidence, inline readiness badges at export/archive/apply points, packet-default prefill for the next export/handoff/archive/apply/leave-unchanged/save-preset/share form, a saved packet preset for recurring evidence ids with freshness checks before reuse and confirmed refresh when newer matching evidence exists, saved artifact attachment or insertion, single-artifact export, multi-artifact package directory or ZIP archive export, prompt context, source checks, generated media artifacts, reviewed artifact-to-Knowledge promotion, saved text artifact reuse in blind comparison, or a confirmed blind model comparison with local review, side-by-side reviewer view, split-pane reviewer handoff diff with section jumps and recent-handoff defaults, judgment, confirmed route-decision receipts, task/document/benchmark-filtered analytics, synthesis, reviewer handoff artifacts, one-click reviewer handoff ZIP archives with matching route-decision receipt evidence, and confirmed packet share through `agent_review_packet_share` when the user wants to send an archive reference to a configured channel target. Use confirmed Agent Knowledge ingest actions when a reviewed source should become durable.
|
|
138
158
|
|
|
139
159
|
Use the Artifacts area and Voice & Media workspace for images, source files, generated media, and exported sessions. Generated media returns artifact ids and metadata, not inline base64.
|
|
140
160
|
|
|
141
161
|
## Connected Host
|
|
142
162
|
|
|
143
|
-
|
|
163
|
+
Connect Agent to a GoodVibes daemon before using daemon-backed features. Agent expects:
|
|
144
164
|
|
|
145
165
|
```text
|
|
146
166
|
http://127.0.0.1:3421
|
|
@@ -167,8 +187,14 @@ Host diagnostics:
|
|
|
167
187
|
- `goodvibes-agent doctor`
|
|
168
188
|
- `goodvibes-agent compat`
|
|
169
189
|
|
|
170
|
-
Model-visible diagnostics
|
|
190
|
+
Model-visible diagnostics prefer `host action:"status|capabilities|capability|services|service|methods|method"`. Lower-level `service_posture`, `service_endpoint`, `connected_host`, `connected_host_status`, `connected_host_capability`, `daemon`, and `daemon_status` harness modes remain available for compatibility and detailed inspection. `agent_operator_method` can run read-only routes directly and write/admin routes only with `confirm:true` plus `explicitUserRequest`.
|
|
191
|
+
|
|
192
|
+
When no connected host is reachable, inspect `setup action:"item" setupItemId:"connected-host-readiness"` for the offline bootstrap plan. It returns user-run commands to verify Bun, install and trust the owning GoodVibes host package, verify host entrypoints, start the GoodVibes service, and reconnect Agent. Agent does not run those host install/start commands implicitly. When the host auth token is missing or malformed on the local machine, use `setup action:"token" setupItemId:"connected-host-auth" confirm:true explicitUserRequest:"..."`; it uses the GoodVibes SDK pairing helper to create or repair `~/.goodvibes/daemon/operator-tokens.json`, preserves valid existing tokens, leaves environment tokens untouched, and returns only path/fingerprint metadata.
|
|
171
193
|
|
|
172
194
|
## Current Product Notes
|
|
173
195
|
|
|
174
|
-
Agent uses the GoodVibes terminal shell, renderer, input, fullscreen workspace, command registry, and release foundation. The
|
|
196
|
+
Agent uses the GoodVibes terminal shell, renderer, input, fullscreen workspace, command registry, and release foundation. Use `execution action:"status"` before computer-work handoffs: local read/edit/exec is the preferred route when the current workspace and permissions are sufficient, and Agent Workspace -> Work & Approvals shows local process supervision with tracked/running/completed counts, stdin/PTY/sudo parity, and Background processes / Process capabilities actions. Local shell/edit routes advertise process monitor/live tail/tool inspector supervision; first-class `execution`, `terminal`, and `process` adapters expose `execution action:"status|route|history|record|processes|process_capabilities|process|recovery"`, `terminal(command, background:true)`, and `process(action:"list|poll|wait|log|kill|write")` over the same tracked ProcessManager lifecycle. `execution action:"capabilities|doctor|parity"` now goes straight to the read-only process capability report, while `process action:"capabilities"` remains available for users already in the process lifecycle tool. Lower-level `mode:"execution_posture|execution_route|browser_control_route|background_processes|background_process|run_background_process|execution_history|execution_history_item|file_recovery|run_file_recovery"` routes remain available for compatibility and detailed inspection. The process capability report probes SDK ProcessManager methods plus daemon terminal/PTY, session-input, and credential routes so unsupported interactive features are tied to exact contract evidence instead of stale assumptions. PTY remains unsupported until a typed interactive session contract exists, and background sudo prompts are blocked in favor of visible user-supervised escalation. `setup action:"item" setupItemId:"sudo-execution-posture"` exposes SUDO_PASSWORD presence only, `~/.goodvibes/.env` guidance, blocked background sudo/stdin password routes, and the foreground shell route without reading or returning raw password values. `setup action:"status"` also exposes connected-host setup repair cards with live service probe evidence, token-safe auth posture, exact pairing route ids, confirmed local token provisioning, status, service posture, recommended diagnostic/status routes, and confirmed service install/start/restart routes that stay inspect-first until service status proves need, plus browser/desktop-control readiness with ready, attention, or setup-needed state, workflow cards, setup checklist, fallback routes, MCP review routes, and `computer action:"plan"` for selecting a browser navigation, screenshot/observation, or desktop-control workflow before any trusted live-control tool is invoked. Visible subagents stay serial-by-default unless independent work materially helps the user. `agent_harness mode:"agent_orchestration"` exposes the live Agent manager, managed multi-agent plan milestones, per-agent plan cards, linked work-plan receipts, closeout review/update routes, remote-runner contracts/artifact trails, auto-attached remote artifact review routes matched by runner id, spawn/batch-spawn decision cards, templates, and exact `agent` list/inspect/message/wait/cancel routes; `mode:"agent_orchestration_agent"` inspects one visible agent record with its plan card. Approved visible work-plan items can be converted into visible agents through confirmed `agent_work_plan action:"dispatch_agents"`; the route previews without spawning, then calls first-class `agent` spawn or batch-spawn, writes linked-agent receipts back to the plan, and returns next routes for orchestration, work-plan detail, agent inspect/wait/message/cancel, and closeout. Delegation is reserved for isolation, parallelism, remote execution, separate worktrees, or user-requested delegated review. `delegation action:"status|routes"` exposes local-first, TUI handoff, delegated-review, remote-inspection, and hidden-fanout-blocked decision cards; `delegation action:"route"` rows show required fields, success evidence, status routes, and recovery routes, while lower-level `agent_harness mode:"delegation_posture|delegation_route"` remains available for detailed compatibility inspection. The confirmed `/delegate` and Agent Workspace handoff form preserve the original ask plus delegation reason, success criteria, workspace/worktree hint, priority, and explicit review intent. The active autonomy policy is visible autonomy: long-running work must have a user-readable task, status/progress, cancellation route, success criteria, and confirmation gates for external or daemon-mutating effects. Use `autonomy action:"intake"` to turn an ongoing-work request into the safest visible route and missing fields; webhook/event-trigger requests expose trigger workflow posture and route applicable incoming watcher setup to the published `watchers.create` operator method, with trusted source/scope, task or run target, success criteria, `confirm:true`, and `explicitUserRequest` required. Confirmed autonomous schedule creation uses `schedule action:"create"`, and confirmed existing-schedule edits use `schedule action:"edit"` with read-only current-state diffs before confirmation. Inspect current autonomy cards with `autonomy action:"queue"` or one card with `action:"item"`; lower-level `agent_harness mode:"autonomy_intake|autonomy_queue|autonomy_queue_item"` remains available for detailed compatibility inspection. Research runs, connected-host tasks, approvals, automation runs, schedules, and delegated subagents surface live records or exact orchestration routes with progress/status, source ids, next steps, log tails when available, task retry/output/correlation diagnostics, bounded redacted host task output route/preview descriptors, automation telemetry/delivery/route diagnostics, normalized available/unavailable controls with reasons, and exact inspect/checkpoint/pause/resume/cancel/approve/deny/retry/run/edit/enable/disable/delete routes where the owning surface supports them. Schedule records also expose pause/resume aliases over daemon enable/disable lifecycle routes so the queue speaks in user intent instead of scheduler internals. Connected-host task cancel/retry stays on exact confirmed `agent_operator_method` routes, while `/tasks` remains inspection-only.
|
|
197
|
+
|
|
198
|
+
The preferred model-facing schedule path is now `schedule action:"list|create|remind|edit|run|pause|resume|delete"`. The lower-level `agent_autonomy_schedule`, `agent_reminder_schedule`, `agent_schedule_edit`, and `agent_operator_action` routes remain available for exact diagnostics and compatibility.
|
|
199
|
+
|
|
200
|
+
Security policy decisions are inspectable before execution. The route planner sends active permission or approval questions to `security action:"status"`, incident/finding/leaked-secret questions to `security action:"finding"`, and blocked-action or confirmation questions to `security action:"explain"` before any risky work is attempted. Use `security action:"explain" toolName:"<tool>" toolArgs:{...}` or lower-level `agent_harness mode:"policy_explain"` to see the Agent route guard, permission-mode prediction, typed-confirmation requirement, redacted argument preview, and exact follow-up routes for one model action. The explanation is read-only; final execution still uses the live safety guard, permission prompt, and owning tool confirmation.
|
|
@@ -8,11 +8,11 @@ GoodVibes Agent uses these context layers:
|
|
|
8
8
|
|
|
9
9
|
- current conversation context for the active turn;
|
|
10
10
|
- Agent-local memory records for durable but private assistant facts and preferences;
|
|
11
|
-
- Agent-local routines, skills, and personas for reusable behavior profiles;
|
|
11
|
+
- VIBE.md personality files, project context files, plus Agent-local routines, skills, and personas for reusable behavior profiles;
|
|
12
12
|
- isolated Agent Knowledge for source-backed documents, search, and semantic answers;
|
|
13
13
|
- artifacts for uploaded/generated files that can be referenced by chat, delegation, or explicit Agent Knowledge ingestion.
|
|
14
14
|
|
|
15
|
-
These layers are intentionally separate.
|
|
15
|
+
These layers are intentionally separate. VIBE.md, project context files, local memory/routines/skills/personas, and default knowledge are not automatically promoted into Agent Knowledge. Agent Knowledge records are not copied into default knowledge. Secrets are rejected or represented only by explicit secret references.
|
|
16
16
|
|
|
17
17
|
## Agent Knowledge Boundary
|
|
18
18
|
|
|
@@ -78,7 +78,7 @@ The main assistant conversation can use the read-only `agent_knowledge` tool for
|
|
|
78
78
|
|
|
79
79
|
## Ingest
|
|
80
80
|
|
|
81
|
-
Use Agent Workspace -> Knowledge for URL, URL-list, file, bookmark, browser-history, connector ingest, issue review, consolidation, and reindex forms. The main assistant conversation can also call the confirmed `agent_knowledge_ingest` tool for URL, file, URL-list, bookmark, browser-history, and connector source families. `/knowledge ingest-url <url> --yes` and `goodvibes-agent knowledge ingest-url <url> --yes` ingest URL sources into Agent Knowledge only.
|
|
81
|
+
Use Agent Workspace -> Knowledge for URL, URL-list, file, artifact-id, bookmark, browser-history, connector ingest, issue review, consolidation, and reindex forms. The main assistant conversation can also call the confirmed `agent_knowledge_ingest` tool for URL, file, artifact-id, URL-list, bookmark, browser-history, and connector source families. `/knowledge ingest-url <url> --yes` and `goodvibes-agent knowledge ingest-url <url> --yes` ingest URL sources into Agent Knowledge only.
|
|
82
82
|
|
|
83
83
|
The TUI workspace exposes the common confirmed ingest, issue-review, consolidation, and reindex flows. The CLI also exposes Agent-specific batch routes for scripts:
|
|
84
84
|
|
|
@@ -91,15 +91,17 @@ The TUI workspace exposes the common confirmed ingest, issue-review, consolidati
|
|
|
91
91
|
|
|
92
92
|
Connected-host ingest and read CLI routes target `/api/goodvibes-agent/knowledge/*`. Workspace and slash-command issue review, packet/explain, consolidation, and reindex flows stay inside the isolated Agent Knowledge service. None of them call default knowledge.
|
|
93
93
|
|
|
94
|
-
Do not map local memory, notes, routines, skills, personas, or default knowledge documents into Agent Knowledge automatically. Durable source-backed facts can be ingested deliberately through Agent routes when the user or an explicit Agent workflow asks for it.
|
|
94
|
+
Do not map VIBE.md, project context files, local memory, notes, routines, skills, personas, or default knowledge documents into Agent Knowledge automatically. Durable source-backed facts can be ingested deliberately through Agent routes when the user or an explicit Agent workflow asks for it.
|
|
95
95
|
|
|
96
96
|
## Artifacts And Multimodal
|
|
97
97
|
|
|
98
98
|
Artifacts are first-class runtime objects for files, images, audio, video, generated outputs, and delegation results. Agent Knowledge use of artifacts must still go through Agent-specific ingest routes when those are available.
|
|
99
99
|
|
|
100
|
+
The saved artifact browser is available from Agent Workspace -> Artifacts -> Browse artifacts and through `agent_artifacts`. It lists recent uploads, exports, generated media, source artifacts, session artifacts, comparison artifacts, sourced research reports, and exported document drafts with filters for query, kind, MIME type, purpose, and source. `agent_artifacts mode:"show"` inspects one artifact by id with redacted metadata and a bounded preview for text-like content only; binary bytes and inline base64 stay out of the transcript. Agent Workspace -> Artifacts -> Export saved artifact copies one reviewed artifact to a workspace file after typed confirmation, preserves exact bytes for text or binary artifacts, and refuses overwrite unless explicitly enabled. Agent Workspace -> Artifacts -> Export package copies selected reviewed artifact ids into a workspace package directory or ZIP archive with exact bytes under `artifacts/`, a redacted `manifest.json`, and a README. Agent Workspace -> Artifacts -> Attach to document draft links one reviewed saved artifact id to a document without rewriting the body, while Promote to Knowledge and Documents & Compare -> Promote artifact to Knowledge ingest one reviewed saved artifact id through the isolated Agent Knowledge artifact route after typed confirmation.
|
|
101
|
+
|
|
100
102
|
Agent Workspace -> Voice & Media -> Generate media creates image/video artifacts through configured media providers after typed confirmation. The main conversation can perform the same confirmed action with the `agent_media_generate` tool when the user explicitly asks for generated media. Generated media output is summarized as artifact ids, MIME types, filenames, and source URLs when present; inline base64 is not printed into the transcript.
|
|
101
103
|
|
|
102
|
-
The model can use first-class tools for the common Knowledge
|
|
104
|
+
The model can use first-class tools for the common route-selection, Knowledge, document, packet preset, packet share, artifact, autonomy, research, model/provider, computer/browser, device/voice, security, media, and comparison workflows: `route`, `agent_knowledge`, `agent_knowledge_ingest`, `agent_documents`, `agent_review_packet_presets`, `agent_review_packet_share`, `agent_artifacts`, `autonomy`, `research`, `models`, `computer`, `device`, `security`, `agent_media_generate`, and `agent_model_compare`. `route action:"plan"` maps a plain user request to the preferred visible Agent route, alternatives, missing fields, confirmation boundary, workspace matches, and harness mode matches without executing tools. `agent_documents` creates, revises, reviews, comments on, suggests changes to, lists, shows, attaches saved artifacts to, inserts saved artifacts into, and exports project-scoped versioned markdown drafts as saved artifacts after explicit confirmation for writes. Exports include a reviewer appendix with comment and AI suggestion summaries plus metadata counts for open/resolved comments and proposed/accepted/rejected suggestions. Suggested changes stay pending until the user accepts or rejects them; acceptance appends a new draft version. Artifact attachment records a reusable artifact reference and export manifest without changing the document body; text artifact insertion adds bounded markdown content to a new draft version; non-text artifact insertion adds a safe reference block without binary bytes or base64. `agent_review_packet_presets mode:"save"` writes one confirmed local JSON artifact containing reusable document/export/comparison/judgment/route-decision/handoff/archive/related artifact ids; `mode:"list"` and `mode:"show"` inspect saved presets, flag missing or superseded saved ids, and recommend newer matching reuse routes when metadata is sufficient; `mode:"refresh"` saves one new confirmed preset artifact from those freshness recommendations while preserving the source preset and without mutating documents, model routing, handoffs, or archives. `agent_review_packet_share` validates one saved reviewer handoff archive and sends a confirmed plain-text archive reference through a configured channel target without printing or attaching ZIP bytes; exact bytes still move through explicit artifact export/package routes. `research action:"briefing|plan|search|runner|runs|run|sources|source|bundle|reports|report_artifact"` exposes a read-only next-action queue, read-only planning, bounded public source-candidate search, browser-runner readiness, run/source inspection, reviewed-source bundles, and saved research report artifact inspection; confirmed `research action:"create_run|start_run|checkpoint|pause|resume|cancel|complete|fail|delete_run|add_source|review_source|reject_source|use_source|delete_source|report"` performs one visible research mutation or sourced report save after explicit user request. `models action:"status|route|local|providers|provider"` exposes read-only model route, local cookbook, provider, and subscription posture; confirmed `models action:"smoke"` performs local server smoke checks through existing confirmation gates. `computer action:"status|plan|control|browser|setup|mcp"` exposes read-only browser/PWA, browser/screenshot/desktop-control planning, repair/setup, and trusted tool discovery posture; confirmed `computer action:"open_browser"` performs the visible browser cockpit handoff through existing confirmation gates. `device action:"status|capability|voice|provider"` exposes read-only companion/mobile, voice, and provider posture; confirmed `device action:"open_tts_provider|open_tts_voice"` performs visible TTS picker handoffs through existing confirmation gates. `security action:"status|finding|explain"` exposes redacted security posture, exact finding inspection, and read-only policy explanations for why one model action is allowed, denied, or waiting on confirmation. The lower-level `agent_research_runs`, `agent_research_sources`, `agent_research_report`, `agent_harness mode:"route_decision"`, `agent_harness mode:"research_briefing"`, provider/model, pairing/media posture, security posture, policy explanation, and UI-surface harness modes remain available as detailed compatibility routes over the same local records, artifacts, and route contracts. `research action:"briefing"` summarizes local run/source/report/browser posture and returns exact follow-up routes without writes. Research run state keeps plan, phase, progress, checkpoints, log tails, source ids, lifecycle controls, and no hidden background execution. `research action:"search"` runs bounded public web research and returns source candidates with exact confirmed `add_source` routes; it never writes the source queue by itself. Research sources keep credibility, score, report-ready source lines, reviewed-source bundle handoff, and review/reject/use state; they never ingest Agent Knowledge or save a report by themselves. Research reports save one confirmed sourced markdown artifact with a source map, redacted source URLs, source-count metadata, citation coverage metadata, repair hints, optional strict body-citation enforcement, optional `visualReport:true` packet sections, direct `research action:"reports|report_artifact"` inspection, and no inline report content in the transcript. `agent_artifacts mode:"export"` copies exact saved artifact bytes to a validated workspace path after confirmation and refuses accidental overwrite; `mode:"package"` copies selected saved artifacts into a validated workspace directory with exact bytes, redacted metadata, README, and manifest; `mode:"archive"` writes the same package payload as one ZIP file. `agent_knowledge_ingest` accepts `sourceKind:"artifact"` plus `artifactId` for reviewed saved-artifact promotion. Blind model comparison can run from a direct prompt or a saved text artifact id, saves a local JSON artifact with the full prompt, blinded outputs, source artifact metadata, and reveal map while keeping model identities hidden in the transcript until reveal; saved artifacts can be reopened as blind review boards from Documents & Compare, rendered as side-by-side reviewer views with related document/artifact excerpts, converted into confirmed judgment artifacts, summarized as task/document/benchmark-filtered saved preference analytics or synthesized into cross-session preference themes, exported as local markdown reports, combined with related document or artifact exports into reviewer handoff artifacts, compared through split-pane reviewer handoff diffs with section jumps and recent-handoff choices from artifact metadata, archived as one ZIP artifact with the handoff, source comparison or judgment, related evidence bytes, matching route-decision receipt bytes, README, archive metadata, and redacted manifest, applied to the main model route only through a separate confirmed winner-update action, and saved as apply-winner or leave-unchanged route-decision receipt artifacts. Documents & Compare shows a chronological review packet timeline across document, comment, suggestion, attachment, export, compare, judgment, route-decision receipt, packet preset, handoff, and archive events plus a read-only review packet wizard for progress, current route hints, backtracking, route-decision guidance, refreshed-preset lineage, final archive review, and the confirmed share route. Workspace forms show inline reviewer-readiness badges before document export, reviewer handoff/archive, and route-apply actions, and packet-default hints prefill export, handoff/archive, apply, leave-unchanged, save-preset, and share fields from the latest review packet, falling back to saved preset metadata only when live evidence is missing, without bypassing confirmation. `autonomy` adds ongoing-work route selection plus visible queue and item inspection; lower-level `agent_harness` adds workspace-action lookup/execution, compact `modelRoute` hints in `workspace_actions`, compatibility autonomy modes, live research run, connected-host task, approval, automation run, and schedule records/log tails, lower-level research/device/media mode inspection, `document_ops`/`document_ops_lane` readiness including review packet timeline with stale preset attention, guided packet wizard progress, refreshed-preset lineage, route-decision receipts, packet presets/defaults/share handoff and freshness posture, and visible reviewer-readiness preflight for unresolved comments/suggestions/source evidence/comparison reveal/route decisions/handoff evidence, `sessions`/`session` bookmark and artifact posture, and confirmed slash-command mirrors when a visible workspace route maps to a concrete command.
|
|
103
105
|
|
|
104
106
|
Multimodal outputs should stay in the conversation, artifacts, local notes or memory, or explicit delegation results unless the user explicitly ingests a reviewed source through an Agent Knowledge route. They must not be inserted into default knowledge.
|
|
105
107
|
|
package/docs/project-planning.md
CHANGED
|
@@ -68,9 +68,9 @@ Use natural language such as "pause planning" or "stop planning" when planning s
|
|
|
68
68
|
|
|
69
69
|
The work-plan tracker is for concrete, durable task state after work becomes actionable. It is separate from the planning interview loop.
|
|
70
70
|
|
|
71
|
-
Use `/workplan` when the work already has tasks and needs status tracking. Use `/delegate` when explicit build/fix/review work should go to GoodVibes TUI.
|
|
71
|
+
Use `/workplan` when the work already has tasks and needs status tracking. Use `/delegate` when explicit build/fix/review work should go to GoodVibes TUI; include the original ask, delegation reason, success evidence, workspace/worktree hint, priority, and explicit review intent.
|
|
72
72
|
|
|
73
|
-
The model can keep the same visible work plan current with `agent_work_plan`. It can also inspect planning/work-plan visibility through `agent_harness` workspace and panel metadata, and inspect explicit build-delegation posture with `
|
|
73
|
+
The model can keep the same visible work plan current with `agent_work_plan`. Approved items can be dispatched through confirmed `agent_work_plan action:"dispatch_agents"` into visible `agent` spawn or batch-spawn calls, with linked-agent receipts written back to the plan and post-dispatch next routes for orchestration, work-plan detail, agent inspect/wait/message/cancel, and closeout. Those linked receipts and matching remote-runner artifacts appear in `agent_harness mode:"agent_orchestration"` closeout cards with exact work-plan and artifact review routes. It can also inspect planning/work-plan visibility through `agent_harness` workspace and panel metadata, and inspect explicit build-delegation posture with `delegation action:"status|routes|route"`; destructive work-plan changes, agent dispatch, and delegated submissions still require explicit user request and confirmation.
|
|
74
74
|
|
|
75
75
|
## Agent Knowledge Boundary
|
|
76
76
|
|
|
@@ -11,8 +11,8 @@ Provider and model state should be visible in:
|
|
|
11
11
|
- `/model` and `/provider`;
|
|
12
12
|
- the Agent operator workspace setup checklist;
|
|
13
13
|
- the TTS configuration workspace when spoken turns are used.
|
|
14
|
-
- `
|
|
15
|
-
- `agent_harness` modes `
|
|
14
|
+
- `models action:"status|route|local|providers|provider|smoke"` when the model needs provider/model route posture, selectable model metadata, pinned model status, reasoning support, context-window posture, readiness scores, safe setting keys, provider auth posture, subscription freshness, or the hardware-scored local model cookbook. Use `includeParameters:true`, `action:"route"`, or `action:"provider"` for full capabilities, readiness dimensions, local hardware profile, fit scores, setup/download guidance, local endpoint candidates with exact endpoint inspection, model-list smoke commands, success criteria, failure triage, confirmed local model-list smoke results, confirmed benchmark action routes, saved benchmark evidence, route-change hints, usage windows, issues, notes, and auth-flow hints.
|
|
15
|
+
- Lower-level `agent_harness` modes `model_routing`, `model_route`, `provider_accounts`, `provider_account`, and confirmed `run_local_model_smoke` remain available for compatibility and detailed harness inspection. Provider/account mutations stay on confirmed workspace or settings routes.
|
|
16
16
|
|
|
17
17
|
When a selected model is provider-qualified, Agent keeps the runtime provider row and raw model id separate. For example, `openai-subscriber` plus `openai:gpt-5.5` should route as provider `openai-subscriber` and model `gpt-5.5` where the public route expects provider/model fields.
|
|
18
18
|
|
|
@@ -26,6 +26,14 @@ Agent-owned provider definitions live under the Agent profile root when supporte
|
|
|
26
26
|
|
|
27
27
|
These files are local configuration. They are not Agent Knowledge records and should not be copied into knowledge search state.
|
|
28
28
|
|
|
29
|
+
## Local Model Cookbook
|
|
30
|
+
|
|
31
|
+
Agent Workspace -> Model Routing exposes `Inspect route readiness`, `Local model cookbook`, `Check local servers`, `Run local benchmark`, and `Review benchmark evidence` as separate actions so users can inspect, compare, and decide without implicit route changes. `Local model cookbook` and `models action:"local"` provide recommendations for Ollama, llama.cpp, vLLM, and local OpenAI-compatible servers. The cookbook detects local-compatible provider ids and model routes when available, scans local OS CPU/RAM/platform data with safe accelerator hints, ranks recipe fit, recommends the easiest first route, and exposes setup plans with download/start guidance, local server endpoint candidates, exact `models action:"route"` endpoint inspection, model-list smoke commands, success criteria, failure triage, confirmed `models action:"smoke"` checks for detected or default local endpoints, provider-add route hints when no route exists yet, provider-refresh routes, a confirmed `Run local benchmark` model-lane action backed by `agent_model_compare`, and saved local benchmark comparison artifacts when they exist.
|
|
32
|
+
|
|
33
|
+
Every selectable model and local recipe gets a 0-100 readiness score with dimensions for latency, context window, tool support, vision, cost, and privacy. Scores are estimated unless a live route benchmark has been recorded; they are intended for triage, not as hidden permission to switch the user's default model. Saved local benchmark artifacts are tagged through `agent_model_compare` with `benchmarkKind:"local-model-route"` and `taskType:"local-model-route"`; revealed winner judgments raise matching recipe confidence to measured evidence, and benchmark analytics open on that filtered slice. Default-model changes still require a separate confirmed route update.
|
|
34
|
+
|
|
35
|
+
The cookbook does not probe drivers, call local network endpoints, install servers, download models, or change the selected route. Live local benchmark execution is a separate confirmed action that spends model tokens, saves comparison evidence, and leaves default-model changes to a separate revealed judgment and confirmed apply step.
|
|
36
|
+
|
|
29
37
|
## Discovery And Health
|
|
30
38
|
|
|
31
39
|
Provider discovery and health are owned by the connected GoodVibes host. Agent can display discovered provider status, model context information, and route failures. It should not hide provider failures behind fallback wording that makes a failed chat or knowledge request look successful.
|
|
@@ -41,7 +49,7 @@ Search, voice, media, and multimodal providers are valid Agent features when the
|
|
|
41
49
|
|
|
42
50
|
Outputs that should become durable knowledge must go through Agent Knowledge routes. No provider output should be inserted into default knowledge or another product segment by Agent.
|
|
43
51
|
|
|
44
|
-
Setting discovery is compact by default and full with `includeParameters:true` or `
|
|
52
|
+
Setting discovery is compact by default through `settings action:"list"` and full with `includeParameters:true` or `settings action:"get"`. Setting changes use `settings action:"set|reset"` only when the user explicitly asks and provides confirmation. `models action:"status|route|local|providers|provider"` is read-only; `models action:"smoke"` is confirmation-gated. Model/provider selection, catalog refresh, pin/unpin, custom provider edits, and route setting changes stay visible picker, settings, workspace, or slash-command flows. Secret-backed provider or channel values are stored through the secret manager and displayed as redacted references.
|
|
45
53
|
|
|
46
54
|
## Related Docs
|
|
47
55
|
|