Clinical Intake Queue¶
Risk and readiness mechanism — instantiates Intake Queue Staging
Stages referrals for a clinical service and scores each for acuity and risk, so an urgent or high-risk case is escalated and care-path-assigned rather than waiting in the ordinary line.
The Clinical Intake Queue is the intake mechanism whose whole reason for existing is risk. It holds referrals and self-referrals in a pre-admission state and does the one thing a plain waiting line cannot: it looks at each case and asks how urgent, how dangerous, and what kind of care is this before letting it settle into ordinary order. Its defining move is acuity triage — a scored judgment that sorts arrivals by clinical risk and urgency, pulls the dangerous ones out of the queue immediately, and tags each with the care path it belongs to. Unlike a structural queue that merely holds items in arrival order, a clinical intake queue treats waiting in the wrong place as a safety event: a high-risk case buried among routine referrals is not just delayed, it is a person who could deteriorate while a first-come-first-served line ignores them.
Example¶
A community behavioral-health clinic takes referrals from primary-care physicians, schools, and walk-ins. Left as a single chronological list, a teenager expressing active suicidal thoughts could sit for three weeks behind a routine request for a medication-management appointment, because the routine request happened to arrive first. The clinic runs incoming referrals through a Clinical Intake Queue.
Each referral is screened by an intake clinician using a structured risk instrument such as the Columbia-Suicide Severity Rating Scale.[n1] The screen produces two things: an acuity level (routine, urgent, or emergent) and a care-path classification (therapy, psychiatry, group program, or crisis services). A referral scored emergent doesn't wait in the queue at all — it hits the escalation path, routing straight to the on-call crisis clinician the same day. A routine therapy referral is classified and takes its ordinary place. The queue's job is finished before scheduling begins: it has decided not when there is a slot, but how fast this case must be seen and what kind of care it needs — which is exactly the judgment a chronological line cannot make.
How it works¶
What distinguishes this mechanism is that it runs a clinical judgment over each arrival, not a structural sort:
- Score acuity per case. A structured screen assigns each referral an urgency/risk level, so position in the queue reflects clinical danger rather than arrival time.
- Escalate red flags out of the line. Cases above a risk threshold bypass ordinary waiting entirely, routing to an urgent or crisis pathway.
- Classify the care path. Each case is tagged with the service type it needs, so it enters the right pre-admission track rather than a generic pool.
- Re-triage as needed. Because risk changes while a person waits, the queue can re-score a waiting case rather than freezing its first assessment.
Tuning parameters¶
- Risk-threshold sensitivity — how readily a case is flagged high-acuity. A low threshold catches more true emergencies but floods the escalation path with false alarms and courts alarm fatigue; a high one keeps escalation meaningful but risks missing a deteriorating case.
- Triage granularity — how many acuity tiers exist. Finer tiers sort risk precisely but slow the screen and invite disagreement at the boundaries.
- Escalation trigger criteria — which findings force an immediate bypass. Broad criteria are safer but consume scarce urgent capacity; narrow ones protect that capacity at the cost of a harder judgment call.
- Re-triage cadence — how often waiting cases are re-scored. Frequent re-triage catches deterioration but adds clinician load to the intake step.
When it helps, and when it misleads¶
Its strength is that it makes risk visible before scheduling constraints take over. High-acuity cases are surfaced and moved the moment they are recognized, and every case enters the care path that fits it, so scarce specialist capacity is spent on the right people in the right order.
Its gravest failure is the false negative — a genuinely high-risk case scored as routine and left to wait, which in this domain can be catastrophic. The opposite error, chronic over-escalation, is subtler but corrosive: when everything is urgent, urgency stops meaning anything and the escalation path itself becomes a queue. A classic misuse is treating the acuity score as a fixed verdict and never re-triaging, so a case that worsens after intake keeps its stale routine label. The discipline that guards against all three is a validated screening instrument applied consistently, a re-triage rule for long waits, and audit of the cases that were scored routine but later escalated — the queue is only as safe as its willingness to check its own misses.
How it implements the components¶
The Clinical Intake Queue realizes the risk-and-readiness components — the ones that turn an arrival into a scored, sorted clinical case:
triage_policy— it owns the acuity/risk-scoring rules that sort referrals by clinical urgency and danger.escalation_path— it provides the immediate route by which high-risk cases bypass ordinary waiting to urgent or crisis care.classification_rule— it assigns each referral to the care path (therapy, psychiatry, crisis, group) it belongs to.
It does not provide the container or boundary that holds items in a pre-admission state (intake_queue and intake_boundary — that is Ticket Triage Queue), and it makes no admission commitment or clock-start (admission_commitment_rule — Application Review Queue). Its nearest twin is the ticket triage queue: that mechanism is only the lane that holds items, while this one scores the acuity and risk of what is inside the lane.
Related¶
- Instantiates: Intake Queue Staging — this queue is the pattern's risk-triage layer for clinical intake.
- Sibling mechanisms: Ticket Triage Queue · Application Review Queue · Incident Intake Board · Intake Checklist · Awaiting-Information Lane
Editorial Notes¶
Form Classification¶
Form family: Decision, Gate & Allocation
Rationale: Stages referrals for a clinical service and scores each for acuity and risk, so an urgent or high-risk case is escalated and care-path-assigned rather than waiting in the ordinary line, making its operative form a case-specific gate, selection, routing, prioritization, or disposition decision.
Independent corroboration: The frozen evidence defines Clinical Intake Queue as 'Stages referrals for a clinical service and scores each for acuity and risk, so an urgent or high-risk case is escalated and care-path-assigned rather than waiting in the ordinary line', so its operative form is Decision, Gate & Allocation.
Review outcome: Independent reviewer agreement; high confidence.
Origin Attribution¶
Primary origin: Medicine & Healthcare
Origin pattern: Cross-disciplinary synthesis
Present-day reach: Specialized
Rationale: Clinical triage established acuity- and risk-based staging that removes urgent cases from ordinary first-come queues and assigns care paths.
Related originating lineages:
- Operations Research — Priority-queue design supplies capacity and waiting-flow discipline.
Review resolution: Both reviewers agree on medicine_healthcare as primary. The source mechanism's defining operation supports that lineage; the reconciled record retains operations_research only where it materially contributes the mechanism, and treats later application breadth separately from origin.
Review outcome: Reconciled after independent review; high confidence.
Notes¶
[n1] The Columbia-Suicide Severity Rating Scale (C-SSRS) is a validated, structured questionnaire developed at Columbia University for assessing suicide risk. It is cited here only as a real example of a standardized acuity instrument that turns a subjective risk impression into a consistent, comparable score — the kind of instrument a clinical triage policy depends on. ↩