@rely-ai/caliber 1.14.1 → 1.14.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 +18 -0
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -6218,7 +6218,25 @@ async function initCommand(options) {
6218
6218
  { skipSkills: true, forceTargetedFix: true }
6219
6219
  );
6220
6220
  if (polishResult.setup) {
6221
+ const origClaude = generatedSetup.claude;
6222
+ const origCodex = generatedSetup.codex;
6223
+ const origCursor = generatedSetup.cursor;
6221
6224
  generatedSetup = polishResult.setup;
6225
+ const polishedClaude = generatedSetup.claude ?? {};
6226
+ const polishedCodex = generatedSetup.codex ?? {};
6227
+ const polishedCursor = generatedSetup.cursor ?? {};
6228
+ if (origClaude?.skills && !polishedClaude.skills) {
6229
+ polishedClaude.skills = origClaude.skills;
6230
+ generatedSetup.claude = polishedClaude;
6231
+ }
6232
+ if (origCodex?.skills && !polishedCodex.skills) {
6233
+ polishedCodex.skills = origCodex.skills;
6234
+ generatedSetup.codex = polishedCodex;
6235
+ }
6236
+ if (origCursor?.skills && !polishedCursor.skills) {
6237
+ polishedCursor.skills = origCursor.skills;
6238
+ generatedSetup.cursor = polishedCursor;
6239
+ }
6222
6240
  writeSetup(generatedSetup);
6223
6241
  log(options.verbose, "Inline polish applied");
6224
6242
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.14.1",
3
+ "version": "1.14.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": {