@misterhuydo/sentinel 1.4.62 → 1.4.64

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 CHANGED
@@ -1 +1 @@
1
- 2026-03-25T13:53:46.873Z
1
+ 2026-03-25T15:25:43.876Z
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-25T14:15:51.170Z",
3
- "checkpoint_at": "2026-03-25T14:15:51.171Z",
2
+ "message": "Auto-checkpoint at 2026-03-25T15:45:16.516Z",
3
+ "checkpoint_at": "2026-03-25T15:45:16.517Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/lib/generate.js CHANGED
@@ -75,8 +75,10 @@ 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) is on PATH for background process
79
+ export PATH="$HOME/.npm-global/bin:$PATH"
78
80
  PYTHONPATH="${codeDir}" "${codeDir}/.venv/bin/python3" -m sentinel.main --config ./config \\
79
- > "$DIR/logs/sentinel.log" 2>&1 &
81
+ >> "$DIR/logs/sentinel.log" 2>&1 &
80
82
  echo $! > "$PID_FILE"
81
83
  echo "[sentinel] ${name} started (PID $!)"
82
84
  echo " project log : $DIR/logs/sentinel.log"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.4.62",
3
+ "version": "1.4.64",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -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):