@pellux/goodvibes-agent 1.8.2 → 1.9.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 +5 -0
- package/README.md +1 -1
- package/dist/package/main.js +1 -1
- package/docs/README.md +1 -1
- package/package.json +3 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Product-facing release notes for GoodVibes Agent.
|
|
4
4
|
|
|
5
|
+
## 1.9.0 - 2026-07-11
|
|
6
|
+
|
|
7
|
+
- GoodVibes Agent now publishes self-contained compiled binaries for Linux and macOS (x64 and arm64) on every GitHub release, each verified against a SHA256SUMS manifest, so the public installer can set the agent up as a single binary with no separate Bun runtime step. The npm/Bun package channel is unchanged.
|
|
8
|
+
- Standalone binaries resolve plugins, hooks, and configuration from your filesystem exactly as the Bun runtime does; the semantic vector memory index additionally needs its native extension co-located with the binary and otherwise falls back to literal memory matching, reported plainly by the memory vector status command.
|
|
9
|
+
|
|
5
10
|
## 1.8.2 - 2026-07-11
|
|
6
11
|
|
|
7
12
|
- Adopts platform SDK 1.7.1.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# GoodVibes Agent
|
|
2
2
|
|
|
3
3
|
[](https://opensource.org/licenses/MIT)
|
|
4
|
-
[](#install)
|
|
5
5
|
|
|
6
6
|
GoodVibes Agent is the installable autonomous operator assistant for GoodVibes. It keeps the existing terminal renderer and workspace bones, but the product goal is different from a vibecoding harness: the user should experience one assistant that can chat, plan, remember, research, schedule, send, generate, run visible agents, and operate the GoodVibes daemon contract with clear confirmation gates.
|
|
7
7
|
|
package/dist/package/main.js
CHANGED
|
@@ -851899,7 +851899,7 @@ var createStyledCell = (char, overrides = {}) => ({
|
|
|
851899
851899
|
// src/version.ts
|
|
851900
851900
|
import { readFileSync } from "fs";
|
|
851901
851901
|
import { join } from "path";
|
|
851902
|
-
var _version = "1.
|
|
851902
|
+
var _version = "1.9.0";
|
|
851903
851903
|
try {
|
|
851904
851904
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, "..", "package.json"), "utf-8"));
|
|
851905
851905
|
_version = typeof pkg.version === "string" ? pkg.version : _version;
|
package/docs/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-agent",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
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",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"publish:dry-run": "bun run scripts/publish-package.ts --dry-run",
|
|
54
54
|
"publish:check": "bun run scripts/publish-check.ts",
|
|
55
55
|
"package:install-check": "bun run scripts/package-install-check.ts",
|
|
56
|
-
"ci:gate": "bun run typecheck && bun run typecheck:test && bun run test && bun run coverage:gate && bun run architecture:check && bun run perf:check && bun run build && bun run publish:check && bun run package:install-check && bun run verification:ledger",
|
|
56
|
+
"ci:gate": "bun run typecheck && bun run typecheck:test && bun run test && bun run coverage:gate && bun run architecture:check && bun run workflows:check && bun run perf:check && bun run build && bun run publish:check && bun run package:install-check && bun run verification:ledger",
|
|
57
57
|
"coverage:gate": "bun run scripts/coverage-gate.ts",
|
|
58
58
|
"sdk:gate": "bun run scripts/sdk-release-gates.ts",
|
|
59
59
|
"sdk:dev": "bun run scripts/sdk-dev.ts",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"build:all": "bun run scripts/build.ts --all",
|
|
62
62
|
"perf:check": "bun run scripts/perf-check.ts",
|
|
63
63
|
"architecture:check": "bun run scripts/check-architecture.ts",
|
|
64
|
+
"workflows:check": "bun run scripts/check-workflows.ts",
|
|
64
65
|
"verification:ledger": "bun run scripts/verification-ledger.ts",
|
|
65
66
|
"verification:live": "bun run scripts/verify-live.ts",
|
|
66
67
|
"ux:inventory": "bun run scripts/competitive-ux-inventory.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 = '1.
|
|
9
|
+
let _version = '1.9.0';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {
|
|
12
12
|
readonly version?: unknown;
|