Skip to content

Instantly share code, notes, and snippets.

@josolnik
josolnik / diagnose_silent_oracle_alerts.py
Created April 28, 2026 18:55
Hypernative oracle agents — silent-firing diagnostic (agents 67845/67846/67847)
#!/usr/bin/env python3
"""Diagnostic script: validate why Hypernative oracle agents 67845/67846/67847
are not firing despite their alert filter conditions being met.
The agents have shown `lastTriggered: None` and 0 alerts delivered since
deploy on 2026-04-24. Hypernative confirmed (2026-04-28) that the original
silence was a sandbox blob exception during `python_processing` variable
extraction. The fix was deployed and verified live — yet the agents still
have not fired. This script exists to localize where in the pipeline
the alerts are getting lost.
def func_retention(x, a, b, c, d):
return a * np.exp(-b * x) - (c * d**x)
def func_conversion(x, a, b, c, d):
return (a * (1 - b)**x) - (c * d**x)