skill-elder-detail-cards

Create elder detail and end-of-day report cards from Firestore data.

1|Updated Jun 18, 2025
One-click install
npx skills add https://github.com/qashsolutions/myhealthguide --skill skill-elder-detail-cards
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-elder-detail-cards
Source: https://github.com/qashsolutions/myhealthguide/tree/main/.claude/skills/skill-elder-detail-cards
Command: npx skills add https://github.com/qashsolutions/myhealthguide --skill skill-elder-detail-cards

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables super admins to view elder details, status, and end-of-day report information in a compact caregiver-detail UI, simplifying oversight and decision-making.

Core Features & Use Cases

  • ElderDetailCard: displays avatar, name, age, active status, task and medication progress, and member emails.
  • EndOfDayReportsCard: summarizes auto-sent reports, last sending time, and delivery status for each elder.
  • CaregiverDetailView integration: composes cards for a specific caregiver and supports navigation to deeper care insights.

Quick Start

Create ElderDetailCard and EndOfDayReportsCard components and wire them into the caregiver detail page with Firestore data bindings.

Frequently Asked Questions about skill-elder-detail-cards

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build elder detail cards in a React dashboard using Firestore data?

To build elder detail cards in a React dashboard, create components that read elder data from Firestore collections like elders and caregiver_assignments, then render per-elder cards with task progress and member emails using shadcn/ui Card components and Tailwind classes.

What is an end-of-day report status card for caregiver detail views?

An end-of-day report status card summarizes auto-sent reports, displays the last sending time, and shows PDF report delivery status for each elder within a caregiver detail view interface.

Can I use shadcn/ui and Lucide icons to display medication logs for elders?

Yes, you can use shadcn/ui Card components alongside Lucide icons to display elder medication logs by binding data from the Firestore medication_logs collection to the UI elements.

How do I restrict elder detail card visibility to authorized admins in a caregiver app?

To restrict elder detail card visibility to authorized admins, apply a super admin context check before rendering the cards that read sensitive data from Firestore collections like reportRecipients and mail.

What Firestore collections do I need to display caregiver assignments and elder details?

Displaying caregiver assignments and elder details requires reading from the Firestore collections elders, caregiver_assignments, medication_logs, mail, and reportRecipients to populate the dashboard cards.

What are the limitations of using Firestore for real-time elder detail card updates?

A limitation is that rendering real-time elder detail cards requires careful data binding across multiple Firestore collections like caregiver_assignments and medication_logs, which may increase read operations and complexity.