@pellux/goodvibes-agent 0.1.28 → 0.1.29

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.29 - 2026-05-31
6
+
7
+ - 3fafcda Add Agent channel workspace guidance
8
+
5
9
  ## 0.1.28 - 2026-05-31
6
10
 
7
11
  - 77a9dc4 Add isolated Agent runtime profiles
@@ -43,7 +43,7 @@ Primary sources used for the benchmark:
43
43
  | --- | --- | --- |
44
44
  | Terminal operator UI | Interactive CLI/TUI, commands, sessions | Near-fork GoodVibes TUI compositor/input/fullscreen foundation |
45
45
  | Always-on gateway | Gateway/service owns channels, sessions, tools, events | External GoodVibes daemon, never Agent-owned lifecycle |
46
- | Channels | WhatsApp, Telegram, Slack, Discord, Signal, iMessage, web chat | GoodVibes daemon channel and companion surfaces with Agent-side policy |
46
+ | Channels | WhatsApp, Telegram, Slack, Discord, Signal, iMessage, web chat | GoodVibes daemon channel and companion surfaces with Agent-side policy and a Channels operator workspace |
47
47
  | Knowledge/memory | Durable memory, semantic search, wiki/claim layers | Isolated Agent Knowledge routes plus local memory/skills/personas/routines |
48
48
  | Skills/procedural memory | Skills directories, registries, skill lifecycle | Local Agent skills with review/stale/source/provenance fields |
49
49
  | Scheduling | Natural-language cron, run/pause/resume/edit/remove, delivery | Guarded automation/schedule routes plus local routines; hidden model scheduling blocked |
@@ -66,7 +66,7 @@ GoodVibes Agent should exceed OpenClaw/Hermes by making these properties true fr
66
66
 
67
67
  ## Current Gaps To Close
68
68
 
69
- - Agent-first channel onboarding workspace for pairing, account visibility, delivery defaults, and channel safety.
69
+ - Per-channel account readiness, delivery defaults, and risk labels in the Channels workspace detail pane.
70
70
  - Richer Agent Knowledge ingest/review workspace for URLs, bookmarks, artifacts, issue queues, and consolidation.
71
71
  - Profile-aware onboarding summaries and profile export/import shortcuts from the Agent workspace.
72
72
  - Voice/media/browser/node setup workspaces.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "private": false,
5
5
  "description": "Near-fork GoodVibes operator assistant with the GoodVibes TUI shell, renderer, input, fullscreen workspace, and daemon-connected Agent product brain.",
6
6
  "type": "module",
@@ -192,6 +192,19 @@ export const AGENT_WORKSPACE_CATEGORIES: readonly AgentWorkspaceCategory[] = [
192
192
  { id: 'auth', label: 'Auth review', detail: 'Review authentication posture without printing token values.', command: '/auth review', kind: 'command', safety: 'read-only' },
193
193
  ],
194
194
  },
195
+ {
196
+ id: 'channels',
197
+ group: 'SETUP',
198
+ label: 'Channels',
199
+ summary: 'Companion pairing, channel posture, and delivery safety.',
200
+ detail: 'Agent uses externally owned daemon channel surfaces. Pairing, account inspection, and readiness checks are visible here; inbound delivery and public channel exposure stay policy-gated.',
201
+ actions: [
202
+ { id: 'pair', label: 'Pair companion', detail: 'Open the TUI-derived QR pairing surface for companion app setup.', command: '/pair', kind: 'command', safety: 'safe' },
203
+ { id: 'communication', label: 'Communication routes', detail: 'Inspect structured communication routes and recent activity.', command: '/communication', kind: 'command', safety: 'read-only' },
204
+ { id: 'setup-review', label: 'Channel setup review', detail: 'Review setup posture without starting listeners or mutating daemon surface state.', command: '/setup review', kind: 'command', safety: 'read-only' },
205
+ { id: 'channel-safety', label: 'Delivery safety', detail: 'External messages, channel DMs, and public delivery targets require explicit user action and daemon-side policy. Agent will not silently send or expose channels from this workspace.', kind: 'guidance', safety: 'blocked' },
206
+ ],
207
+ },
195
208
  {
196
209
  id: 'knowledge',
197
210
  group: 'KNOW',
@@ -69,11 +69,11 @@ export const OPERATOR_CAPABILITY_BENCHMARKS: readonly OperatorCapabilityBenchmar
69
69
  posture: 'configurable',
70
70
  competitors: ['openclaw', 'hermes'],
71
71
  competitorBaseline: 'Messaging gateway for WhatsApp, Telegram, Slack, Discord, Signal, iMessage, web chat, and related platforms.',
72
- goodvibesAgent: 'Uses GoodVibes daemon channel, companion, pairing, QR, and session surfaces while keeping side effects behind explicit user action.',
73
- configure: ['goodvibes-agent pair', 'goodvibes-agent qrcode', 'goodvibes-agent surfaces check'],
74
- use: ['/channels', '/communication', '/pair'],
75
- exceedsBy: ['Agent-owned safety policy over shared channel routes', 'read-only inspection by default', 'explicit approval path for external side effects'],
76
- next: ['Add Agent-first channel onboarding workspace that exposes connected accounts, delivery defaults, and pairing state without daemon ownership.'],
72
+ goodvibesAgent: 'Uses GoodVibes daemon channel, companion, pairing, QR, communication, and session surfaces while keeping side effects behind explicit user action. The Agent workspace exposes channel setup and safety as a first-class operator area.',
73
+ configure: ['goodvibes-agent pair', 'goodvibes-agent qrcode', 'goodvibes-agent surfaces check', '/agent → Channels'],
74
+ use: ['/agent → Channels', '/communication', '/pair'],
75
+ exceedsBy: ['Agent-owned safety policy over shared channel routes', 'read-only inspection by default', 'explicit approval path for external side effects', 'channel setup discoverable from the fullscreen operator workspace'],
76
+ next: ['Add per-channel account readiness, delivery defaults, and risk labels directly in the Channels workspace detail pane.'],
77
77
  },
78
78
  {
79
79
  id: 'isolated-knowledge-wiki',
@@ -88,6 +88,13 @@ function snapshotLines(category: AgentWorkspaceCategory, snapshot: AgentWorkspac
88
88
  { text: `Workspace: ${snapshot.workingDirectory}`, fg: PALETTE.muted },
89
89
  { text: `Home: ${snapshot.homeDirectory}`, fg: PALETTE.muted },
90
90
  );
91
+ } else if (category.id === 'channels') {
92
+ base.push(
93
+ { text: `External daemon: ${snapshot.daemonBaseUrl}`, fg: PALETTE.info },
94
+ { text: 'Pairing: use /pair or /qrcode for companion setup.', fg: PALETTE.info },
95
+ { text: 'Channel posture: inspect via /communication and /setup review.', fg: PALETTE.muted },
96
+ { text: 'Safety: external delivery, unknown senders, and public exposure require explicit policy and user action.', fg: PALETTE.warn },
97
+ );
91
98
  } else if (category.id === 'knowledge') {
92
99
  base.push(
93
100
  { text: `Route family: ${snapshot.knowledgeRoute}/{status,ask,search}`, fg: PALETTE.info },
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.1.28';
9
+ let _version = '0.1.29';
10
10
  let _sdkVersion = '0.33.35';
11
11
  try {
12
12
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {