/** * Generated by aanish.com at build time. * Sources: apps/site/src/data/projects.ts, src/content/case-studies/*.mdx, * packages/fhir-craft, and packages/type-loupe. */ declare namespace Aanish { type GeneratedFrom = "apps/site/src/content/case-studies/*.mdx" | "apps/site/src/data/projects.ts" | "packages/fhir-craft/src/index.ts" | "packages/type-loupe/src/index.ts"; type ProjectStatus = "building" | "live" | "shipped"; type ProjectCategory = "for-fun" | "open-source" | "product"; type ProjectLanguage = "TypeScript"; type ProductName = "CoralEHR" | "TicVision"; type OpenSourceName = "bonfireDB" | "dunning-kruger" | "em-dash" | "fhir-craft" | "simply-html"; type SideProjectName = "pokerinsite" | "wavelength"; type ProjectName = ProductName | OpenSourceName | SideProjectName; type ProjectSlug = "bonfiredb" | "coralehr" | "dunning-kruger" | "em-dash" | "fhir-craft" | "pokerinsite" | "simply-html" | "ticvision" | "wavelength"; type Stack = "API Gateway" | "AutoGluon" | "AWS Lambda" | "AWS serverless" | "CDK" | "CDK / SAM" | "CI/CD" | "Cognito" | "DynamoDB" | "Expo" | "HealthLake / FHIR R4" | "HealthLake FHIR R4" | "LangGraph" | "MLflow" | "Node" | "OAuth2" | "Playwright" | "React" | "React Native" | "React Query" | "S3" | "TypeScript"; type RoleFit = "AI / developer tooling engineer" | "full-stack software engineer" | "healthcare data / FHIR systems engineer"; type CaseStudySlug = "coralehr" | "ticvision"; type CaseStudyRoute = `/case-studies/${CaseStudySlug}`; type Route = "/" | "/aanish.d.ts" | "/case-studies/coralehr" | "/case-studies/ticvision" | "/resume.pdf"; type Product = { readonly name: "CoralEHR"; readonly slug: "coralehr"; readonly category: "product"; readonly status: "live"; readonly blurb: "A behavioral-health EHR for private-pay clinicians, built on FHIR R4 with clinician workflows at the center."; readonly url: "https://coralehr.com"; readonly stack: readonly ["React", "TypeScript", "AWS Lambda", "API Gateway", "Cognito", "HealthLake FHIR R4", "DynamoDB", "CDK"]; readonly traction: "USC x Techstars University Catalyst | 80+ clinician interviews | live FHIR R4 on AWS with Cognito RBAC, relationship-based access checks, AuditEvent logs, and clinician-reviewed AI workflows over HealthLake"; readonly caseStudy: "/case-studies/coralehr"; } | { readonly name: "TicVision"; readonly slug: "ticvision"; readonly category: "product"; readonly status: "live"; readonly blurb: "Tic tracking for remote therapeutic monitoring, so clinicians can monitor treatment between sessions."; readonly url: "https://ticvision.io"; readonly stack: readonly ["React Native", "Expo", "AWS serverless", "API Gateway", "Cognito"]; readonly traction: "250+ downloads | presented at TIC-CON 2025 | exploratory ML study on de-identified tic-intensity patterns"; readonly caseStudy: "/case-studies/ticvision"; }; type OpenSourceProject = { readonly name: "em-dash"; readonly slug: "em-dash"; readonly category: "open-source"; readonly status: "shipped"; readonly blurb: "Compliance assistant for Claude Code that scans infrastructure, drafts fixes, and produces signed SOC 2, HIPAA, and GDPR evidence."; readonly lang: "TypeScript"; readonly repo: "aanishs/em-dash"; readonly flagship: true; } | { readonly name: "fhir-craft"; readonly slug: "fhir-craft"; readonly category: "open-source"; readonly status: "building"; readonly blurb: "TypeScript builders for app-level FHIR R4 resource shapes. Write createPatient(), not raw FHIR JSON. Define your app's FHIR vocabulary once with defineCode(); reuse the same builders across the app."; readonly lang: "TypeScript"; } | { readonly name: "dunning-kruger"; readonly slug: "dunning-kruger"; readonly category: "open-source"; readonly status: "shipped"; readonly blurb: "Interviews you about your own codebase, scores your answers against the source with file:line receipts, and plots what you think you understand against what the code proves."; readonly lang: "TypeScript"; readonly repo: "aanishs/dunning-kruger"; } | { readonly name: "simply-html"; readonly slug: "simply-html"; readonly category: "open-source"; readonly status: "shipped"; readonly blurb: "Turns agent-written markdown into living, PIN-gated HTML pages. The model writes the content; it never writes the JavaScript."; readonly lang: "TypeScript"; readonly repo: "aanishs/simply-html"; } | { readonly name: "bonfireDB"; readonly slug: "bonfiredb"; readonly category: "open-source"; readonly status: "building"; readonly blurb: "Typed clinical primitives on Postgres with FHIR R4 export paths underneath, so teams can build FHIR-aware apps without starting from raw resource JSON."; readonly lang: "TypeScript"; readonly url: "https://bonfiredb.dev"; }; type SideProject = { readonly name: "pokerinsite"; readonly slug: "pokerinsite"; readonly category: "for-fun"; readonly status: "live"; readonly blurb: "Poker analytics for hands, players, games, and bankroll tracking."; readonly url: "https://pokerin.site"; readonly repo: "aanishs/pokerinsite"; } | { readonly name: "wavelength"; readonly slug: "wavelength"; readonly category: "for-fun"; readonly status: "live"; readonly blurb: "A multiplayer compatibility game. Answer prompts on a 0-100 spectrum, share a link, and see where you line up."; readonly url: "https://playwavelength.com"; readonly repo: "aanishs/wavelength"; }; type Project = Product | OpenSourceProject | SideProject; type CaseStudy = { readonly slug: "coralehr"; readonly route: "/case-studies/coralehr"; readonly title: "CoralEHR"; readonly role: "Co-founder & full-stack engineer"; readonly tech: readonly ["React", "TypeScript", "AWS Lambda", "HealthLake FHIR R4", "DynamoDB", "CDK"]; readonly summary: "A behavioral-health EHR for private-pay clinicians. FHIR R4 on AWS serverless, with Cognito RBAC, relationship-based access checks, and AuditEvent logging."; readonly href: "https://coralehr.com"; } | { readonly slug: "ticvision"; readonly route: "/case-studies/ticvision"; readonly title: "TicVision"; readonly role: "Co-founder & full-stack engineer"; readonly tech: readonly ["React Native", "Expo", "AWS serverless", "Cognito"]; readonly summary: "Tourette's tic-tracking with remote therapeutic monitoring. React Native on serverless AWS, plus an ML study on tic intensity."; readonly href: "https://ticvision.io"; }; type LocalPackageName = "fhir-craft" | "type-loupe"; type PackageExport = Name extends "fhir-craft" ? keyof typeof import("fhir-craft") : Name extends "type-loupe" ? keyof typeof import("type-loupe") : never; type LocalPackage = { readonly name: "fhir-craft"; readonly version: "0.1.0"; readonly purpose: "opinionated TypeScript builders for app-level FHIR R4 resource shapes"; readonly exports: keyof typeof import("fhir-craft"); } | { readonly name: "type-loupe"; readonly version: "0.1.0"; readonly purpose: "a tiny TypeScript-subset parser, checker, symbol table, and diagnostics loop"; readonly exports: keyof typeof import("type-loupe"); }; const profile: { readonly name: "Aanish Sachdev"; readonly location: "Los Angeles"; readonly school: "USC CS '26"; readonly company: "Simplest Healthcare"; readonly github: "https://github.com/aanishs"; readonly githubHandle: "aanishs"; readonly linkedin: "https://www.linkedin.com/in/aanishsachdev/"; readonly email: "aanishsa@usc.edu"; }; const history: readonly [ { readonly org: "ArcOne"; readonly role: "ML Engineer Intern"; readonly when: "Summer 2025 | Austin, TX"; readonly detail: "Built an AutoML churn pipeline (AutoGluon + MLflow) and a LangGraph agent that surfaces at-risk accounts."; }, { readonly org: "TimeRewards"; readonly role: "Software Engineer Intern"; readonly when: "Summer 2024 | Austin, TX"; readonly detail: "Salesforce to Slack integrations on AWS Lambda + Node.js with OAuth-secured workflows."; }, { readonly org: "Hackathons"; readonly role: "National hackathons, India"; readonly when: ""; readonly detail: "1st place; top 100 of 50,000+ teams."; } ]; } declare const aanish: { readonly profile: typeof Aanish.profile; readonly projects: readonly Aanish.Project[]; readonly caseStudies: readonly Aanish.CaseStudy[]; readonly packages: readonly Aanish.LocalPackage[]; readonly routes: readonly Aanish.Route[]; };