@pellux/goodvibes-agent 0.1.55 → 0.1.56

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,12 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.56 - 2026-05-31
6
+
7
+ - a0b54e8 Document Bun global PATH setup
8
+ - f845cca Rename onboarding capabilities step
9
+ - 4462e52 Clarify Bun-only install path
10
+
5
11
  ## 0.1.55 - 2026-05-31
6
12
 
7
13
  - d8f4eee Remove copied developer audit surfaces
package/README.md CHANGED
@@ -19,6 +19,13 @@ goodvibes-agent profiles templates
19
19
  goodvibes-agent knowledge status
20
20
  ```
21
21
 
22
+ If `goodvibes-agent` is not found after installation, add Bun's global bin directory to `PATH`:
23
+
24
+ ```sh
25
+ export PATH="$(bun pm bin -g):$PATH"
26
+ goodvibes-agent --help
27
+ ```
28
+
22
29
  If Bun reports untrusted lifecycle dependencies, trust only the package and dependencies required by this package:
23
30
 
24
31
  ```sh
@@ -18,6 +18,13 @@ goodvibes-agent --help
18
18
  goodvibes-agent status
19
19
  ```
20
20
 
21
+ If the installed command is not found, add Bun's global bin directory to `PATH`:
22
+
23
+ ```sh
24
+ export PATH="$(bun pm bin -g):$PATH"
25
+ goodvibes-agent --help
26
+ ```
27
+
21
28
  If Bun requires lifecycle trust:
22
29
 
23
30
  ```sh
@@ -4,13 +4,22 @@ GoodVibes Agent's current installable public alpha version is recorded in `packa
4
4
 
5
5
  ## Package Identity
6
6
 
7
- - npm package: `@pellux/goodvibes-agent`
7
+ - registry package: `@pellux/goodvibes-agent`
8
8
  - executable: `goodvibes-agent`
9
9
  - SDK dependency: exact pin to `@pellux/goodvibes-sdk@0.33.35`
10
10
  - runtime: Bun
11
11
  - source language: TypeScript
12
12
  - daemon ownership: external only
13
13
 
14
+ End users install and run GoodVibes Agent with Bun:
15
+
16
+ ```sh
17
+ bun add -g @pellux/goodvibes-agent
18
+ goodvibes-agent --help
19
+ ```
20
+
21
+ Do not add non-Bun install instructions for this product. The package is hosted on the npm registry, but the supported install and smoke path is Bun.
22
+
14
23
  ## Required Gates
15
24
 
16
25
  Before any release candidate:
@@ -25,7 +34,7 @@ bun pm pack --dry-run
25
34
  git diff --check
26
35
  ```
27
36
 
28
- `bun run publish:package` publishes from a staged package directory. If `NPM_CONFIG_USERCONFIG` is already set, npm uses it. Otherwise the script creates a temporary 0600 npm userconfig from `NODE_AUTH_TOKEN` or `NPM_TOKEN`, uses it for that publish command, and removes it with the staging directory.
37
+ `bun run publish:package` publishes from a staged package directory to the package registry. If `NPM_CONFIG_USERCONFIG` is already set, the registry publish command uses it. Otherwise the script creates a temporary 0600 registry userconfig from `NODE_AUTH_TOKEN` or `NPM_TOKEN`, uses it for that publish command, and removes it with the staging directory.
29
38
 
30
39
  Also run the package install smoke from a packed artifact. It must prove:
31
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.55",
3
+ "version": "0.1.56",
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",
@@ -5,9 +5,13 @@ if ! command -v bun >/dev/null 2>&1; then
5
5
  cat >&2 <<'EOF'
6
6
  goodvibes-agent requires Bun.
7
7
 
8
- Install Bun first, then install GoodVibes Agent from the npm registry with:
8
+ Install Bun first, then install GoodVibes Agent with:
9
9
 
10
10
  bun add -g @pellux/goodvibes-agent
11
+
12
+ If the installed command is not found, add Bun's global bin directory to PATH:
13
+
14
+ export PATH="$(bun pm bin -g):$PATH"
11
15
  EOF
12
16
  exit 1
13
17
  fi
@@ -130,12 +130,12 @@ export function buildCapabilitiesStep(controller: OnboardingWizardController): O
130
130
 
131
131
  return {
132
132
  id: 'capabilities',
133
- title: 'Choose GoodVibes surfaces',
134
- shortLabel: 'Capabilities',
133
+ title: 'Choose Agent surfaces',
134
+ shortLabel: 'Surfaces',
135
135
  description: 'Choose what Agent should prepare locally. Daemon-backed surfaces are reviewed as external dependencies; Agent does not enable service mode or autostart.',
136
136
  summaryTitle: 'Selected surfaces',
137
137
  summaryLines: [
138
- `${selectedCount}/${capabilities.length} option(s) selected`,
138
+ `${selectedCount}/${capabilities.length} surface option(s) selected`,
139
139
  `Mode: ${controller.mode === 'edit' ? 'edit existing shell state' : controller.mode === 'reopen' ? 'reopen review flow' : 'new setup'}`,
140
140
  controller.runtimeSnapshot?.collectionIssues.length
141
141
  ? `${controller.runtimeSnapshot.collectionIssues.length} runtime collection issue(s)`
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.55';
9
+ let _version = '0.1.56';
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 {