We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38690d4 commit 94f91a0Copy full SHA for 94f91a0
1 file changed
src/lib/conditions.ts
@@ -1,3 +1,17 @@
1
+/**
2
+ * Clinical condition and red flag definitions.
3
+ *
4
+ * All red flags sourced from NICE Clinical Knowledge Summaries (CKS)
5
+ * and NHS 111 pathway documentation. Each condition maps to specific
6
+ * symptoms that warrant GP escalation — these are the "safety net"
7
+ * instructions that GPs give verbally but are rarely tracked.
8
9
+ * Sources:
10
+ * - NICE CKS: https://cks.nice.org.uk/
11
+ * - NHS 111: https://111.nhs.uk/
12
+ * - RCGP Safety Netting guidance
13
+ */
14
+
15
export interface ConditionGroup {
16
specialty: string;
17
conditions: string[];
0 commit comments