Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bd18e1a9a |
145
gateway/builtin_hooks/crisis_notify.py
Normal file
145
gateway/builtin_hooks/crisis_notify.py
Normal file
@@ -0,0 +1,145 @@
|
||||
"""Built-in crisis notification hook — detect crisis events and alert humans.
|
||||
|
||||
Fires on agent:end events. Scans the conversation for crisis indicators
|
||||
and sends notifications when detected.
|
||||
|
||||
Events: agent:end
|
||||
"""
|
||||
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import time
|
||||
from pathlib import Path
|
||||
|
||||
logger = logging.getLogger("hooks.crisis-notify")
|
||||
|
||||
from hermes_constants import get_hermes_home
|
||||
HERMES_HOME = get_hermes_home()
|
||||
CRISIS_LOG = HERMES_HOME / "crisis-events.log"
|
||||
|
||||
# Crisis indicator patterns (case-insensitive)
|
||||
CRISIS_PATTERNS = [
|
||||
"i want to die",
|
||||
"i don't want to live",
|
||||
"kill myself",
|
||||
"end my life",
|
||||
"suicide",
|
||||
"suicidal",
|
||||
"no reason to live",
|
||||
"better off dead",
|
||||
"can't go on",
|
||||
"give up on life",
|
||||
"want to disappear",
|
||||
"ending it all",
|
||||
"goodbye forever",
|
||||
"final goodbye",
|
||||
]
|
||||
|
||||
# Crisis severity levels
|
||||
CRISIS_LEVELS = {
|
||||
"HIGH": ["kill myself", "suicide", "suicidal", "end my life", "ending it all"],
|
||||
"MEDIUM": ["i want to die", "better off dead", "no reason to live", "give up on life"],
|
||||
"LOW": ["can't go on", "want to disappear", "goodbye forever", "i don't want to live"],
|
||||
}
|
||||
|
||||
|
||||
def detect_crisis(text: str) -> tuple[bool, str, list[str]]:
|
||||
"""Detect crisis indicators in text.
|
||||
|
||||
Returns (is_crisis, severity, matched_patterns).
|
||||
"""
|
||||
if not text:
|
||||
return False, "", []
|
||||
|
||||
text_lower = text.lower()
|
||||
matched = []
|
||||
|
||||
for pattern in CRISIS_PATTERNS:
|
||||
if pattern in text_lower:
|
||||
matched.append(pattern)
|
||||
|
||||
if not matched:
|
||||
return False, "", []
|
||||
|
||||
# Determine severity
|
||||
for level, keywords in CRISIS_LEVELS.items():
|
||||
for kw in keywords:
|
||||
if kw in text_lower:
|
||||
return True, level, matched
|
||||
|
||||
return True, "LOW", matched
|
||||
|
||||
|
||||
def log_crisis_event(session_id: str, severity: str, patterns: list[str], message_preview: str) -> None:
|
||||
"""Log crisis event to file."""
|
||||
try:
|
||||
event = {
|
||||
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S"),
|
||||
"session_id": session_id,
|
||||
"severity": severity,
|
||||
"patterns": patterns,
|
||||
"message_preview": message_preview[:200],
|
||||
}
|
||||
with open(CRISIS_LOG, "a") as f:
|
||||
f.write(json.dumps(event) + "\n")
|
||||
logger.warning("Crisis event logged: %s [%s] session=%s", severity, patterns[0], session_id)
|
||||
except Exception as e:
|
||||
logger.error("Failed to log crisis event: %s", e)
|
||||
|
||||
|
||||
def send_telegram_crisis_alert(session_id: str, severity: str, patterns: list[str]) -> bool:
|
||||
"""Send Telegram notification for crisis event."""
|
||||
token = os.getenv("ALERT_TELEGRAM_TOKEN", "") or os.getenv("TELEGRAM_BOT_TOKEN", "")
|
||||
chat_id = os.getenv("ALERT_TELEGRAM_CHAT_ID", "") or os.getenv("CRISIS_ALERT_CHAT_ID", "")
|
||||
|
||||
if not token or not chat_id:
|
||||
logger.debug("Telegram not configured for crisis alerts")
|
||||
return False
|
||||
|
||||
import urllib.request
|
||||
import urllib.parse
|
||||
|
||||
emoji = {"HIGH": "\U0001f6a8", "MEDIUM": "\u26a0\ufe0f", "LOW": "\U0001f4c8"}.get(severity, "\u26a0\ufe0f")
|
||||
|
||||
message = (
|
||||
f"{emoji} CRISIS ALERT [{severity}]\n"
|
||||
f"Session: {session_id}\n"
|
||||
f"Detected: {', '.join(patterns[:3])}\n"
|
||||
f"Action: Check session immediately"
|
||||
)
|
||||
|
||||
url = f"https://api.telegram.org/bot{token}/sendMessage"
|
||||
data = urllib.parse.urlencode({"chat_id": chat_id, "text": message}).encode()
|
||||
|
||||
try:
|
||||
req = urllib.request.Request(url, data=data, method="POST")
|
||||
with urllib.request.urlopen(req, timeout=10) as resp:
|
||||
result = json.loads(resp.read())
|
||||
return result.get("ok", False)
|
||||
except Exception as e:
|
||||
logger.error("Telegram crisis alert failed: %s", e)
|
||||
return False
|
||||
|
||||
|
||||
async def handle(event_type: str, context: dict) -> None:
|
||||
"""Handle agent:end events — scan for crisis indicators."""
|
||||
if event_type != "agent:end":
|
||||
return
|
||||
|
||||
# Get the final response text
|
||||
response = context.get("response", "") or context.get("final_response", "")
|
||||
user_message = context.get("user_message", "") or context.get("message", "")
|
||||
session_id = context.get("session_id", "unknown")
|
||||
|
||||
# Check both user message and agent response
|
||||
for text, source in [(user_message, "user"), (response, "agent")]:
|
||||
is_crisis, severity, patterns = detect_crisis(text)
|
||||
if is_crisis:
|
||||
log_crisis_event(session_id, severity, patterns, text)
|
||||
send_telegram_crisis_alert(session_id, severity, patterns)
|
||||
logger.warning(
|
||||
"CRISIS DETECTED [%s] from %s in session %s: %s",
|
||||
severity, source, session_id, patterns[:2],
|
||||
)
|
||||
break # Only alert once per event
|
||||
@@ -66,6 +66,20 @@ class HookRegistry:
|
||||
except Exception as e:
|
||||
print(f"[hooks] Could not load built-in boot-md hook: {e}", flush=True)
|
||||
|
||||
# Crisis notification hook — detect crisis events and alert humans
|
||||
try:
|
||||
from gateway.builtin_hooks.crisis_notify import handle as crisis_handle
|
||||
|
||||
self._handlers.setdefault("agent:end", []).append(crisis_handle)
|
||||
self._loaded_hooks.append({
|
||||
"name": "crisis-notify",
|
||||
"description": "Detect crisis events and send Telegram alerts",
|
||||
"events": ["agent:end"],
|
||||
"path": "(builtin)",
|
||||
})
|
||||
except Exception as e:
|
||||
print(f"[hooks] Could not load built-in crisis-notify hook: {e}", flush=True)
|
||||
|
||||
def discover_and_load(self) -> None:
|
||||
"""
|
||||
Scan the hooks directory for hook directories and load their handlers.
|
||||
|
||||
@@ -72,12 +72,6 @@ def cron_list(show_all: bool = False):
|
||||
deliver = [deliver]
|
||||
deliver_str = ", ".join(deliver)
|
||||
|
||||
model = job.get("model")
|
||||
provider = job.get("provider")
|
||||
model_str = ""
|
||||
if model:
|
||||
model_str = f" @ {provider}/{model}" if provider else f" @ {model}"
|
||||
|
||||
skills = job.get("skills") or ([job["skill"]] if job.get("skill") else [])
|
||||
if state == "paused":
|
||||
status = color("[paused]", Colors.YELLOW)
|
||||
@@ -174,8 +168,6 @@ def cron_create(args):
|
||||
skill=getattr(args, "skill", None),
|
||||
skills=_normalize_skills(getattr(args, "skill", None), getattr(args, "skills", None)),
|
||||
script=getattr(args, "script", None),
|
||||
model=getattr(args, "model", None),
|
||||
provider=getattr(args, "provider", None),
|
||||
)
|
||||
if not result.get("success"):
|
||||
print(color(f"Failed to create job: {result.get('error', 'unknown error')}", Colors.RED))
|
||||
@@ -188,10 +180,6 @@ def cron_create(args):
|
||||
job_data = result.get("job", {})
|
||||
if job_data.get("script"):
|
||||
print(f" Script: {job_data['script']}")
|
||||
if job_data.get("model"):
|
||||
provider = job_data.get("provider", "")
|
||||
model_str = f"{provider}/{job_data['model']}" if provider else job_data["model"]
|
||||
print(f" Model: {model_str}")
|
||||
print(f" Next run: {result['next_run_at']}")
|
||||
return 0
|
||||
|
||||
@@ -229,8 +217,6 @@ def cron_edit(args):
|
||||
deliver=getattr(args, "deliver", None),
|
||||
repeat=getattr(args, "repeat", None),
|
||||
skills=final_skills,
|
||||
model=getattr(args, "model", None),
|
||||
provider=getattr(args, "provider", None),
|
||||
script=getattr(args, "script", None),
|
||||
)
|
||||
if not result.get("success"):
|
||||
|
||||
71
tests/test_crisis_notify.py
Normal file
71
tests/test_crisis_notify.py
Normal file
@@ -0,0 +1,71 @@
|
||||
"""Tests for crisis notification hook."""
|
||||
|
||||
import json
|
||||
import pytest
|
||||
import sys
|
||||
import tempfile
|
||||
from pathlib import Path
|
||||
|
||||
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
|
||||
|
||||
from gateway.builtin_hooks.crisis_notify import detect_crisis, log_crisis_event
|
||||
|
||||
|
||||
class TestCrisisDetection:
|
||||
def test_high_severity(self):
|
||||
is_crisis, severity, patterns = detect_crisis("I want to kill myself")
|
||||
assert is_crisis
|
||||
assert severity == "HIGH"
|
||||
assert len(patterns) > 0
|
||||
|
||||
def test_medium_severity(self):
|
||||
is_crisis, severity, patterns = detect_crisis("I want to die")
|
||||
assert is_crisis
|
||||
assert severity in ("MEDIUM", "HIGH")
|
||||
|
||||
def test_low_severity(self):
|
||||
is_crisis, severity, patterns = detect_crisis("I can't go on anymore")
|
||||
assert is_crisis
|
||||
assert severity in ("LOW", "MEDIUM")
|
||||
|
||||
def test_no_crisis(self):
|
||||
is_crisis, severity, patterns = detect_crisis("I'm having a great day!")
|
||||
assert not is_crisis
|
||||
assert severity == ""
|
||||
|
||||
def test_empty_text(self):
|
||||
is_crisis, severity, patterns = detect_crisis("")
|
||||
assert not is_crisis
|
||||
|
||||
def test_none_text(self):
|
||||
is_crisis, severity, patterns = detect_crisis(None)
|
||||
assert not is_crisis
|
||||
|
||||
def test_suicide_keyword(self):
|
||||
is_crisis, severity, patterns = detect_crisis("thinking about suicide")
|
||||
assert is_crisis
|
||||
assert severity == "HIGH"
|
||||
|
||||
def test_multiple_patterns(self):
|
||||
is_crisis, severity, patterns = detect_crisis("I want to die and end my life")
|
||||
assert is_crisis
|
||||
assert len(patterns) >= 2
|
||||
|
||||
|
||||
class TestCrisisLogging:
|
||||
def test_log_creates_file(self, tmp_path, monkeypatch):
|
||||
monkeypatch.setattr("gateway.builtin_hooks.crisis_notify.CRISIS_LOG", tmp_path / "crisis.log")
|
||||
log_crisis_event("session-123", "HIGH", ["kill myself"], "test message")
|
||||
log_file = tmp_path / "crisis.log"
|
||||
assert log_file.exists()
|
||||
content = log_file.read_text()
|
||||
data = json.loads(content.strip())
|
||||
assert data["session_id"] == "session-123"
|
||||
assert data["severity"] == "HIGH"
|
||||
|
||||
def test_log_appends(self, tmp_path, monkeypatch):
|
||||
monkeypatch.setattr("gateway.builtin_hooks.crisis_notify.CRISIS_LOG", tmp_path / "crisis.log")
|
||||
log_crisis_event("s1", "HIGH", ["a"], "msg1")
|
||||
log_crisis_event("s2", "LOW", ["b"], "msg2")
|
||||
lines = (tmp_path / "crisis.log").read_text().strip().split("\n")
|
||||
assert len(lines) == 2
|
||||
@@ -1,73 +0,0 @@
|
||||
"""Tests for cron model/provider config preservation (#222)."""
|
||||
|
||||
import json
|
||||
import pytest
|
||||
from unittest.mock import patch, MagicMock
|
||||
|
||||
|
||||
def test_create_job_preserves_model_and_provider():
|
||||
"""create_job should store model and provider in the job dict."""
|
||||
from cron.jobs import create_job, load_jobs, save_jobs
|
||||
import tempfile, os
|
||||
|
||||
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
|
||||
json.dump([], f)
|
||||
tmp_path = f.name
|
||||
|
||||
try:
|
||||
with patch("cron.jobs._JOBS_FILE", tmp_path):
|
||||
job = create_job(
|
||||
schedule="0 * * * *",
|
||||
prompt="test prompt",
|
||||
model="xiaomi/mimo-v2-pro",
|
||||
provider="nous",
|
||||
)
|
||||
assert job["model"] == "xiaomi/mimo-v2-pro"
|
||||
assert job["provider"] == "nous"
|
||||
|
||||
# Verify persisted
|
||||
jobs = load_jobs()
|
||||
assert jobs[0]["model"] == "xiaomi/mimo-v2-pro"
|
||||
assert jobs[0]["provider"] == "nous"
|
||||
finally:
|
||||
os.unlink(tmp_path)
|
||||
|
||||
|
||||
def test_update_job_preserves_model():
|
||||
"""update_job should preserve model/provider when updating other fields."""
|
||||
from cron.jobs import create_job, update_job
|
||||
|
||||
with patch("cron.jobs._JOBS_FILE", "/tmp/test_cron_jobs.json"):
|
||||
import os
|
||||
if os.path.exists("/tmp/test_cron_jobs.json"):
|
||||
os.unlink("/tmp/test_cron_jobs.json")
|
||||
|
||||
job = create_job(
|
||||
schedule="0 * * * *",
|
||||
prompt="test",
|
||||
model="xiaomi/mimo-v2-pro",
|
||||
provider="nous",
|
||||
)
|
||||
# Update prompt — model should be preserved
|
||||
updated = update_job(job["id"], {"prompt": "new prompt"})
|
||||
assert updated["model"] == "xiaomi/mimo-v2-pro"
|
||||
assert updated["provider"] == "nous"
|
||||
assert updated["prompt"] == "new prompt"
|
||||
|
||||
os.unlink("/tmp/test_cron_jobs.json")
|
||||
|
||||
|
||||
def test_create_job_without_model_is_none():
|
||||
"""create_job without model/provider should store None."""
|
||||
from cron.jobs import create_job
|
||||
|
||||
with patch("cron.jobs._JOBS_FILE", "/tmp/test_cron_none.json"):
|
||||
import os
|
||||
if os.path.exists("/tmp/test_cron_none.json"):
|
||||
os.unlink("/tmp/test_cron_none.json")
|
||||
|
||||
job = create_job(schedule="0 * * * *", prompt="test")
|
||||
assert job["model"] is None
|
||||
assert job["provider"] is None
|
||||
|
||||
os.unlink("/tmp/test_cron_none.json")
|
||||
Reference in New Issue
Block a user