@rely-ai/caliber 1.1.3 → 1.1.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.
- package/dist/bin.js +4 -4
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -3534,7 +3534,7 @@ function checkBonus(dir) {
|
|
|
3534
3534
|
earnedPoints: hasHooks ? POINTS_HOOKS : 0,
|
|
3535
3535
|
passed: hasHooks,
|
|
3536
3536
|
detail: hookDetail,
|
|
3537
|
-
suggestion: hasHooks ? void 0 : "Run `caliber hooks install`
|
|
3537
|
+
suggestion: hasHooks ? void 0 : "Run `caliber hooks --install` for auto-refresh"
|
|
3538
3538
|
});
|
|
3539
3539
|
const agentsMdExists = existsSync7(join6(dir, "AGENTS.md"));
|
|
3540
3540
|
checks.push({
|
|
@@ -4564,7 +4564,7 @@ async function initCommand(options) {
|
|
|
4564
4564
|
const hookResult = installHook();
|
|
4565
4565
|
if (hookResult.installed) {
|
|
4566
4566
|
console.log(` ${chalk5.green("\u2713")} Claude Code hook installed \u2014 docs update on session end`);
|
|
4567
|
-
console.log(chalk5.dim(" Run ") + chalk5.hex("#83D1EB")("caliber hooks remove") + chalk5.dim(" to disable"));
|
|
4567
|
+
console.log(chalk5.dim(" Run ") + chalk5.hex("#83D1EB")("caliber hooks --remove") + chalk5.dim(" to disable"));
|
|
4568
4568
|
} else if (hookResult.alreadyInstalled) {
|
|
4569
4569
|
console.log(chalk5.dim(" Claude Code hook already installed"));
|
|
4570
4570
|
}
|
|
@@ -4580,7 +4580,7 @@ async function initCommand(options) {
|
|
|
4580
4580
|
const precommitResult = installPreCommitHook();
|
|
4581
4581
|
if (precommitResult.installed) {
|
|
4582
4582
|
console.log(` ${chalk5.green("\u2713")} Pre-commit hook installed \u2014 docs refresh before each commit`);
|
|
4583
|
-
console.log(chalk5.dim(" Run ") + chalk5.hex("#83D1EB")("caliber hooks remove
|
|
4583
|
+
console.log(chalk5.dim(" Run ") + chalk5.hex("#83D1EB")("caliber hooks --remove") + chalk5.dim(" to disable"));
|
|
4584
4584
|
} else if (precommitResult.alreadyInstalled) {
|
|
4585
4585
|
console.log(chalk5.dim(" Pre-commit hook already installed"));
|
|
4586
4586
|
} else {
|
|
@@ -4588,7 +4588,7 @@ async function initCommand(options) {
|
|
|
4588
4588
|
}
|
|
4589
4589
|
}
|
|
4590
4590
|
if (hookChoice === "skip") {
|
|
4591
|
-
console.log(chalk5.dim(" Skipped auto-refresh hooks. Run ") + chalk5.hex("#83D1EB")("caliber hooks install") + chalk5.dim(" later to enable."));
|
|
4591
|
+
console.log(chalk5.dim(" Skipped auto-refresh hooks. Run ") + chalk5.hex("#83D1EB")("caliber hooks --install") + chalk5.dim(" later to enable."));
|
|
4592
4592
|
}
|
|
4593
4593
|
const afterScore = computeLocalScore(process.cwd(), targetAgent);
|
|
4594
4594
|
if (afterScore.score < baselineScore.score) {
|
package/package.json
CHANGED