@pellux/goodvibes-agent 0.1.82 → 0.1.83

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.83 - 2026-06-01
6
+
7
+ - f5099c1 Hide runtime-owned settings from Agent workspace
8
+
5
9
  ## 0.1.82 - 2026-06-01
6
10
 
7
11
  - 3185531 Remove Agent local auth ownership paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.82",
3
+ "version": "0.1.83",
4
4
  "private": false,
5
5
  "description": "GoodVibes personal operator assistant TUI with a proactive Agent product brain, isolated Agent Knowledge, local profiles, routines, skills, personas, and explicit build delegation.",
6
6
  "type": "module",
@@ -3,9 +3,24 @@ export const AGENT_EXTERNAL_DAEMON_SETTING_LOCK_REASON = 'GoodVibes Agent connec
3
3
  const AGENT_HIDDEN_SETTING_PREFIXES = [
4
4
  ['cloud', 'flare.'].join(''),
5
5
  ['surfaces.', 'home', 'assistant.'].join(''),
6
+ 'batch.',
7
+ 'controlPlane.',
8
+ 'danger.',
9
+ 'httpListener.',
10
+ 'network.',
11
+ 'orchestration.',
12
+ 'runtime.',
13
+ 'service.',
6
14
  'sandbox.',
15
+ 'web.',
16
+ 'watchers.',
17
+ 'wrfc.',
7
18
  ] as const;
8
19
 
20
+ const AGENT_HIDDEN_SETTING_KEYS = new Set<string>([
21
+ 'ui.wrfcMessages',
22
+ ]);
23
+
9
24
  const EXTERNAL_DAEMON_SETTING_PREFIXES = [
10
25
  'service.',
11
26
  'controlPlane.',
@@ -24,5 +39,6 @@ export function isExternalDaemonOwnedSettingKey(key: string): boolean {
24
39
  }
25
40
 
26
41
  export function isAgentHiddenSettingKey(key: string): boolean {
27
- return AGENT_HIDDEN_SETTING_PREFIXES.some((prefix) => key.startsWith(prefix));
42
+ return AGENT_HIDDEN_SETTING_KEYS.has(key)
43
+ || AGENT_HIDDEN_SETTING_PREFIXES.some((prefix) => key.startsWith(prefix));
28
44
  }
@@ -57,11 +57,9 @@ export const SETTINGS_CATEGORY_GROUPS: ReadonlyArray<{
57
57
  }> = [
58
58
  { label: 'Agent Experience', categories: ['display', 'ui', 'behavior', 'permissions'] },
59
59
  { label: 'Models and Providers', categories: ['provider', 'subscriptions', 'helper', 'tools', 'tts'] },
60
- { label: 'Local Agent State', categories: ['storage', 'runtime', 'cache', 'telemetry'] },
61
- { label: 'Tools and Automation', categories: ['mcp', 'batch', 'automation', 'watchers'] },
62
- { label: 'External Runtime Connection', categories: ['network', 'controlPlane', 'httpListener', 'web', 'service', 'surfaces'] },
63
- { label: 'Delegation Compatibility', categories: ['orchestration', 'wrfc'] },
64
- { label: 'Advanced', categories: ['flags', 'release', 'danger'] },
60
+ { label: 'Local Agent State', categories: ['storage', 'cache', 'telemetry'] },
61
+ { label: 'Channels and Tools', categories: ['surfaces', 'mcp', 'automation'] },
62
+ { label: 'Advanced', categories: ['flags', 'release'] },
65
63
  ];
66
64
 
67
65
  export const SETTINGS_CATEGORIES: SettingsCategory[] = SETTINGS_CATEGORY_GROUPS.flatMap(group => group.categories);
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.82';
9
+ let _version = '0.1.83';
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 {