@misterhuydo/sentinel 1.4.38 → 1.4.39

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-25T07:20:08.738Z
1
+ 2026-03-25T07:51:06.248Z
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-25T07:35:25.214Z",
3
- "checkpoint_at": "2026-03-25T07:35:25.219Z",
2
+ "message": "Auto-checkpoint at 2026-03-25T08:01:16.107Z",
3
+ "checkpoint_at": "2026-03-25T08:01:16.109Z",
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.38",
3
+ "version": "1.4.39",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -257,6 +257,9 @@ def notify_fix_applied(
257
257
 
258
258
  if submitter_user_id:
259
259
  slack_dm(cfg.slack_bot_token, submitter_user_id, slack_text)
260
+ # Also mention them in the channel
261
+ channel_text = f"<@{submitter_user_id}> {slack_text}"
262
+ slack_alert(cfg.slack_bot_token, cfg.slack_channel, channel_text)
260
263
  else:
261
264
  slack_alert(cfg.slack_bot_token, cfg.slack_channel, slack_text)
262
265