by Don-Uwe
ai agent healthcare app with centralized testing and build workflows for reliable health-content delivery
# Add to your Claude Code skills
git clone https://github.com/Don-Uwe/ai-healthcare-agent-appGuides for using ai agents skills like ai-healthcare-agent-app.
ai-healthcare-agent-app is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Don-Uwe. ai agent healthcare app with centralized testing and build workflows for reliable health-content delivery. It has 62 GitHub stars.
ai-healthcare-agent-app's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/Don-Uwe/ai-healthcare-agent-app" and add it to your Claude Code skills directory (see the Installation section above).
ai-healthcare-agent-app is primarily written in TypeScript. It is open-source under Don-Uwe on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh ai-healthcare-agent-app against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Open-source mobile platform for trusted health articles, podcasts, AI-assisted wellness chat, and community-driven content review. This repository contains the Expo React Native application and supporting TypeScript packages.
flowchart TB
subgraph Mobile["UltimateHealth Mobile App"]
UI[Screens and Components]
State[Redux Store]
Query[TanStack Query]
Config[Runtime Config]
end
subgraph Packages["Monorepo Packages"]
Persistence[packages/persistence]
end
subgraph External["External Services"]
API[Node.js REST API]
Socket[WebSocket Server]
Intel[Content Intelligence API]
Redis[(Redis - optional)]
end
UI --> State
UI --> Query
Query --> API
UI --> Socket
UI --> Intel
Persistence --> Redis
Config --> UI
sequenceDiagram
participant User
participant App as Mobile App
participant Redux as Redux Store
participant API as REST API
User->>App: Open article feed
App->>API: GET /articles
API-->>App: Article list JSON
App->>Redux: Cache filter state
App-->>User: Render feed
User->>App: Like article
App->>API: POST /articles/:id/like
API-->>App: Updated counts
App-->>User: Optimistic UI update
UltimateHealth/
├── frontend/ # Expo React Native app (TypeScript)
│ ├── src/
│ │ ├── components/ # Shared UI
│ │ ├── screens/ # Route views
│ │ ├── hooks/ # API hooks
│ │ ├── services/ # Monitoring, storage helpers
│ │ ├── config/ # Environment accessors
│ │ └── store/ # Redux slices
│ └── app.config.js # Expo dynamic config
├── packages/
│ └── persistence/ # Optional Redis layer
├── docs/
│ └── internal/ # Maintainer audit and structure notes
└── .github/workflows/ # CI and EAS build pipelines
See docs/internal/STRUCTURE.md for structural decisions.
| Tool | Version | Notes |
|---|---|---|
| Node.js | ≥ 20 | LTS recommended |
| npm or Yarn | Latest | npm workspaces supported at repo root |
| Expo CLI | Via npx expo |
Bundled with project |
| Android Studio | Latest | Android emulator |
| Xcode | Latest | macOS only, iOS builds |
git clone https://github.com/SB2318/UltimateHealth.git
cd UltimateHealth
# Install all workspaces (frontend + packages)
npm install
# Copy environment templates
cp frontend/.env.example frontend/.env
cp packages/persistence/.env.example packages/persistence/.env
cd frontend
npm install --legacy-peer-deps
npm run check-env
npm run start
frontend/.env)| Variable | Purpose |
|---|---|
PROD_URL |
REST API base URL |
SOCKET_PROD |
WebSocket server URL |
CONTENT_CHECKER_PROD |
Content intelligence service URL |
EXPO_PUBLIC_GEMINI_API_KEY |
Gemini API key for AI summaries |
EXPO_PUBLIC_SENTRY_DSN |
Sentry error reporting DSN |
FIREBASE_* |
Firebase project credentials |
Values are injected through app.config.js into expo-constants at build time.
packages/persistence/.env)| Variable | Default | Purpose |
|---|---|---|
REDIS_ENABLED |
true |
Toggle cache layer |
REDIS_URL |
— | Full connection URL (optional) |
REDIS_HOST |
127.0.0.1 |
Redis host |
REDIS_PORT |
6379 |
Redis port |
REDIS_KEY_PREFIX |
ultimatehealth: |
Key namespace |
REDIS_MAX_RETRIES |
10 |
Retry limit |
UH_LOG_LEVEL |
info |
Persistence log level |
# From repository root — full validation suite
npm run validate
# Frontend only
cd frontend
npm run type-check
npm run lint
npm run test
npm run start # Expo dev server
npm run android # Native Android build
npm run ios # Native iOS build (macOS)
| Prefix | Use |
|---|---|
feat/ |
New features |
fix/ |
Bug fixes |
docs/ |
Documentation |
refactor/ |
Internal refactors |
test/ |
Test coverage |
chore/ |
Tooling and CI |
Use Conventional Commits for commit messages.
# Unit tests (Jest + React Native Testing Library)
cd frontend && npm test
# Persistence package (Vitest)
cd packages/persistence && npm test
# Dead code analysis
cd frontend && npm run knip
Test files live alongside source under __tests__/ directories. See TEST_GUIDELINES.md for project conventions.
npx kill-port 8081
npx expo start --port 8082
cd frontend
npm install --legacy-peer-deps
Set ANDROID_HOME to your SDK path and add platform-tools to PATH.
Update Expo Go on your device or use a development build:
npx expo start --dev-client
rm -rf node_modules
npm install --legacy-peer-deps
npm run type-check
Ensure Redis is running locally (redis-server) or set REDIS_ENABLED=false to skip the persistence layer.
Where is the backend API?
The Node.js REST API and MongoDB backend live in a separate repository (ultimatehealth-backend). Configure PROD_URL to point at production or your local instance.
Is Redis required for the mobile app?
No. The persistence package is optional and targets development tooling, CI fixtures, and future cache integrations — not the React Native runtime.
Can I use npm instead of Yarn?
Yes. The root workspace uses npm. The frontend CI still references Yarn lockfiles; both package managers work locally with --legacy-peer-deps for npm.
How do I run on a physical device?
Use Expo dev client or EAS builds. Push notifications require a physical device with FCM configured.
npm run validate before opening a PRMaintainer documentation:
See LICENSE for details.
| Service | Repository |
|---|---|
| Backend API | ultimatehealth-backend |
| Admin panel | ultimatehealth-admin-app |
| Content checker | VeriWise-Content-Check |