HIPAA-compliant contextual augmentation platform for Medicaid caregivers, reducing report generation time from 30 minutes to under 2 minutes while maintaining regulatory compliance.
Medicaid caregivers spend 30+ minutes per client session manually writing detailed progress notes, interventions, and compliance documentation. This administrative burden reduces time available for actual patient care and creates bottlenecks in billing cycles. The documentation must meet strict HIPAA requirements and Medicaid audit standards while remaining affordable for small healthcare agencies.
FiveScribe is a production-ready SaaS platform that transforms caregiver voice notes and observations into compliant Medicaid documentation in under 2 minutes. Built on AWS serverless infrastructure with advanced contextual augmentation, the system provides enterprise-grade security at startup-friendly pricing.
Clean, accessible interface showing recent reports, quick actions, and usage summary. Built with Next.js, React 19, and Tailwind CSS with full keyboard navigation support.
Transform raw caregiver observations into structured Medicaid documentation in under 2 seconds. The system generates interventions, participant responses, progress notes, and next steps—all formatted for compliance.
Full CRUD for client records with Medicaid ID tracking, goals management, and historical report access.
Browse completed notes, review compliance status, and export documentation for Medicaid audits with a 6-year retention trail.
Real-time usage dashboard showing reports generated, tokens consumed, and remaining quota. Integrated with Stripe for seamless plan upgrades and billing management.
FiveScribe included a compact healthcare analytics stack to move production data out of DynamoDB, land it in S3, model it in Snowflake with dbt, and expose trustworthy reporting for usage, billing, and operational oversight.

Operational DynamoDB exports are modeled through bronze, silver, and gold layers to produce agency usage, client visit history, and cost analysis tables.

The warehouse keeps raw JSON isolated, typed staging views clean, and analytics-ready marts separate so finance, operations, and compliance reporting stay auditable.

A compact Airflow DAG moves data from export to load to dbt run/test, giving the platform deterministic refreshes without adding heavy operational overhead.

Raw NDJSON extracts land in S3 before warehouse loading, creating a low-cost replay point for debugging, backfills, and downstream compliance evidence.
User Request → API Gateway → Cognito Auth → Lambda
│
├─ 1. Check usage limits
│ └─ DynamoDB atomic read
│
├─ 2. Call contextual augmentation API
│ └─ Report generation
│
├─ 3. Record usage
│ └─ DynamoDB atomic increment
│
└─ 4. Return report + metadataImplemented atomic DynamoDB counters for deterministic cost control. Each report generation tracks prompt tokens, completion tokens, and total usage against tier-based monthly limits.
Built from the ground up with healthcare compliance requirements. All PHI is encrypted at rest and in transit, with comprehensive audit logging and access controls.
For structured template-based generation with clear instructions, the optimized model produces identical quality. The key was testing before assuming the expensive option was necessary.
Cold starts are 100ms without VPC, 1-2s with VPC. For our use case (user-initiated report generation), this latency is acceptable. The cost savings far outweigh the minor UX impact.
VPC isolation provides network security but adds $32/month for NAT Gateway. Not all customers need this—only those with private databases or strict compliance requirements.
Built complete VPC infrastructure with Flow Logs and VPC endpoints, but gated deployment behind a feature flag. Zero cost when disabled, easy to enable when needed.