@rely-ai/caliber 1.20.0-dev.1773686790 → 1.20.0-dev.1773687255
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 +3 -5
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -7165,12 +7165,10 @@ async function promptAgent() {
|
|
|
7165
7165
|
async function promptHookType(targetAgent) {
|
|
7166
7166
|
const choices = [];
|
|
7167
7167
|
const hasClaude = targetAgent.includes("claude");
|
|
7168
|
+
choices.push({ name: "Git pre-commit hook \u2014 refresh before each commit (recommended)", value: "precommit" });
|
|
7168
7169
|
if (hasClaude) {
|
|
7169
|
-
choices.push({ name: "Claude Code hook
|
|
7170
|
-
|
|
7171
|
-
choices.push({ name: "Git pre-commit hook (refresh before each commit)", value: "precommit" });
|
|
7172
|
-
if (hasClaude) {
|
|
7173
|
-
choices.push({ name: "Both (Claude Code + pre-commit)", value: "both" });
|
|
7170
|
+
choices.push({ name: "Claude Code hook \u2014 auto-refresh on session end", value: "claude" });
|
|
7171
|
+
choices.push({ name: "Both (pre-commit + Claude Code)", value: "both" });
|
|
7174
7172
|
}
|
|
7175
7173
|
choices.push({ name: "Skip for now", value: "skip" });
|
|
7176
7174
|
return select5({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "1.20.0-dev.
|
|
3
|
+
"version": "1.20.0-dev.1773687255",
|
|
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": {
|