@misterhuydo/sentinel 1.0.26 → 1.0.27

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-21T19:49:49.891Z
1
+ 2026-03-21T20:21:02.908Z
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-21T20:00:24.443Z",
3
- "checkpoint_at": "2026-03-21T20:00:24.444Z",
2
+ "message": "Auto-checkpoint at 2026-03-21T20:23:22.007Z",
3
+ "checkpoint_at": "2026-03-21T20:23:22.008Z",
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.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -115,7 +115,7 @@ class ConfigLoader:
115
115
  # Load workspace-level config first (~/sentinel/sentinel.properties),
116
116
  # then overlay per-project config so project values win.
117
117
  d: dict[str, str] = {}
118
- workspace_props = self.config_dir.parent.parent / "sentinel.properties"
118
+ workspace_props = self.config_dir.resolve().parent.parent / "sentinel.properties"
119
119
  if workspace_props.exists():
120
120
  d.update(_parse_properties(str(workspace_props)))
121
121
  logger.debug("Loaded workspace config from %s", workspace_props)
@@ -159,6 +159,8 @@ class ConfigLoader:
159
159
  return
160
160
  self.log_sources = {}
161
161
  for path in sorted(sources_dir.glob("*.properties")):
162
+ if path.name.startswith("_"):
163
+ continue
162
164
  d = _parse_properties(str(path))
163
165
  s = LogSourceConfig()
164
166
  s.name = path.stem
@@ -181,6 +183,8 @@ class ConfigLoader:
181
183
  return
182
184
  self.repos = {}
183
185
  for path in sorted(repos_dir.glob("*.properties")):
186
+ if path.name.startswith("_"):
187
+ continue
184
188
  d = _parse_properties(str(path))
185
189
  r = RepoConfig()
186
190
  r.repo_name = path.stem