silent-platform

byGitmushtaq

We are building a product called PulseVision. This is a full-stack AI-powered healthcare platform that helps users understand medical reports and take real-world action. 🧠 CORE VISION PulseVision converts: πŸ‘‰ Medical Report β†’ Insight β†’ Decision β†’ Action β†’ Follow-up We are NOT building a diagnosis system. We are building a: πŸ‘‰ Health Decision & Navigation Platform 🎯 PRIMARY USER FLOW A user should be able to: Upload a medical report (PDF/image) System analyzes it Get simplified explanation Understand risk level Get doctor recommendation See nearby hospitals Take action (call / navigate) Save and return later πŸ—οΈ SYSTEM ARCHITECTURE FRONTEND Framework: React (Vite) Styling: Tailwind CSS Routing: React Router Pages: Dashboard Upload Screen Analysis Progress Screen Results Screen Saved Reports BACKEND Framework: FastAPI (Python) Structure: backend/ β”œβ”€β”€ main.py β”œβ”€β”€ routes/ β”œβ”€β”€ services/ β”œβ”€β”€ utils/ └── models/ AI / PROCESSING LAYER OCR (basic for now) Text parsing Rule-based risk detection Doctor recommendation engine 🧩 CORE FEATURES 1. REPORT UPLOAD Accept PDF / Image Validate file Send to backend 2. OCR + ANALYSIS Backend should: Extract text Identify key values (LDL, sugar, hemoglobin) Normalize values Detect abnormalities 3. RISK ENGINE Output: Risk level: Low / Medium / High Confidence score 4. DECISION ENGINE Map: Biomarkers β†’ Doctor type Example: High cholesterol β†’ Cardiologist Low hemoglobin β†’ General physician 5. RESULTS OUTPUT Frontend should display: Summary (simple language) Risk level Doctor recommendation Detected values Confidence 6. HOSPITAL INTEGRATION Use: Google Maps Places API Fetch: Nearby hospitals Rating Distance Address Phone number 7. ACTION SYSTEM User should: Call hospital (open dialer) Open map (Google Maps) 8. SAVE & RETURN Save report Reopen later Resume action 9. ANALYTICS Track: Upload success Analysis success CTA clicks Call clicks Map clicks Save β†’ return β†’ action πŸ”„ FRONTEND FLOW Step 1: Dashboard Overview Recent reports β€œNew Analysis” button Step 2: Upload Drag & drop File preview Upload button Step 3: Progress Show steps: Reading report Extracting data Analyzing Generating result Step 4: Results Show: Risk level Doctor Next steps Hospital list CTA button Save option πŸ”Œ API DESIGN POST /upload Input: file Output: job_id GET /analyze/{job_id} Output: { "summary": "", "risk_level": "High", "doctor": "Cardiologist", "confidence": 0.85, "detected_values": [] } GET /hospitals/nearby Input: latitude longitude specialty Output: list of hospitals ⚠️ IMPORTANT RULES Do NOT overcomplicate Do NOT use heavy ML models initially Use rule-based logic first Keep UI clean and professional Keep frontend and backend modular πŸš€ DEVELOPMENT PHASES Phase 1: MVP UI screens Mock data Basic flow Phase 2: Real Integration Backend connection OCR Real hospital API Real actions Phase 3: Advanced Better AI models Personalization Notifications Health tracking πŸ“¦ FINAL DELIVERABLE A working system where: User uploads report Gets analysis Sees hospitals Takes action 🎯 END GOAL This should feel like: πŸ‘‰ A real product πŸ‘‰ Not a prototype πŸ‘‰ Not a demo

DashboardSaved ReportsProgress
Dashboard

Comments (0)

No comments yet. Be the first!

Project Tasks13

#1

Implement Theme & Structure

To Do

As a user, I want the app to visually match the mock-design pages exactly, so that the experience feels polished and professional from day one. This task covers: applying the Silent-Platform color palette (#F5F9FC background, #FF6F61 accent, #2C3E50 text, etc.) globally via Tailwind config, setting up shared layout components (header, nav, page wrappers), removing any scaffold pages not present in the design (e.g. login, signup, welcome if not in final designs), and ensuring all existing scaffold pages align with the design system. Reference designs: Dashboard (v2), Saved Reports (v2), Progress (v2), Upload (v1), Results (v1).

AI 80%
Human 20%
High Priority
1 day
Frontend Developer
#7

Implement Report Upload API

To Do

As a user, I want my uploaded medical report to be securely received by the backend so that it can be queued for analysis. Implement the POST /upload FastAPI endpoint that accepts a PDF or image file, validates the file type and size, stores it temporarily, and returns a job_id for polling. Structure: backend/routes/upload.py, backend/services/file_service.py.

AI 85%
Human 15%
High Priority
1 day
Backend Developer
#2

Build Dashboard Page

To Do

As a user, I want to see a Dashboard overview page so that I can view recent reports and start a new analysis. Implement the Dashboard page based on the existing v2 JSX design. The page should include: overview stats, recent reports list, and a 'New Analysis' CTA button that navigates to the Upload page. Follows the Primary User flow: Dashboard β†’ Upload. Reference: Design Pages - Dashboard (v2).

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
1 day
Frontend Developer
#3

Build Upload Page

To Do

As a user, I want to upload my medical report (PDF or image) so that the system can analyze it. Implement the Upload page based on the existing v1 JSX design. The page should include: drag & drop zone, file type validation (PDF/image), file preview, and an upload submit button that triggers the backend upload API and navigates to the Progress page. Follows the user flow: Dashboard β†’ Upload β†’ Progress. Reference: Design Pages - Upload (v1).

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
1 day
Frontend Developer
#4

Build Progress Page

To Do

As a user, I want to see a real-time analysis progress screen so that I know the system is processing my report. Implement the Progress page based on the existing v2 JSX design. The page should display step-by-step progress indicators: Reading report β†’ Extracting data β†’ Analyzing β†’ Generating result. Poll the backend GET /analyze/{job_id} endpoint and navigate to the Results page on completion. Reference: Design Pages - Progress (v2).

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
1 day
Frontend Developer
#5

Build Results Page

To Do

As a user, I want to see the results of my medical report analysis so that I can understand my risk level, get doctor recommendations, and find nearby hospitals. Implement the Results page based on the existing v1 JSX design. The page should display: risk level (Low/Medium/High with color coding), simplified summary, doctor recommendation, detected biomarker values, confidence score, nearby hospital list (rating, distance, address, phone), Call and Navigate CTAs, and a Save Report button. Follows the user flow: Progress β†’ Results β†’ Saved Reports or Hospital Actions. Reference: Design Pages - Results (v1).

Depends on:#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
1.5 days
Frontend Developer
#6

Build Saved Reports Page

To Do

As a user, I want to view and reopen my previously analyzed reports so that I can follow up on my health actions without re-uploading. Implement the Saved Reports page based on the existing v2 JSX design. The page should read from browser localStorage, display a list of saved reports with date, risk level, and summary, and allow the user to reopen any report (navigating back to the Results page with that report's data). Reference: Design Pages - Saved Reports (v2).

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
1 day
Frontend Developer
#8

Implement OCR Text Extraction

To Do

As a user, I want the system to extract readable text from my uploaded report (PDF or image) so that the AI engine can analyze the content. Implement an OCR service in the backend that uses a lightweight OCR library (e.g. pytesseract or pdfplumber) to extract text from the uploaded file. Store the extracted text for downstream analysis. Structure: backend/services/ocr_service.py.

Depends on:#7
Waiting for dependencies
AI 80%
Human 20%
High Priority
1.5 days
AI Engineer
#12

Implement Nearby Hospitals API

To Do

As a user, I want to see nearby hospitals filtered by the recommended specialty so that I can quickly find and contact the right medical facility. Implement the GET /hospitals/nearby FastAPI endpoint that accepts latitude, longitude, and specialty parameters. Integrate with Google Maps Places API to fetch nearby hospitals with: name, rating, distance, address, phone number. Structure: backend/routes/hospitals.py, backend/services/maps_service.py.

Depends on:#7
Waiting for dependencies
AI 80%
Human 20%
High Priority
1.5 days
Backend Developer
#9

Implement Rule-Based Risk Engine

To Do

As a user, I want the system to evaluate my biomarker values against configurable thresholds so that I receive an accurate risk level (Low/Medium/High). Implement a configurable rule-based risk engine. Store thresholds in a config file (e.g. risk_thresholds.yaml or dict in config.py). Engine should normalize extracted values, compare against thresholds, and output: risk_level, confidence score, and list of flagged biomarkers. Structure: backend/services/risk_engine.py, backend/config/thresholds.py. Example rules: LDL > 160 β†’ High, 130-160 β†’ Medium, < 130 β†’ Low.

Depends on:#8
Waiting for dependencies
AI 80%
Human 20%
High Priority
1.5 days
AI Engineer
#10

Implement Doctor Recommendation Engine

To Do

As a user, I want to receive a relevant doctor specialist recommendation based on my biomarker analysis so that I know which type of doctor to consult. Implement a mapping service that maps flagged biomarkers to doctor specialties (e.g. High cholesterol β†’ Cardiologist, Low hemoglobin β†’ General Physician). Store mappings in a configurable dict or YAML file. Structure: backend/services/recommendation_service.py, backend/config/doctor_mappings.py.

Depends on:#9
Waiting for dependencies
AI 80%
Human 20%
High Priority
1 day
AI Engineer
#11

Implement Analysis Results API

To Do

As a user, I want to poll the analysis status and retrieve my full results so that I can see risk level, doctor recommendation, and detected values after processing. Implement the GET /analyze/{job_id} FastAPI endpoint that returns: summary, risk_level, doctor, confidence, detected_values. Orchestrates OCR β†’ Risk Engine β†’ Doctor Recommendation services. Structure: backend/routes/analyze.py, backend/services/analysis_service.py.

Depends on:#10
Waiting for dependencies
AI 85%
Human 15%
High Priority
1 day
Backend Developer
#13

Integrate Frontend with Backend APIs

To Do

As a user, I want the frontend pages to connect to the real backend APIs so that my uploaded reports are actually analyzed and results are fetched live. Wire up all frontend pages to the real backend: (1) Upload page β†’ POST /upload, (2) Progress page β†’ poll GET /analyze/{job_id}, (3) Results page β†’ render live API data including hospitals from GET /hospitals/nearby, (4) Saved Reports page β†’ persist results to localStorage after successful analysis. Replace all mock data with real API calls.

Depends on:#5#11#4#3#2#6#12
Waiting for dependencies
AI 85%
Human 15%
High Priority
2 days
Frontend Developer
Dashboard: View Overview
Upload: Select Report
Upload: Submit File
Progress: Track Analysis
Results: View Risk Level
Results: View Doctor Recommendation
Results: Browse Hospitals
Results: Call or Navigate
Saved Reports: Save Report
Saved Reports: Reopen Report