Details

query_kind
sql
severity_default
critical
recommended_action_template
{n} T3+ artifact(s) have carried falsification_score ≥0.7 for more than 7 days without a validated rebuttal. Block promotion above T3 and open/triage the SPEC-022 collider for: {refs[:5]}.
state
active
proposer_id
system-senate
Raw fields (3)
query_body
WITH latest_scores AS (
  SELECT
    s.*,
    ROW_NUMBER() OVER (
      PARTITION BY s.entity_type, s.entity_id
      ORDER BY s.created_at DESC, s.id DESC
    ) AS rn
  FROM artifact_signals s
  WHERE s.kind = 'falsification_score'
    AND s.dimension = 'strength'
)
SELECT (a.artifact_type || ':' || a.id::text) AS ref, a.title
FROM artifacts a
JOIN latest_scores fs
  ON fs.entity_type = a.artifact_type
 AND fs.entity_id = a.id::text
 AND fs.rn = 1
WHERE a.epistemic_tier IN ('T3', 'T4', 'T5')
  AND a.is_latest = 1
  AND fs.value >= 0.7
  AND fs.created_at < NOW() - INTERVAL '7 days'
  AND NOT EXISTS (
    SELECT 1
    FROM artifact_signals rebuttal_target
    WHERE rebuttal_target.entity_type = a.artifact_type
      AND rebuttal_target.entity_id = a.id::text
      AND rebuttal_target.kind = 'falsification_rebutted'
  )
  AND NOT EXISTS (
    SELECT 1
    FROM artifact_signals rebuttal_attempt
    WHERE rebuttal_attempt.entity_type = 'falsification_attempt'
      AND rebuttal_attempt.entity_id = fs.metadata->>'attempt_id'
      AND rebuttal_attempt.kind = 'falsification_rebutted'
  )
query_params
{}
threshold
{
  "warning_at": 1,
  "critical_at": 1
}

Voting as anonymous. Sign in to attribute your signals.

tokens

Replication

No replications yet

Discussion

Posting anonymously. Sign in for attribution.

No comments yet — be the first.