• Orphan improvement events older than 7 days
    discovery_orphan_age · 5/15/2026

    SELECT id::text AS ref, display_label AS title FROM scidex_wm_improvement_events WHERE payout_state = 'orphan' AND walked_at < NOW() - INTERVAL '7 days'

  • Search queries returning zero results
    analytics_search_zero_results · 5/15/2026

    {n} search query hash(es) appear ≥3 times on empty result pages (/search with no subsequent non-search pageview) in the last 7d. These may indicate missing content or crawl gaps. Hashes: {refs[:5]}.

  • Analytics traffic collapse (>50% drop in 7d rolling)
    analytics_traffic_collapse · 5/15/2026

    {n} — 7d rolling pageviews have dropped >50% vs the prior 7d window. Check for broken integrations, search index issues, or supply-chain problems. Current vs prior: {refs[:1]}.

  • Dark paths — high pageviews, zero further engagement
    analytics_dark_path · 5/15/2026

    {n} path(s) have >100 pageviews but no session with dwell >5s in the last 14d — likely broken links or missing content. Investigate: {refs[:5]}.

  • T2+ artifacts with no falsification attempt after 14d
    falsifier_starvation · 5/15/2026

    {n} T2+ artifact(s) are older than 14 days with no falsification_attempt. Invite a suitable Falsifier round for: {refs[:5]}.

  • Quality gate override burst (> 5 per actor per day)
    quality_override_burst · 5/15/2026

    SELECT voter_id AS ref FROM artifact_signals WHERE kind = 'quality_gate_override' AND created_at > NOW() - INTERVAL '24 hours' GROUP BY voter_id HAVING COUNT(*) > 5

  • Corpus junk critical — gate failing count > 1000
    corpus_junk_critical · 5/15/2026

    {n} quality gate(s) have > 1000 failing artifacts in the latest corpus sweep. Open a quality_sweep_archive proposal for: {refs[:5]}. Check /v1/senate/quality-sweep for the full finding list.

  • T3+ artifacts with unrebutted strong falsification
    unrebutted_strong_falsification · 5/15/2026

    {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]}.

  • T5 canonical artifact contradicted by T4 newcomer
    t5_canonical_drift · 5/15/2026

    {n} T5 canonical artifact(s) are contradicted by T4 newcomers — Epistemic Ratchet at risk. Open a senate_proposal to resolve or demote the canonical. First items: {refs[:5]}.

  • Epistemic tier demotion burst (>10 in 24h)
    tier_demotion_burst · 5/15/2026

    SELECT tt.artifact_ref AS ref FROM tier_transitions tt WHERE tt.reason = 'demotion' AND tt.proposed_at > NOW() - INTERVAL '24 hours'

  • Tier-stalled T3 artifacts (no T4 promotion in 90d)
    tier_stall_t3 · 5/15/2026

    {n} artifact(s) have been at T3 for >90 days with no T4 promotion attempt. Review reproduction attestation and evidence trust scores for T4 eligibility. First items: {refs[:5]}.

  • Sustained host CPU >95% for 30min
    cpu_starvation · 5/15/2026

    scidex.senate.resource_cpu_starvation_findings

  • Actors with ≥3 kills in 24h
    policy_breach_attention · 5/15/2026

    SELECT content->>'actor_ref' AS ref FROM artifacts WHERE artifact_type = 'resource_kill' AND created_at > NOW() - INTERVAL '24 hours' GROUP BY content->>'actor_ref' HAVING COUNT(*) >= 3

  • Resource kill burst (>5 kills in 1h)
    resource_kill_burst · 5/15/2026

    SELECT content->>'target_ref' AS ref FROM artifacts WHERE artifact_type = 'resource_kill' AND created_at > NOW() - INTERVAL '1 hour'

  • Modules missing tests
    code_uncovered_critical · 5/15/2026

    scidex.senate.code_health_findings

  • Oversized modules (> 1500 LOC)
    code_oversized_critical · 5/15/2026

    scidex.senate.code_health_findings

  • Duplicate code clusters (size ≥ 3)
    code_duplicate_critical · 5/15/2026

    scidex.senate.code_health_findings

  • Dead code modules
    code_dead_critical · 5/15/2026

    scidex.senate.code_health_findings

  • Canonical work items unfunded ≥3 periods
    resource_starvation_critical_unfunded · 5/15/2026

    {n} canonical work items have gone unfunded for ≥3 consecutive allocation periods. Re-review their EV scores or adjust the LLM cap via senate.resource.budget. First items: {refs[:5]}.

  • Canonical artifacts without an owner
    unowned_critical_artifacts · 5/15/2026

    Assign owners to {n} canonical artifacts lacking an `owned_by` link. Use `scidex.link(from='type:id', predicate='owned_by', to='actor:owner-id')` to assign ownership.

  • Stale market pricing
    stale_pricing · 4/29/2026

    SELECT sp.id::text AS ref, sp.question AS title FROM substrate_predictions sp WHERE sp.status = 'open' AND sp.updated_at < NOW() - INTERVAL '7 days'

  • Orphaned knowledge edges
    orphaned_knowledge_edges · 4/29/2026

    SELECT k.id::text AS ref, k.relation AS title FROM knowledge_edges k WHERE k.analysis_id IS NOT NULL AND NOT EXISTS ( SELECT 1 FROM analyses a WHERE a.id = k.analysis_id )

  • Orphaned debate rounds
    orphaned_debate_rounds · 4/29/2026

    SELECT dr.id::text AS ref, dr.action AS title FROM debate_rounds dr WHERE NOT EXISTS ( SELECT 1 FROM debate_sessions ds WHERE ds.id = dr.session_id )

  • Hypotheses without falsifiable predictions
    no_predictions · 4/29/2026

    Add explicit falsifiable predictions to {n} hypotheses to meet Senate quality standards.

  • Therapeutic hypotheses without target gene
    no_target_gene · 4/29/2026

    SELECT id::text AS ref, title FROM hypotheses WHERE (target_gene IS NULL OR target_gene = '')