@rely-ai/caliber 1.29.5 → 1.29.6

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.
Files changed (2) hide show
  1. package/dist/bin.js +4 -6
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -191,14 +191,12 @@ function resolveCaliber() {
191
191
  }
192
192
  try {
193
193
  const whichCmd = process.platform === "win32" ? "where caliber" : "which caliber";
194
- const found = execSync6(whichCmd, {
194
+ execSync6(whichCmd, {
195
195
  encoding: "utf-8",
196
196
  stdio: ["pipe", "pipe", "pipe"]
197
- }).trim();
198
- if (found) {
199
- _resolved = found;
200
- return _resolved;
201
- }
197
+ });
198
+ _resolved = "caliber";
199
+ return _resolved;
202
200
  } catch {
203
201
  }
204
202
  const binPath = process.argv[1];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.29.5",
3
+ "version": "1.29.6",
4
4
  "description": "Analyze your codebase and generate optimized AI agent configs (CLAUDE.md, .cursorrules, skills) — no API key needed",
5
5
  "type": "module",
6
6
  "bin": {