@rely-ai/caliber 1.32.0-dev.1774815754 → 1.32.0-dev.1774817730
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 -3
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -9587,12 +9587,12 @@ async function initCommand(options) {
|
|
|
9587
9587
|
const detected = detectAgents(process.cwd());
|
|
9588
9588
|
if (detected.length > 0 && (options.autoApprove || firstRun)) {
|
|
9589
9589
|
targetAgent = detected;
|
|
9590
|
-
console.log(chalk14.dim(`
|
|
9590
|
+
console.log(chalk14.dim(` Coding agents in this repo: ${detected.join(", ")}
|
|
9591
9591
|
`));
|
|
9592
9592
|
} else if (detected.length > 0) {
|
|
9593
|
-
console.log(chalk14.dim(`
|
|
9593
|
+
console.log(chalk14.dim(` Coding agents in this repo: ${detected.join(", ")}
|
|
9594
9594
|
`));
|
|
9595
|
-
const useDetected = await confirm2({ message: "
|
|
9595
|
+
const useDetected = await confirm2({ message: "Generate configs for these agents?" });
|
|
9596
9596
|
targetAgent = useDetected ? detected : await promptAgent();
|
|
9597
9597
|
} else {
|
|
9598
9598
|
targetAgent = options.autoApprove ? ["claude"] : await promptAgent();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "1.32.0-dev.
|
|
3
|
+
"version": "1.32.0-dev.1774817730",
|
|
4
4
|
"description": "AI context infrastructure for coding agents — keeps CLAUDE.md, Cursor rules, and skills in sync as your codebase evolves",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|