Skip to Content
ApplicationsOverview

Applications

The Loop Platform includes 6 production applications spanning consumer-facing portals, mobile apps, administrative tools, and backend services. Each app is built using shared packages from the monorepo and follows consistent patterns for authentication, logging, and error handling.

Application Index

Consumer Apps

AppPurposeTech StackPort
@loop/my-loop-healthCustomer portal and Platform APINext.js 15, Hono, Clerk3000
@loop/loop-healthMarketing site and user dashboardNext.js 15, Stream.io3001
@loop/loop-health-mobileProtocol adherence trackerExpo, React Native

Administration

AppPurposeTech StackPort
@loop/adminContent management and admin dashboardPayload CMS 3.75, Next.js 153002

Services

AppPurposeTech StackPort
@loop/call-bookingVideo call scheduling and managementHono, Stream.io, Calendly3003
@loop/embeddings-apiVector embedding generationHono, OpenAI, Pinecone3004

App-Package Dependencies

This matrix shows which applications use which shared packages:

core shared database cms auth ai commerce patient-graph hono admin ✓ ✓ ✓ ✓ — — — — — my-loop-health ✓ ✓ ✓ — ✓ — ✓ ✓ ✓ loop-health ✓ ✓ — — ✓ — — — — loop-health-mobile ✓ ✓ — — ✓ — — — — call-booking ✓ ✓ ✓ — ✓ — — — ✓ embeddings-api ✓ ✓ ✓ — — ✓ — — ✓

Key observations:

  • @loop/core and @loop/shared are used by all applications
  • @loop/database is used by backend services and admin tools
  • @loop/cms is exclusively used by admin
  • @loop/hono powers lightweight API services
  • @loop/commerce and @loop/patient-graph are specialized to my-loop-health

See Also