@misterhuydo/sentinel 1.4.85 → 1.4.86

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-27T03:42:45.385Z
1
+ 2026-03-27T05:10:33.256Z
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-27T03:40:21.932Z",
3
- "checkpoint_at": "2026-03-27T03:40:21.934Z",
2
+ "message": "Auto-checkpoint at 2026-03-27T05:09:05.068Z",
3
+ "checkpoint_at": "2026-03-27T05:09:05.069Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.4.85",
3
+ "version": "1.4.86",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -1768,15 +1768,17 @@ async def _run_tool(name: str, inputs: dict, cfg_loader, store, slack_client=Non
1768
1768
  try:
1769
1769
  content = f.read_text(encoding="utf-8", errors="replace")
1770
1770
  content_lower = content.lower()
1771
- # Check if TARGET_REPO line matches (e.g. "TARGET_REPO=1881-SSOLoginWebApp")
1771
+ # Check if TARGET_REPO header matches files use "TARGET_REPO: value" (colon)
1772
+ # but also support "TARGET_REPO=value" (equals) for compatibility
1772
1773
  for line in content.splitlines():
1773
- if line.strip().upper().startswith("TARGET_REPO="):
1774
- repo_val = line.split("=", 1)[1].strip().lower()
1775
- if keyword in repo_val:
1774
+ if line.strip().upper().startswith("TARGET_REPO"):
1775
+ # split on first : or = to get the value
1776
+ repo_val = line.split(":", 1)[-1].split("=", 1)[-1].strip().lower()
1777
+ if keyword.lower() in repo_val:
1776
1778
  repo_matched.append(f)
1777
1779
  break
1778
1780
  else:
1779
- if keyword in content_lower:
1781
+ if keyword.lower() in content_lower:
1780
1782
  content_matched.append(f)
1781
1783
  except OSError:
1782
1784
  pass