vibeostheog 0.25.37 → 0.25.38

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,8 @@
1
+ ## 0.25.38
2
+ - fix: update usage line to recommend npx -y (#252) (#252)
3
+ - fix: add permission prompt to setup.js + contract tests for install flow (#251) (#251)
4
+
5
+
1
6
  ## 0.25.37
2
7
  - fix: add permission prompt to setup.js + contract tests for install flow (#251) (#251)
3
8
 
package/bin/setup.js CHANGED
@@ -16,7 +16,8 @@ const isProject = args.includes("--project");
16
16
  const isYes = args.includes("--yes") || args.includes("-y");
17
17
 
18
18
  if (!isInstallCommand || args.includes("--help") || args.includes("-h")) {
19
- console.error("Usage: vibeostheog set [--yes] [--project] | vibeostheog setup [--yes] [--project]");
19
+ console.error("Usage: npx -y vibeostheog set [--yes] [--project]");
20
+ console.error(" npx -y vibeostheog setup [--yes] [--project]");
20
21
  process.exit(1);
21
22
  }
22
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.25.37",
3
+ "version": "0.25.38",
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",