@pellux/goodvibes-agent 0.1.100 → 0.1.101

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.101 - 2026-06-01
6
+
7
+ - 5f35012 Prune hidden copied command surfaces
8
+
5
9
  ## 0.1.100 - 2026-06-01
6
10
 
7
11
  - e2d5eee Run release tests only through branch CI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.100",
3
+ "version": "0.1.101",
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",
@@ -16,12 +16,6 @@
16
16
  "!src/test",
17
17
  "!src/**/*.test.ts",
18
18
  "!src/**/__tests__",
19
- "!src/input/commands/provider.ts",
20
- "!src/input/commands/remote-runtime.ts",
21
- "!src/input/commands/remote-runtime-pool.ts",
22
- "!src/input/commands/remote-runtime-setup.ts",
23
- "!src/input/commands/replay-runtime.ts",
24
- "!src/input/commands/skills-runtime.ts",
25
19
  "!src/panels/cockpit-panel.ts",
26
20
  "!src/panels/communication-panel.ts",
27
21
  "!src/panels/control-plane-panel.ts",
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.100';
9
+ let _version = '0.1.101';
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 {