@rely-ai/caliber 1.41.0 → 1.41.1
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 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -2720,7 +2720,8 @@ function isCursorAgentAvailable() {
|
|
|
2720
2720
|
function isCursorLoggedIn() {
|
|
2721
2721
|
try {
|
|
2722
2722
|
const result = execSync5(`${AGENT_BIN} status`, {
|
|
2723
|
-
|
|
2723
|
+
input: "",
|
|
2724
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
2724
2725
|
timeout: 5e3
|
|
2725
2726
|
});
|
|
2726
2727
|
return !result.toString().includes("not logged in");
|
|
@@ -2891,7 +2892,8 @@ function isClaudeCliLoggedIn() {
|
|
|
2891
2892
|
if (cachedLoggedIn !== null) return cachedLoggedIn;
|
|
2892
2893
|
try {
|
|
2893
2894
|
const result = execSync6(`${CLAUDE_CLI_BIN} auth status`, {
|
|
2894
|
-
|
|
2895
|
+
input: "",
|
|
2896
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
2895
2897
|
timeout: 5e3
|
|
2896
2898
|
});
|
|
2897
2899
|
const output = result.toString().trim();
|
package/package.json
CHANGED