Skip to content
All Skills

Pet Care Planner & Tracker

Creates a pet care schedule with vet appointments, medications, feeding routines, and exercise plans. Researches breed-specific care via Brave Search and tracks medical history. Prerequisites: brave-search MCP.

Home & Family|v1|Updated 5/18/2026
MCP get_skill({ skillId: "pet-care-planner-tracker-babc2dae" })

Use this skill with your agent

Create a free account and connect via MCP

Get Started Free
# Pet Care Planner & Tracker

Create a comprehensive pet care schedule with vet tracking, medication reminders, feeding routines, and breed-specific care research.

## When to Use

- "Create a care schedule for my new puppy"
- "Track my cat's vet appointments and medications"
- "What does my {breed} need for exercise and grooming?"

## Requirements

- **Brave Search MCP** for breed-specific care research

## Workflow

### Step 1 — Pet Profile

- **Pet type** (dog, cat, etc.)
- **Breed**
- **Name & age**
- **Weight**
- **Spayed/neutered**
- **Known health issues**
- **Current medications**
- **Vet name and location**

### Step 2 — Research Breed-Specific Care

```
brave_web_search: "{BREED} care guide exercise needs {YEAR}"
brave_web_search: "{BREED} common health issues to watch for"
brave_web_search: "{BREED} feeding guidelines {AGE} {WEIGHT}"
brave_web_search: "{BREED} grooming schedule how often"
```

### Step 3 — Generate Care Plan

```markdown
# Pet Care Plan: {NAME} ({BREED})
🐾 Age: {AGE} | Weight: {WEIGHT} lbs

## Daily Routine
| Time | Activity | Details |
|------|----------|---------|
| 7:00 AM | Morning walk | {DURATION} min |
| 7:30 AM | Breakfast | {AMOUNT} {FOOD_TYPE} |
| 12:00 PM | Midday walk/play | {DURATION} min |
| 5:30 PM | Evening walk | {DURATION} min |
| 6:00 PM | Dinner | {AMOUNT} {FOOD_TYPE} |
| 9:00 PM | Last potty break | 10 min |

## Weekly Tasks
- [ ] Brush teeth (3x/week minimum)
- [ ] Brush coat ({FREQUENCY} for {BREED})
- [ ] Check ears for redness/odor
- [ ] Nail check

## Monthly Tasks
- [ ] Flea/tick prevention ({PRODUCT})
- [ ] Heartworm prevention ({PRODUCT})
- [ ] Weight check (current: {WEIGHT} lbs, target: {TARGET})
- [ ] Toys/supplies inventory

## Annual Schedule
| Month | Task | Notes |
|-------|------|-------|
| {Month} | Annual vet checkup | Vaccinations due |
| {Month} | Dental cleaning | Professional cleaning |
| {Month} | Grooming appointment | Full groom |
```

### Step 4 — Medical History Tracker

```markdown
## Medical History — {NAME}

### Vaccinations
| Vaccine | Date Given | Next Due | Vet |
|---------|-----------|----------|-----|
| Rabies | {DATE} | {DATE} | {VET} |
| DHPP | {DATE} | {DATE} | {VET} |
| Bordetella | {DATE} | {DATE} | {VET} |

### Medications
| Medication | Dose | Frequency | Start | Refill Date |
|-----------|------|-----------|-------|-------------|
| {Med} | {Dose} | {Freq} | {Date} | {Date} |

### Vet Visits
| Date | Reason | Findings | Cost |
|------|--------|----------|------|
| {Date} | {Reason} | {Notes} | ${X} |
```

### Step 5 — Save Plan

```bash
mkdir -p outputs/home/pets
cat > "outputs/home/pets/{PET_NAME}-care-plan.md" << 'EOF'
{CARE_PLAN}
EOF
```

## Important Rules

- Not a substitute for veterinary advice — recommend vet for health concerns
- Breed-specific info from Brave Search to ensure accuracy
- Flag overdue vaccinations or medications as urgent
- Adjust feeding amounts based on age, weight, and activity level

## Example Prompts

- "Create a care schedule for my 6-month-old Golden Retriever"
- "Track my cat's medications and vet appointments"
- "What grooming does a Poodle need and how often?"
#home#pets#health#brave-searchbrave-search