@rely-ai/caliber 1.3.1 → 1.3.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.
Files changed (2) hide show
  1. package/dist/bin.js +7 -2
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -2563,7 +2563,7 @@ function promptInput(question) {
2563
2563
  });
2564
2564
  }
2565
2565
  var PROVIDER_CHOICES = [
2566
- { name: "Claude Code (use my app login \u2014 Pro/Max/Team, no API key)", value: "claude-cli" },
2566
+ { name: "Claude Code \u2014 Use my Claude Code subscription", value: "claude-cli" },
2567
2567
  { name: "Cursor (use my Cursor subscription \u2014 no API key)", value: "cursor" },
2568
2568
  { name: "Anthropic (Claude) \u2014 API key from console.anthropic.com", value: "anthropic" },
2569
2569
  { name: "Google Vertex AI (Claude)", value: "vertex" },
@@ -6565,9 +6565,14 @@ import chalk13 from "chalk";
6565
6565
  async function configCommand() {
6566
6566
  const existing = loadConfig();
6567
6567
  if (existing) {
6568
+ const displayModel = existing.model === "default" && existing.provider === "claude-cli" ? process.env.ANTHROPIC_MODEL || "default (inherited from Claude Code)" : existing.model;
6569
+ const fastModel = getFastModel();
6568
6570
  console.log(chalk13.bold("\nCurrent Configuration\n"));
6569
6571
  console.log(` Provider: ${chalk13.cyan(existing.provider)}`);
6570
- console.log(` Model: ${chalk13.cyan(existing.model)}`);
6572
+ console.log(` Model: ${chalk13.cyan(displayModel)}`);
6573
+ if (fastModel) {
6574
+ console.log(` Scan: ${chalk13.cyan(fastModel)}`);
6575
+ }
6571
6576
  if (existing.apiKey) {
6572
6577
  const masked = existing.apiKey.slice(0, 8) + "..." + existing.apiKey.slice(-4);
6573
6578
  console.log(` API Key: ${chalk13.dim(masked)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
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": {