MiMo CareBridge is a professional prototype for the Xiaomi MiMo Orbit creator token application. It demonstrates a multimodal family care assistant for older adults, chronic disease patients, and caregivers.
The following screenshots show the intended MiMo CareBridge product prototype and Agent workflow proof materials for evaluation.
The project is designed to show a complete product architecture rather than a simple chatbot wrapper:
- voice/text/photo intake for daily care records;
- structured health timeline and risk classification;
- caregiver daily briefing;
- clinician-facing pre-visit summary;
- MiMo model provider abstraction with a mock provider for review;
- standalone backend service skeleton with routes, controllers, services, repositories, and MiMo adapters;
- safety guardrails that avoid diagnosis and keep human care in the loop.
MiMo CareBridge uses the full MiMo capability surface:
- Text reasoning: symptom extraction, long-horizon timeline summaries, caregiver briefings.
- Multimodal understanding: blood pressure device photos, medicine boxes, prescriptions, inspection reports.
- TTS: elder-friendly voice reminders and explanations.
- Agentic workflow: daily review, abnormal event routing, follow-up task generation, doctor export preparation.
src/ Frontend prototype, local API facade, shared domain demo logic
server/ Standalone backend service skeleton
server/src/routes HTTP endpoint registration
server/src/controllers Request/response mapping
server/src/services Care use cases and Agent workflow orchestration
server/src/repositories Storage boundary, currently in-memory
server/src/adapters MiMo mock and HTTP provider adapters
docs/ Architecture, token application narrative, demo script, integration guide
npm install --cache ./.npm-cache
npm run dev
npm test
npm run buildBackend service skeleton:
cd server
npm install
npm run devThe current implementation ships with MockMimoProvider. Replace it with a real MiMo API provider when API credentials are available.
This product is for health record organization and family care coordination. It does not provide diagnosis, treatment, prescription, or emergency triage decisions. Urgent symptoms are routed to caregivers, clinicians, or local emergency services.

