fluxq-engine 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +12 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,19 +17,19 @@ FluxQ Engine is a high-performance REST API and core logic engine built for clin
17
17
 
18
18
  ### ● Key Features
19
19
 
20
- #### 0x01 ― Smart Triage Logic
20
+ #### 1 ― Smart Triage Logic
21
21
  › Dynamic symptom assessment and severity classification.
22
22
  › Clinical priority scoring (Severity × Wait Time × Fairness).
23
23
 
24
- #### 0x02 ― Queue Optimization
24
+ #### 2 ― Queue Optimization
25
25
  › Real-time reordering based on clinical severity and fairness thresholds.
26
26
  › Starvation prevention and dynamic aging boosts.
27
27
 
28
- #### 0x03 ― Fairness Monitoring
28
+ #### 3 ― Fairness Monitoring
29
29
  › Real-time identification of starvation risks.
30
30
  › Fairness reports with aging boost tracking.
31
31
 
32
- #### 0x04 ― Simulation & Metrics
32
+ #### 4 ― Simulation & Metrics
33
33
  › High-level KPIs: Wait time reduction, doctor utilization, and throughput.
34
34
  › Full baseline vs. optimized comparison reporting.
35
35
 
@@ -51,14 +51,16 @@ const optimizedQueue = optimizer.optimize(patients, config);
51
51
  ```
52
52
 
53
53
  ▶ **Direct API Connectivity**
54
- ◈ `GET /api/v1/config` ― Get current system optimization parameters.
55
- `POST /api/v1/optimize` ― Submit a patient list for instant re-ordering.
56
- ◈ `POST /api/v1/simulate` ― Run a complete FCFS vs. AI comparison.
54
+
55
+ `GET /api/v1/config` ― Get current system optimization parameters.
56
+
57
+ `POST /api/v1/optimize` ― Submit a patient list for instant re-ordering.
58
+
59
+ `POST /api/v1/simulate` ― Run a complete FCFS vs. AI comparison.
57
60
 
58
61
  ---
59
62
 
60
63
  ### ● Developer
61
- ◈ **Built by [Diksha](https://github.com/dikshaa2909)**
62
64
 
63
- ---
64
- ◈ **FluxQ Engine ― 2026**
65
+ **Built by [Diksha](https://github.com/dikshaa2909)**
66
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxq-engine",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Powerful, clinical-aware patient triage and queue optimization engine for healthcare platforms.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",