Premera Study Guide

Focused preparation for Day 1 at Premera. You're being hired as an AI engineering expert for auto-authorization and appeals. Show up knowing the landscape.

Created: 2026-02-13 Context: Premera engagement — $150/h, ~40h/week, 3-6 months. Scope: (1) scale auto-auth from 6 conditions to hundreds of medical policies, (2) build appeals AI going into production March 1st.


How Auto-Auth and Appeals Map to the PA Framework

                        PRIOR AUTHORIZATION LIFECYCLE
                        ============================

  PROVIDER SUBMITS REQUEST
           │
           ▼
  ┌─────────────────────────────┐
  │   COVERAGE CHECK (CRD)      │  ← "Does this need PA?"
  │   • CPT/HCPCS code lookup   │    Da Vinci CRD
  │   • Benefit verification    │    Facets (Premera's admin system)
  │   • Line of business rules  │
  └──────────┬──────────────────┘
             │
             ▼
  ┌─────────────────────────────┐
  │   DOCUMENTATION (DTR)       │  ← "What evidence do we need?"
  │   • Clinical note parsing   │    FHIR Questionnaires
  │   • Lab/imaging extraction  │    InterQual criteria mapping
  │   • Structured data capture │    Medical policy requirements
  └──────────┬──────────────────┘
             │
             ▼
  ┌─────────────────────────────────────────────────────────┐
  │   AUTO-AUTHORIZATION ENGINE                              │  ◄── SCOPE AREA 1
  │                                                          │
  │   Rules Engine (MCG AutoAuth / InterQual AutoReview)     │
  │     • Evaluate structured criteria                       │
  │     • Check: age, LOB, diagnosis, procedure, history     │
  │     • Match clinical data → medical policy criteria      │
  │                                                          │
  │   GenAI Layer (what DaisyAI builds)                      │
  │     • Parse unstructured clinical notes → structured     │
  │     • Handle incomplete documentation                    │
  │     • Evidence highlighting for reviewers                │
  │     • Edge case reasoning support                        │
  │                                                          │
  │   Decision:                                              │
  │     ✅ Criteria met → AUTO-APPROVE (immediate)           │
  │     ⏳ Incomplete → Request more docs                    │
  │     👩‍⚕️ Not clear → Route to nurse reviewer queue        │
  │     ❌ NEVER auto-deny                                   │
  └──────────┬──────────────────────────────────────────────┘
             │
     (If denied after human review)
             │
             ▼
  ┌─────────────────────────────────────────────────────────┐
  │   APPEALS PROCESSING                                     │  ◄── SCOPE AREA 2
  │                                                          │
  │   Intake & Triage                                        │
  │     • Classify appeal type (pre-service, post-service)   │
  │     • Auto-route by clinical domain                      │
  │     • SLA clock starts (30 days / 72 hours expedited)    │
  │                                                          │
  │   Document Parsing (HIGH VALUE — AI)                     │
  │     • OCR faxed PDFs, scanned records                    │
  │     • Extract: diagnoses, procedures, meds, labs         │
  │     • AI-generated appeal letters are getting better     │
  │       (Waystar: 40% more overturns, 90% faster)          │
  │                                                          │
  │   ★ New Information Detection (HIGHEST VALUE — AI)       │
  │     • Semantic diff: original submission vs appeal docs  │
  │     • Threshold question: "Did provider submit new info?"│
  │     • Currently 100% manual page-by-page comparison      │
  │                                                          │
  │   Criteria Re-Matching (HIGH VALUE — AI)                 │
  │     • Re-evaluate against InterQual/MCG/medical policy   │
  │     • With new clinical evidence factored in             │
  │     • Decision support for RN reviewer                   │
  │                                                          │
  │   Workflow: Elementum (Premera's system)                  │
  │     • Automated workflow with AI decision points          │
  │     • If AI says "deny" → sends reasoning + signal       │
  │       to another system for human review                 │
  │     • NEVER automated denials                            │
  │                                                          │
  │   Response Drafting (AI)                                  │
  │     • Generate decision rationale letters                │
  │     • Clinical citations, regulatory-compliant language  │
  │     • 20-30 min → 2-3 min per letter                    │
  └─────────────────────────────────────────────────────────┘

4 Essential Reads for This Afternoon

1. InterQual Criteria Overview — How the Rules Engine Works

What: InterQual is the dominant clinical criteria library Premera uses. Understand Q&A format, decision points, continuum-of-care structure.

Key takeaway: InterQual structures clinical criteria as decision trees with structured Q&A. Auto-auth = evaluating these programmatically. Scaling = digitizing hundreds of medical policies into this format.

2. Firely CRD/DTR/PAS Explainer — The PA Decision Flow

What: CMS-0057-F mandates FHIR-based PA APIs by January 2027. Da Vinci CRD/DTR/PAS is the architecture Premera must implement. This is the framework for how auto-auth scales.

Key takeaway: CRD = "does this need PA?", DTR = "what docs are needed?" (FHIR Questionnaires), PAS = "submit and get decision." This is how you go from hundreds of PDF policies to a structured, queryable system.

3. HL7 ADT Tutorial — Real-Time Data Feeds

What: ADT (Admit-Discharge-Transfer) messages are real-time hospital event feeds. Premera mentioned needing access to "ADT feeds" and "Facets data." HL7v2 ADT is the format.

  • HL7 ADT Message Types — A01 (admit), A02 (transfer), A03 (discharge), A08 (update)
  • Rhapsody: HL7 ADT Integration Guide
  • Premera context: John Hauser said "the data was built for a human to do a query, not for an agent to go find it." ADT feeds are one of the raw data sources you'll need to tap.

Key takeaway: ADT messages flow in real time as patients move through care. They contain demographics, diagnoses, procedures, insurance info. The challenge at Premera is making this data accessible to AI agents, not just human analysts.

4. Appeals Arms Race — Sections 4-5

What: Our own research on the payer-side appeals workflow and where AI adds the most value. This is directly what you'll be building at Premera starting March 1st.

  • Read: appeals/appeals-arms-race.md Sections 4, 5, and 8
  • Section 4: Complete appeals processing workflow with automation potential by step
  • Section 5: Ranked value of AI applications (new info detection > doc parsing > criteria matching > response drafting)
  • Section 8: DaisyAI's specific competitive gap and wedge

Key takeaway: New information detection is the #1 AI opportunity. Nobody does clinical reasoning at the appeal review step. Existing tools (HealthEdge, Virtusa, Beacon) handle workflow, not clinical intelligence.


Full Resource Library

Payer Admin Systems (Facets / TriZetto)

Premera runs on Facets (Cognizant TriZetto). Core claims/benefits platform.

ResourceWhat You'll Learn
TriZetto TTAPTouchless Authorization Processing — how auto-auth integrates with Facets
Facets Integration ArchitectureHow Facets modules connect, data flow patterns
auto-auth/scaling-auto-auth.md Section 1Our synthesis of Facets + auto-auth integration patterns
data-access/security-and-compliance.mdPremera's VPC, AI gateway, Phoenix tracing, provisioning process

Clinical Criteria Engines (InterQual / MCG)

The rules libraries that define "medically necessary."

ResourceWhat You'll Learn
InterQual Criteria OverviewHow InterQual structures clinical criteria (Q&A, continuum format)
InterQual AutoReviewAI auto-population of InterQual reviews from EHR data
InterQual Auth AcceleratorAI-assisted criteria matching (56% time reduction)
MCG AutoAuthMCG's auto-auth rules engine — the other major criteria set
MCG Path FHIR APIHow MCG criteria become FHIR-queryable (Da Vinci compliance)
MCG: Defining Rules for PA AutomationHow rules engines evaluate PA requests step by step
Premera Policy 10.01.530Premera's actual InterQual usage policy — which services use which criteria

FHIR / Da Vinci PA Standards

The CMS-mandated interoperability framework for prior auth.

ResourceWhat You'll Learn
CMS-0057-F (CareEvolution)Complete overview of the final rule and compliance timeline
CMS-0057-F Decoded (Firely)Must-have APIs vs nice-to-have IGs — what's actually required by when
Cohere: DTR WorkflowsHow DTR turns medical policies into FHIR Questionnaires
MCG + Smile Digital Health FHIR PAMCG's FHIR-native PA approach
Itiliti Health: Policy DigitizationHow to digitize 650+ policies across 4 LOBs
Itiliti: CMS-0057 ComplianceFirst Blues plan to achieve full CMS-0057 compliance at scale

X12 EDI Standards

The legacy electronic transaction format for PA (being supplemented by FHIR).

ResourceWhat You'll Learn
X12 278 Health Care Services ReviewThe EDI transaction for PA requests/responses
WEDI: Prior Authorization Using X12 278Industry guidance on electronic PA
Note: CMS-0057-F allows all-FHIR PA flow as alternative to X12 278 under enforcement discretion

Elementum (Premera's Workflow Tool)

Limited public info — this is their internal workflow automation system for appeals.

ResourceWhat You'll Learn
Call notes: ops/calls/2026-02-11-premera-colt.mdWhat Colt/Nathan said about Elementum's role in appeals
appeals/appeals-arms-race.md Section 3Comparison of A&G workflow vendors (Elementum's competitive landscape)
Day 1 action: Ask Nathan for Elementum architecture docs and API references

HL7 v2 / ADT Feeds

Real-time hospital event data that feeds the authorization system.

ResourceWhat You'll Learn
HL7 v2 ADT Message TypesA01-A03-A08 message types, segments, field structure
Rhapsody: HL7 ADT IntegrationPractical integration patterns for ADT feeds
Mirth ConnectCommon HL7 integration engine (check if Premera uses)
Premera context: ADT feeds give real-time admit/discharge/transfer events. John Hauser's team works with this data.

Practitioner Perspectives

What clinicians and nurses actually experience in the UM review workflow.

ResourceWhat You'll Learn
STAT: The humans behind the PA deskDay-in-the-life of payer UM nurses
AMA Prior Auth Survey 2024Provider burden data (34 PAs/week, 12 hours, 83% overturn on appeal)
KFF: MA PA Determinations 202452.8M PA determinations, 92.3% approved, 4.1M denied
Key insight: 80%+ of PAs are eventually approved. The goal is approving faster with less human touch, not catching more denials.

AI Security & Compliance (Premera-Specific)

How to work within Premera's secure environment.

ResourceWhat You'll Learn
data-access/security-and-compliance.mdFull research on Premera's AI gateway, Phoenix tracing, provisioning, BAAs
Arize PhoenixOpen-source AI observability — our code must emit compatible traces
Premera AI PracticesTheir public AI governance framework
Critical: All LLM calls through their gateway. Data stays in VPC. SRP tickets take 4 weeks through 5 teams.

Tactical Advice for Day 1

Before You Walk In

  1. Submit SRP requests immediately. Provisioning takes 4 weeks through 5 teams. Every day of delay = a day you can't access real data. Be precise about access tiers — Nathan warned that requesting the wrong tier (global vs. data standard) means starting over.

  2. Prepare an architecture doc showing data flows. Security team will ask for this first. Draw: your app → AI security gateway → Anthropic/OpenAI API (BAA). Show Phoenix tracing integration. Show that nothing leaves the VPC.

  3. Map data elements needed per use case. For auto-auth: medical policies, InterQual criteria mappings, CPT/HCPCS code tables, claims data, member eligibility. For appeals: appeal submissions (faxed PDFs, portal uploads), original authorization records, clinical documentation, Elementum workflow state.

  4. Have OpenTelemetry integration ready. Nathan's Phoenix collector expects OTel spans. Instrument your LLM calls from day one. This isn't optional — it's how they audit everything.

  5. Complete HIPAA training. Required for all personnel accessing PHI. Do this before you need to and have certificates ready.

First Week Priorities

DayFocusWhy
Day 1Meet John + Nathan, get architecture walkthroughUnderstand their systems before touching anything
Day 1Submit SRP ticket for data accessClock starts ticking on 4-week provisioning
Day 2-3Get Elementum API docs, understand workflowAppeals goes to production March 1st — 2 weeks away
Day 2-3Inventory Premera's medical policiesHow many? What format? What's digitized vs. PDF?
Day 3-5Build against mock dataYou won't have real access yet — build the pipeline with synthetic data
Week 1Prototype new information detectionHighest-value AI application for appeals. Show value fast.

What to Ask Nathan and John

Architecture:

  • What's the AI gateway URL and auth mechanism?
  • Which Claude/GPT models are available through the gateway?
  • Can you share Phoenix trace format examples so we match your schema?
  • What's the Elementum API look like? REST? Event-driven?

Data:

  • Where do medical policies live? (SharePoint? Internal wiki? Policy management system?)
  • How are InterQual criteria currently integrated? (TTAP? Direct API? Manual lookup?)
  • What format do appeal documents arrive in? (Fax? Portal upload? EHR export?)
  • Which Facets modules/tables will we need access to?

Process:

  • What does the SRP request form look like? Can you walk us through it?
  • Who are the 5 teams that sign off? Any allies who can expedite?
  • What happened with the auto-auth vendor they're insourcing from? Can we see what they built?
  • For appeals March 1st production — what's the MVP? What's already built vs. what's missing?

Things NOT to Do

  • Don't bring your own API keys. Route through their gateway.
  • Don't copy data locally. Everything stays in VPC.
  • Don't request overly broad access. Nathan warned about this. Start narrow.
  • Don't build outside their stack. You're augmenting, not replacing.
  • Don't surprise the security team. Document everything proactively. Their 2014 breach ($6.85M fine, $74M class action) means they will over-audit. Work with it.

The Enterprise Pace Reality

Nathan's quote: "Going from a startup to a 100-year-old company is like getting out of a rocket and dropping into quicksand."

Accept this. The provisioning timeline is real. Use the waiting time productively:

  • Build against mock/synthetic data
  • Digitize publicly available Premera medical policies
  • Prototype the AI pipeline (document parsing → criteria matching → evidence highlighting)
  • Learn Elementum's workflow patterns from documentation
  • Prepare CMS-0057-F compliance analysis for Premera's leadership

The code you write during provisioning becomes the demo that builds trust internally. When access comes through, you should be ready to plug in real data and show results within days, not weeks.

Daisy

v1

What do you need?

I can pull up the fundraise pipeline, CRM accounts, hot board, meeting notes — anything in the OS.

Sonnet · read-only