@rely-ai/caliber 1.18.4 → 1.18.5

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 -1
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -8346,7 +8346,10 @@ acquireLock();
8346
8346
  if (process.env.CALIBER_LOCAL) {
8347
8347
  process.env.CALIBER_SKIP_UPDATE_CHECK = "1";
8348
8348
  }
8349
- await checkForUpdates();
8349
+ var isQuickExit = ["--version", "-V", "--help", "-h"].some((f) => process.argv.includes(f));
8350
+ if (!isQuickExit) {
8351
+ await checkForUpdates();
8352
+ }
8350
8353
  program.parseAsync().catch((err) => {
8351
8354
  const msg = err instanceof Error ? err.message : "Unexpected error";
8352
8355
  if (msg !== "__exit__") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.18.4",
3
+ "version": "1.18.5",
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": {