@rely-ai/caliber 1.12.5 → 1.12.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 +3 -2
  2. package/package.json +5 -5
package/dist/bin.js CHANGED
@@ -1843,8 +1843,9 @@ Only include items you're confident about. Return ONLY the JSON object.`;
1843
1843
  async function detectProjectStack(fileTree, fileContents) {
1844
1844
  const parts = ["Analyze this project and detect languages, frameworks, and external tools/services.\n"];
1845
1845
  if (fileTree.length > 0) {
1846
- parts.push("File tree:");
1847
- parts.push(fileTree.join("\n"));
1846
+ const cappedTree = fileTree.slice(0, 500);
1847
+ parts.push(`File tree (${cappedTree.length}/${fileTree.length} entries):`);
1848
+ parts.push(cappedTree.join("\n"));
1848
1849
  }
1849
1850
  if (Object.keys(fileContents).length > 0) {
1850
1851
  parts.push("\nDependency file contents:");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.12.5",
3
+ "version": "1.12.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": {
@@ -14,17 +14,17 @@
14
14
  "test:coverage": "vitest run --coverage"
15
15
  },
16
16
  "dependencies": {
17
- "@anthropic-ai/sdk": "^0.39.0",
18
- "@anthropic-ai/vertex-sdk": "^0.7.0",
17
+ "@anthropic-ai/sdk": "^0.78.0",
18
+ "@anthropic-ai/vertex-sdk": "^0.14.4",
19
19
  "@inquirer/checkbox": "^5.1.0",
20
20
  "@inquirer/confirm": "^6.0.8",
21
21
  "@inquirer/select": "^5.1.0",
22
22
  "chalk": "^5.4.0",
23
23
  "commander": "^13.0.0",
24
24
  "diff": "^8.0.3",
25
- "glob": "^11.0.0",
25
+ "glob": "^13.0.6",
26
26
  "google-auth-library": "^9.0.0",
27
- "openai": "^4.0.0",
27
+ "openai": "^6.29.0",
28
28
  "ora": "^8.1.0",
29
29
  "posthog-node": "^5.28.2"
30
30
  },