@misterhuydo/sentinel 1.4.63 → 1.4.65
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/.hint-lock +1 -1
- package/.cairn/session.json +2 -2
- package/lib/generate.js +2 -2
- package/package.json +1 -1
- package/python/sentinel/config_loader.py +1 -1
package/.cairn/.hint-lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026-03-
|
|
1
|
+
2026-03-25T16:26:53.611Z
|
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-25T16:15:37.097Z",
|
|
3
|
+
"checkpoint_at": "2026-03-25T16:15:37.098Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/lib/generate.js
CHANGED
|
@@ -75,8 +75,8 @@ if [[ "$_claude_pro" != "false" ]]; then
|
|
|
75
75
|
fi
|
|
76
76
|
mkdir -p "$DIR/logs" "$WORKSPACE/logs" "$DIR/workspace/fetched" "$DIR/workspace/patches" "$DIR/issues"
|
|
77
77
|
cd "$DIR"
|
|
78
|
-
# Ensure npm-global bin (cairn-mcp, claude)
|
|
79
|
-
export PATH="$HOME/.npm-global/bin:$PATH"
|
|
78
|
+
# Ensure npm-global bin (cairn-mcp, claude) and ~/.local/bin (auto-installed tools) are on PATH
|
|
79
|
+
export PATH="$HOME/.npm-global/bin:$HOME/.local/bin:$PATH"
|
|
80
80
|
PYTHONPATH="${codeDir}" "${codeDir}/.venv/bin/python3" -m sentinel.main --config ./config \\
|
|
81
81
|
>> "$DIR/logs/sentinel.log" 2>&1 &
|
|
82
82
|
echo $! > "$PID_FILE"
|
package/package.json
CHANGED
|
@@ -245,7 +245,7 @@ class ConfigLoader:
|
|
|
245
245
|
if not r.ssh_key_file:
|
|
246
246
|
auto_key = Path(self.config_dir).parent / f"{r.repo_name}.key"
|
|
247
247
|
if auto_key.exists():
|
|
248
|
-
r.ssh_key_file = str(auto_key)
|
|
248
|
+
r.ssh_key_file = str(auto_key.resolve())
|
|
249
249
|
self.repos[r.repo_name] = r
|
|
250
250
|
|
|
251
251
|
def _register_sighup(self):
|