@rely-ai/caliber 1.7.2 → 1.7.4

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 +3 -3
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -4607,7 +4607,7 @@ function trackInitProjectDiscovered(languageCount, dependencyCount, fileCount) {
4607
4607
  trackEvent("init_project_discovered", { language_count: languageCount, dependency_count: dependencyCount, file_count: fileCount });
4608
4608
  }
4609
4609
  function trackInitAgentSelected(agents) {
4610
- trackEvent("init_agent_selected", { agents });
4610
+ trackEvent("init_agent_selected", { agents: agents.join(",") });
4611
4611
  }
4612
4612
  function trackInitScoreComputed(score, passingCount, failingCount, earlyExit) {
4613
4613
  trackEvent("init_score_computed", { score, passing_count: passingCount, failing_count: failingCount, early_exit: earlyExit });
@@ -5501,7 +5501,7 @@ async function initCommand(options) {
5501
5501
  targetAgent
5502
5502
  });
5503
5503
  console.log("");
5504
- console.log(title.bold(" Keep your configs fresh\n"));
5504
+ console.log(title.bold(" Keep your setup up-to-date as your code evolve\n"));
5505
5505
  console.log(chalk8.dim(" Caliber can automatically update your agent configs when your code changes.\n"));
5506
5506
  const hookChoice = await promptHookType(targetAgent);
5507
5507
  trackInitHookSelected(hookChoice);
@@ -5712,7 +5712,7 @@ async function promptHookType(targetAgent) {
5712
5712
  }
5713
5713
  choices.push({ name: "Skip for now", value: "skip" });
5714
5714
  return select5({
5715
- message: "How would you like to auto-refresh your docs?",
5715
+ message: "How would you like to auto-refresh your setup?",
5716
5716
  choices
5717
5717
  });
5718
5718
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
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": {