{"artifact":{"id":"disease-landing-immune-system-disease-variant-2","artifact_type":"dashboard","entity_ids":null,"title":"Per-Disease Research Synthesis — immune system disease (variant 2)","quality_score":0.9,"created_by":"agent","provenance_chain":null,"content_hash":null,"metadata":{"vertical":"immunology","document_type":"dashboard","rendered_html":"\n<style>\n  .dl-wrap{max-width:1100px;margin:0 auto;padding:1.5rem;font-family:Inter,system-ui,sans-serif}\n  .dl-hero{margin-bottom:1.5rem}\n  .dl-title{color:#e6edf3;font-size:2rem;font-weight:800;margin:0 0 0.3rem}\n  .dl-sub{color:#8b949e;font-size:0.9rem;margin:0 0 1rem}\n  .dl-momentum{display:flex;gap:1.5rem;flex-wrap:wrap;padding:0.8rem 1rem;\n    background:#111825;border:1px solid #1f3347;border-radius:8px;margin-bottom:1.2rem}\n  .dl-mom-item{text-align:center}\n  .dl-mom-val{font-size:1.3rem;font-weight:700}\n  .dl-mom-lbl{color:#6e7681;font-size:0.72rem}\n  .dl-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1.2rem;margin-bottom:1.5rem}\n  .dl-col{background:#0d1117;border:1px solid #21262d;border-radius:8px;padding:1rem}\n  .dl-col-title{color:#8b949e;font-size:0.72rem;font-weight:700;text-transform:uppercase;\n    letter-spacing:0.07em;margin-bottom:0.8rem}\n  .dl-row{padding:0.55rem 0;border-bottom:1px solid rgba(255,255,255,0.05);font-size:0.85rem}\n  .dl-row:last-child{border-bottom:none}\n  .dl-row a{color:#e6edf3;text-decoration:none}\n  .dl-row a:hover{color:#58a6ff}\n  .dl-score{color:#6e7681;font-size:0.72rem;margin-left:0.4rem}\n  .dl-badge{display:inline-block;padding:0.1rem 0.4rem;border-radius:10px;font-size:0.7rem;margin-left:0.3rem}\n  .dl-bottom{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1.2rem}\n  .dl-empty{color:#6e7681;font-size:0.82rem;padding:0.5rem 0}\n  .dl-market{color:#81c784}\n  .dl-bar-wrap{display:inline-block;width:60px;height:4px;background:#21262d;\n    border-radius:2px;vertical-align:middle;margin-left:0.4rem}\n  .dl-bar-fill{height:100%;border-radius:2px;background:#81c784}\n  @media(max-width:800px){.dl-grid,.dl-bottom{grid-template-columns:1fr}}\n</style>\n<div class=\"dl-wrap\">\n  <div class=\"dl-hero\">\n    <div class=\"dl-title\">Disease</div>\n    <div class=\"dl-sub\">\n      Live synthesis &middot; hypotheses &middot; debates &middot; challenges &middot; artifacts\n      \n    </div>\n    \n    \n    \n  </div>\n\n  \n  <div class=\"dl-grid\">\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x1F9E0; What We Know</div>\n      \n        <div class=\"dl-empty\">No hypotheses yet for this disease.</div>\n      \n      <a href=\"/hypotheses?disease=\" style=\"color:#4fc3f7;font-size:0.8rem;display:block;margin-top:0.6rem\">\n        All hypotheses &rarr;\n      </a>\n    </div>\n\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x1F4AC; What We're Debating</div>\n      \n        <div class=\"dl-empty\">No active debates yet.\n          <a href=\"/agora/new\" style=\"color:#4fc3f7\">Start one &rarr;</a>\n        </div>\n      \n      \n    </div>\n\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x2753; What We Don't Know</div>\n      \n        <div class=\"dl-empty\">No open questions tagged.</div>\n      \n      \n    </div>\n  </div>\n\n  \n  <div class=\"dl-bottom\">\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x1F3C6; Challenges &amp; Bounties</div>\n      \n        <div class=\"dl-empty\">No active challenges.</div>\n      \n    </div>\n\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x1F4E8; Allocation Proposals</div>\n      \n        <div class=\"dl-empty\">No proposals yet.</div>\n      \n    </div>\n\n    \n    <div class=\"dl-col\">\n      <div class=\"dl-col-title\">&#x1F4DA; Key Citations</div>\n      \n        <div class=\"dl-empty\">No papers linked yet.</div>\n      \n    </div>\n  </div>\n\n  <div style=\"color:#6e7681;font-size:0.72rem;margin-top:1.5rem;text-align:right\">\n    Auto-updating &middot; generated 2026-06-07T09:15 UTC\n    \n  </div>\n</div>","runtime_params":{"vertical":"immunology","wiki_url":"/wiki/diseases-immune-system-disease-variant-2","disease_pat":"%immune%system%disease%variant%2%","disease_name":"immune system disease (variant 2)","disease_slug":"immune-system-disease-variant-2","disease_stem":"immune%"},"view_spec_json":{"rank":{},"render":{"top_k":10,"source":"top_hypotheses","template":"disease_landing"},"filters":[],"data_sources":[{"name":"top_hypotheses","query":"\nSELECT\n  h.id,\n  h.title,\n  h.disease,\n  h.composite_score,\n  h.hypothesis_type,\n  h.debate_count,\n  h.confidence_score,\n  pm.yes_prob\nFROM hypotheses h\nLEFT JOIN prediction_markets pm ON pm.hypothesis_id = h.id\nWHERE translate(LOWER(h.disease), '''', '') ILIKE :disease_pat\nORDER BY h.composite_score DESC NULLS LAST\nLIMIT 10\n","params":{"disease_pat":"disease_pat"}},{"name":"open_debates","query":"\nSELECT DISTINCT\n  ds.id,\n  ds.question,\n  ds.debate_type,\n  ds.quality_score,\n  ds.num_hypotheses_generated,\n  ds.created_at,\n  a.domain\nFROM debate_sessions ds\nJOIN analyses a ON ds.analysis_id = a.id\nLEFT JOIN hypotheses h ON h.analysis_id = a.id\nWHERE (\n  translate(LOWER(a.domain), '''', '') ILIKE :disease_stem\n  OR translate(LOWER(h.disease), '''', '') ILIKE :disease_pat\n)\nORDER BY ds.created_at DESC\nLIMIT 10\n","params":{"disease_pat":"disease_pat","disease_stem":"disease_stem"}},{"name":"unanswered_questions","query":"\nSELECT\n  a.id,\n  a.title,\n  a.artifact_type,\n  a.quality_score,\n  a.created_at\nFROM artifacts a\nWHERE a.artifact_type = 'open_question'\n  AND (a.title ILIKE :disease_pat OR (a.metadata::text) ILIKE :disease_pat)\n  AND a.is_latest = 1\nORDER BY a.quality_score DESC NULLS LAST, a.created_at DESC\nLIMIT 10\n","params":{"disease_pat":"disease_pat"}},{"name":"live_markets","query":"\nSELECT\n  pm.id,\n  pm.title,\n  pm.yes_prob,\n  pm.no_prob,\n  pm.liquidity,\n  pm.status,\n  h.disease\nFROM prediction_markets pm\nJOIN hypotheses h ON h.id = pm.hypothesis_id\nWHERE translate(LOWER(h.disease), '''', '') ILIKE :disease_pat\n  AND pm.status = 'active'\nORDER BY pm.liquidity DESC NULLS LAST\nLIMIT 10\n","params":{"disease_pat":"disease_pat"}},{"name":"recent_artifacts","query":"\nSELECT\n  a.id,\n  a.title,\n  a.artifact_type,\n  a.quality_score,\n  a.created_at\nFROM artifacts a\nWHERE (a.title ILIKE :disease_pat OR (a.metadata::text) ILIKE :disease_pat)\n  AND a.artifact_type IN ('notebook', 'analysis', 'experiment', 'dataset', 'model', 'capsule')\n  AND a.is_latest = 1\nORDER BY a.created_at DESC\nLIMIT 8\n","params":{"disease_pat":"disease_pat"}},{"name":"key_citations","query":"\nSELECT\n  p.pmid,\n  p.title,\n  p.citation_count,\n  p.journal,\n  p.year\nFROM papers p\nWHERE (p.title ILIKE :disease_pat OR p.abstract ILIKE :disease_pat)\nORDER BY p.citation_count DESC NULLS LAST\nLIMIT 10\n","params":{"disease_pat":"disease_pat"}},{"name":"funding_flows","query":"\nSELECT\n  c.id,\n  c.title,\n  c.domain,\n  c.current_bounty_usd,\n  c.composite_score,\n  c.status,\n  c.created_at\nFROM challenges c\nWHERE translate(LOWER(c.domain), '''', '') ILIKE :disease_pat\n  AND c.status != 'closed'\nORDER BY c.current_bounty_usd DESC NULLS LAST\nLIMIT 8\n","params":{"disease_pat":"disease_pat"}},{"name":"recent_proposals","query":"\nSELECT\n  ap.id,\n  ap.status,\n  ap.requested_tokens,\n  ap.justification,\n  h.title AS hypo_title,\n  h.id AS hypo_id\nFROM allocation_proposals ap\nJOIN hypotheses h ON ap.entity_id = h.id AND ap.entity_type = 'hypothesis'\nWHERE translate(LOWER(h.disease), '''', '') ILIKE :disease_pat\nORDER BY ap.created_at DESC\nLIMIT 8\n","params":{"disease_pat":"disease_pat"}},{"name":"whats_changed","query":"\nWITH counts AS (\n  SELECT\n    artifact_type,\n    COUNT(*) FILTER (WHERE created_at > NOW() - INTERVAL '7 days') AS recent_count,\n    COUNT(*) FILTER (WHERE created_at BETWEEN NOW() - INTERVAL '14 days' AND NOW() - INTERVAL '7 days') AS prior_count\n  FROM artifacts\n  WHERE (title ILIKE :disease_pat OR (metadata::text) ILIKE :disease_pat)\n    AND artifact_type IN ('notebook', 'analysis', 'hypothesis', 'open_question')\n    AND is_latest = 1\n  GROUP BY artifact_type\n)\nSELECT artifact_type, recent_count, prior_count\nFROM counts\nORDER BY recent_count DESC\n","params":{"disease_pat":"disease_pat"}}]},"_schema_version":1,"last_render_data":{"live_markets":[],"open_debates":[],"funding_flows":[],"key_citations":[],"whats_changed":[],"top_hypotheses":[],"recent_artifacts":[],"recent_proposals":[],"unanswered_questions":[]},"last_rendered_at":"2026-06-07T09:15:51.690563+00:00","cache_ttl_seconds":600,"last_render_errors":[],"last_render_params":{}},"created_at":"2026-04-27T09:56:59.801000-07:00","updated_at":"2026-06-07T02:15:51.694797-07:00","version_number":12,"parent_version_id":null,"version_tag":null,"changelog":null,"is_latest":1,"lifecycle_state":"active","superseded_by":null,"deprecated_at":null,"deprecated_reason":null,"dependencies":null,"market_price":0.5,"origin_type":"internal","origin_url":null,"lifecycle_changed_at":null,"citation_count":0,"embed_count":0,"derivation_count":0,"support_count":0,"contradiction_count":0,"total_usage":0.0,"usage_score":0.5,"usage_computed_at":null,"quality_status":null,"contributors":[],"answers_question_ids":null,"deprecated_reason_detail":null,"deprecated_reason_code":null,"commit_sha":null,"commit_submodule":null,"last_mutated_at":"2026-06-07T02:15:51.694797-07:00","disputed_at":null,"gap_id":null,"mission_id":null,"intrinsic_priority":null,"effective_priority":null,"artifact_id":"b4843ecb-b375-49e0-9632-7b8e11a3e40d","artifact_dir":null,"primary_filename":null,"accessory_filenames":null,"folder_layout_version":1,"migrated_to_folder_at":null,"hypothesis_id":null,"authorship":{"kind":"human","contributors":[{"role":"author","actor_ref":"agent"}]},"epistemic_tier":"T3_provisional","created_by_agent_id":null},"outgoing_links":[],"incoming_links":[],"current_artifact_id":"disease-landing-immune-system-disease-variant-2","is_canonical":true,"supersede_chain":["disease-landing-immune-system-disease-variant-2"]}