vibeostheog 0.13.22 → 0.15.2

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
@@ -1,3 +1,62 @@
1
+ ## 0.15.2
2
+ - fix: add missing mergeProjectBucket re-export in state module
3
+ - fix: update pricing.js import assertion to handle additional state imports
4
+ - refactor: extract text-compress, pattern-helpers, consolidate duplicates
5
+ - docs: add mandatory prompt execution directive to LIVE_DEBUG
6
+ - chore: sync compiled output after state module fix
7
+ - chore: update gitignore and untrack internal dev artifacts
8
+ Merge pull request #29 from DrunkkToys/refactor/extract-text-compress-pattern-helpers-consolidate
9
+
10
+
11
+ ## 0.15.0
12
+ - fix: autoconfig write bug, API fallback short-circuit, constants extraction (#27)
13
+ - fix: add blackboxSelectMode client method for footer auto-mode routing
14
+ - refactor: extract 9 pure classifiers from turn-classify.ts to classifiers.ts
15
+ Merge pull request #26 from DrunkkToys/refactor/extract-classifiers
16
+ Merge pull request #25 from DrunkkToys/fix/blackbox-select-mode-client-method
17
+
18
+
19
+ ## 0.14.5
20
+ - fix: remove duplicate Create GitHub Release step (release script handles it)
21
+ - fix: add contents:write permission to release workflow
22
+ - fix: add test:ci script for fast unit tests, separate from integration tests
23
+ - fix: configure git identity in release workflow
24
+ - fix: exclude slow delegation enforcer test from npm test
25
+ - fix: increase test-timeout to 120s for slow delegation enforcer test
26
+ - fix: exclude dashboard test from test suite and add --test-timeout=60000
27
+ - fix: add --test-timeout=60000 to prevent cancelledByParent test failures in CI
28
+ - fix: exclude dashboard from tsconfig to resolve CI build failure
29
+ - fix: update API token and add blackboxControlVector client method
30
+ - chore: v0.14.4
31
+ Merge pull request #24 from DrunkkToys/fix/ci-test-exclude-dashboard
32
+ Merge pull request #23 from DrunkkToys/fix/ci-test-timeout
33
+ Merge pull request #22 from DrunkkToys/fix/ci-exclude-dashboard
34
+ Merge pull request #21 from DrunkkToys/fix/api-token-and-blackbox-control-vector
35
+
36
+
37
+ ## 0.14.4
38
+ - fix: add contents:write permission to release workflow
39
+ - fix: add test:ci script for fast unit tests, separate from integration tests
40
+ - fix: configure git identity in release workflow
41
+ - fix: exclude slow delegation enforcer test from npm test
42
+ - fix: increase test-timeout to 120s for slow delegation enforcer test
43
+ - fix: exclude dashboard test from test suite and add --test-timeout=60000
44
+ - fix: add --test-timeout=60000 to prevent cancelledByParent test failures in CI
45
+ - fix: exclude dashboard from tsconfig to resolve CI build failure
46
+ - fix: update API token and add blackboxControlVector client method
47
+ Merge pull request #24 from DrunkkToys/fix/ci-test-exclude-dashboard
48
+ Merge pull request #23 from DrunkkToys/fix/ci-test-timeout
49
+ Merge pull request #22 from DrunkkToys/fix/ci-exclude-dashboard
50
+ Merge pull request #21 from DrunkkToys/fix/api-token-and-blackbox-control-vector
51
+
52
+
53
+ ## 0.14.1
54
+ - fix: align 42 failing tests with current runtime behavior (footer format, savings fields, token ranges, diagnose output, recovery/safeJsonParse, pattern learner, injection strategies, stress scoring, tdd/flow/diagnose commands, repair-state merge, trinity controls, integration tests)
55
+ - feat: merge_csv.py — robust CSV merge script with encoding, key conflict resolution, falsy-value handling, column schema mismatch, empty row skipping
56
+
57
+ ## 0.14.0
58
+ - (skipped — version bump from previous releases)
59
+
1
60
  ## 0.13.21
2
61
  - fix: blackbox save TTL throttle, export parseJsonc, stress/pattern tests
3
62
  - fix: rebuild bundled src/index.js with warn_count and ledger fixes
package/README.md CHANGED
@@ -6,7 +6,7 @@ vibeOS helps keep expensive model usage under control by enforcing delegation be
6
6
 
7
7
  ## Version
8
8
 
9
- Current package version: `0.11.0`
9
+ Current package version: `0.14.1`
10
10
 
11
11
  ## What It Does
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.13.22",
3
+ "version": "0.15.2",
4
4
  "description": "Cost-aware delegation enforcer for OpenCode. Tracks model usage, routes Task subagents to cheaper tiers, surfaces cumulative savings in chat. Includes research audit, reporting framework, project memory, progressive scratchpad decadence, and trinity CLI for brain/medium/cheap slot switching.",
5
5
  "scripts": {
6
6
  "release": "node scripts/release.mjs",
@@ -13,7 +13,8 @@
13
13
  "checkpoint:validate": "node scripts/checkpoint-validate.mjs",
14
14
  "test:scripts": "node --test scripts/tests/checkpoint-validate.test.mjs",
15
15
  "ts:audit": "node scripts/ts-audit.mjs",
16
- "test": "VIBEOS_MCP_PORT=0 node --test tests/*.test.mjs src/tests/*.test.js src/utils/tests/*.test.mjs src/vibeOS-lib/tests/*.test.mjs",
16
+ "test": "VIBEOS_MCP_PORT=0 node --test --test-timeout=120000 tests/deep_integration.test.mjs tests/production_regressions.test.mjs tests/release_hardening_tigerteam.test.mjs tests/test_api_migration.neutral.test.mjs tests/test_const_assignment_regression.test.mjs tests/test_delegation_enforcer.test.mjs tests/test_diagnose_cmd.test.mjs tests/test_injection_strategies.test.mjs tests/test_install_and_recovery.test.mjs tests/test_internals_stress_patterns_offtopic.test.mjs tests/test_tdd_enforcer.test.mjs src/tests/*.test.js src/utils/tests/*.test.mjs \"src/vibeOS-lib/tests/!(test_blackbox*).test.mjs\"",
17
+ "test:ci": "VIBEOS_MCP_PORT=0 node --test --test-timeout=30000 tests/production_regressions.test.mjs tests/release_hardening_tigerteam.test.mjs tests/test_const_assignment_regression.test.mjs tests/test_diagnose_cmd.test.mjs tests/test_install_and_recovery.test.mjs tests/test_tdd_enforcer.test.mjs src/tests/*.test.js src/utils/tests/*.test.mjs \"src/vibeOS-lib/tests/!(test_blackbox*).test.mjs\"",
17
18
  "codex:guard": "bash plugins/vibetheog-codex/scripts/run-guard.sh",
18
19
  "codex:guard:full": "VIBETHEOG_GUARD_FULL=1 bash plugins/vibetheog-codex/scripts/run-guard.sh",
19
20
  "codex:hook:precommit": "bash plugins/vibetheog-codex/hooks/pre-commit.sh",
@@ -45,7 +46,7 @@
45
46
  "node": ">=18"
46
47
  },
47
48
  "peerDependencies": {
48
- "@opencode-ai/plugin": ">=1.0.0"
49
+ "@opencode-ai/plugin": "^1.15.7"
49
50
  },
50
51
  "files": [
51
52
  "src/index.js",