@misterhuydo/sentinel 1.4.8 → 1.4.9
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/.cairn/session.json +2 -2
- package/lib/generate.js +37 -19
- package/package.json +1 -1
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-24T15:
|
|
3
|
-
"checkpoint_at": "2026-03-24T15:
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-24T15:25:10.578Z",
|
|
3
|
+
"checkpoint_at": "2026-03-24T15:25:10.579Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/lib/generate.js
CHANGED
|
@@ -49,21 +49,30 @@ fi
|
|
|
49
49
|
pkill -f "sentinel.main --config $DIR/config" 2>/dev/null || true
|
|
50
50
|
rm -f "$PID_FILE"
|
|
51
51
|
|
|
52
|
-
# Check Claude Code authentication
|
|
53
|
-
AUTH_OUT=$(claude --print \"hi\" 2>&1 || true)
|
|
54
|
-
if echo "$AUTH_OUT" | grep -Eqi "not logged in|/login"; then
|
|
55
|
-
echo ""
|
|
56
|
-
echo "[sentinel] Claude Code is not authenticated."
|
|
57
|
-
echo " 1. Open a new terminal and run: claude"
|
|
58
|
-
echo " 2. Type /login at the prompt"
|
|
59
|
-
echo " 3. Open the URL in any browser and log in"
|
|
60
|
-
echo " 4. Type /exit when done"
|
|
61
|
-
echo " 5. Re-run this script"
|
|
62
|
-
echo ""
|
|
63
|
-
exit 1
|
|
64
|
-
fi
|
|
65
|
-
|
|
66
52
|
WORKSPACE="$(dirname "$DIR")"
|
|
53
|
+
|
|
54
|
+
# Check Claude Code authentication — skip if CLAUDE_PRO_FOR_TASKS=false in either config
|
|
55
|
+
_claude_pro=true
|
|
56
|
+
for _conf in "$WORKSPACE/sentinel.properties" "$DIR/config/sentinel.properties"; do
|
|
57
|
+
if [[ -f "$_conf" ]]; then
|
|
58
|
+
_val=$(grep -iE "^CLAUDE_PRO_FOR_TASKS[[:space:]]*=" "$_conf" 2>/dev/null | tail -1 | cut -d= -f2- | tr -d ' ' | tr '[:upper:]' '[:lower:]')
|
|
59
|
+
[[ -n "$_val" ]] && _claude_pro="$_val"
|
|
60
|
+
fi
|
|
61
|
+
done
|
|
62
|
+
if [[ "$_claude_pro" != "false" ]]; then
|
|
63
|
+
AUTH_OUT=$(claude --print \"hi\" 2>&1 || true)
|
|
64
|
+
if echo "$AUTH_OUT" | grep -Eqi "not logged in|/login"; then
|
|
65
|
+
echo ""
|
|
66
|
+
echo "[sentinel] Claude Code is not authenticated."
|
|
67
|
+
echo " 1. Open a new terminal and run: claude"
|
|
68
|
+
echo " 2. Type /login at the prompt"
|
|
69
|
+
echo " 3. Open the URL in any browser and log in"
|
|
70
|
+
echo " 4. Type /exit when done"
|
|
71
|
+
echo " 5. Re-run this script"
|
|
72
|
+
echo ""
|
|
73
|
+
exit 1
|
|
74
|
+
fi
|
|
75
|
+
fi
|
|
67
76
|
mkdir -p "$DIR/logs" "$WORKSPACE/logs" "$DIR/workspace/fetched" "$DIR/workspace/patches" "$DIR/issues"
|
|
68
77
|
cd "$DIR"
|
|
69
78
|
PYTHONPATH="${codeDir}" "${pythonBin}" -m sentinel.main --config ./config \\
|
|
@@ -182,12 +191,21 @@ if [[ -f "$PID_FILE" ]] && kill -0 "$(cat "$PID_FILE")" 2>/dev/null; then
|
|
|
182
191
|
fi
|
|
183
192
|
pkill -f "sentinel.main --config $DIR/config" 2>/dev/null || true
|
|
184
193
|
rm -f "$PID_FILE"
|
|
185
|
-
AUTH_OUT=$(claude --print \"hi\" 2>&1 || true)
|
|
186
|
-
if echo "$AUTH_OUT" | grep -Eqi "not logged in|/login"; then
|
|
187
|
-
echo "[sentinel] Claude Code is not authenticated. Run: claude then /login"
|
|
188
|
-
exit 1
|
|
189
|
-
fi
|
|
190
194
|
WORKSPACE="$(dirname "$DIR")"
|
|
195
|
+
_claude_pro=true
|
|
196
|
+
for _conf in "$WORKSPACE/sentinel.properties" "$DIR/config/sentinel.properties"; do
|
|
197
|
+
if [[ -f "$_conf" ]]; then
|
|
198
|
+
_val=$(grep -iE "^CLAUDE_PRO_FOR_TASKS[[:space:]]*=" "$_conf" 2>/dev/null | tail -1 | cut -d= -f2- | tr -d ' ' | tr '[:upper:]' '[:lower:]')
|
|
199
|
+
[[ -n "$_val" ]] && _claude_pro="$_val"
|
|
200
|
+
fi
|
|
201
|
+
done
|
|
202
|
+
if [[ "$_claude_pro" != "false" ]]; then
|
|
203
|
+
AUTH_OUT=$(claude --print \"hi\" 2>&1 || true)
|
|
204
|
+
if echo "$AUTH_OUT" | grep -Eqi "not logged in|/login"; then
|
|
205
|
+
echo "[sentinel] Claude Code is not authenticated. Run: claude then /login"
|
|
206
|
+
exit 1
|
|
207
|
+
fi
|
|
208
|
+
fi
|
|
191
209
|
mkdir -p "$DIR/logs" "$WORKSPACE/logs" "$DIR/workspace/fetched" "$DIR/workspace/patches" "$DIR/issues"
|
|
192
210
|
cd "$DIR"
|
|
193
211
|
PYTHONPATH="__CODE_DIR__" "__PYTHON_BIN__" -m sentinel.main --config ./config \
|