Skip to main content
HW88
  • Our StoryTeamFounder
  • Ventures
  • Learn
  • CapabilitiesBuild PodsEngagement
  • Insights
  • Media
  • Case Studies
  • Our StoryTeamFounder
  • Ventures
  • Learn
  • CapabilitiesBuild PodsEngagement
  • Insights
  • Media
  • Case Studies
  • Contact
HavenWizards88

Venture Studio for high-stakes founders. We build and automate entire ecosystems for global scale.

Company

  • About Us
  • Team
  • Ventures
  • Case Studies
  • Learn
  • Insights
  • Media
  • Build Log

Services

  • Capabilities
  • Build Pods
  • Strategic Advisory
  • Technology Development
  • Growth Acceleration
  • FAQ

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 HavenWizards 88 Ventures OPC. All rights reserved.

Makati City, Philippines

  1. Home
  2. /Ventures
  3. /PupPedigreePro
Back to Ventures

PupPedigreePro

An offline-first mobile breeding operations system for serious dog breeders — pedigree, heat-cycle, and AI health discipline that works in a kennel where signal drops to zero.

MVPPetTech / Mobile Apps
Share

The Challenge

Filipino dog breeders run multi-dog operations on notebooks, spreadsheets, and memory. Heat cycles get missed. Vaccination dates slip. Pedigree certificates take 30 to 60 minutes to reconstruct from incomplete notes. A single missed breeding window costs PHP 15,000 to 50,000 in lost litter revenue, and the average breeder spends 4 to 8 hours per week on manual record-keeping. Existing tools — BreedMate, Breeders Assistant — are desktop-bound, $50 to $200 USD up-front, and have no Filipino market presence. None of them work in a kennel with patchy connectivity. None of them have AI. Mobile-first breeding discipline as a category is undefined and undefended.

The Solution

P3 deploys an offline-first mobile breeding system: 34 screens, 17 services, and a 7-table PostgreSQL schema with Row-Level Security on every user-data table, all cached locally via expo-sqlite and synced through NetInfo-driven reconciliation. Four production-grade Gemini AI surfaces — health insights, breeding compatibility scoring, pregnancy stage assessment, and photo breed analysis — turn raw breeding records into structurally-enforced decision support. Stripe-powered freemium runs through four Supabase Edge Functions (webhook, create-subscription, cancel-subscription, create-payment-intent) so card data never touches the app. Firebase FCM and Expo Notifications fire heat-cycle, vaccination, and pregnancy-milestone reminders even when the user has skipped a week. Arena-forged for breeders working in vet clinics, dog shows, and outdoor kennels where signal is the exception, not the rule.

Want to build something like PupPedigreePro?

We deploy the same production-grade systems powering this venture to partner projects. No prototypes — real infrastructure, real operators.

Discuss a PartnershipSee How We Work

How We Built It

The Operating Thesis

Missed cycles destroy more litters than poor genetics. Lost vaccination dates destroy more puppy health than any single vet error. Reconstructed pedigrees destroy more buyer trust than any flaw in the lineage itself. Modern dog breeding is operationally fragile not because breeders lack skill, but because their operating system is paper, spreadsheets, and group-chat threads. PupPedigreePro exists because breeding discipline cannot be willpower-dependent — it has to be structurally enforced by the system the breeder uses every day, in the field, with no internet.

What We Deploy

  • Dog Operations Core: Per-dog records — name, breed, registration number, gender, photo, lineage — with freemium gating at 2 dogs (Free), 5 dogs (Premium), unlimited (Pro). Enforced at write time, not as a UI hint.
  • Heat Cycle Engine: Logs each cycle, computes the next predicted cycle from per-dog history, and fires push notifications at the 14-day and 7-day breeding-window threshold. Eliminates the single most expensive operational miss in the breeding business.
  • Breeding Event + Pregnancy Tracker: Records matings, auto-calculates the 63-day expected whelping date, and emits milestone reminders at the 21-day ultrasound, 45-day x-ray, and 58-day nesting markers. Day-by-day pregnancy progress in a single view.
  • Litter and Puppy Ledger: Per-puppy tracking — name, gender, birth weight, current weight, color, status (alive, deceased, sold, kept). The data that becomes a defensible pedigree report two years later.
  • Four Gemini AI Surfaces (Premium): Health Insights analyzes a dog's full health record and returns urgency level plus next steps; Breeding Recommendations scores compatibility 0 to 100 with genetic considerations; Pregnancy Insights assesses stage and surfaces warning signs; Photo Analysis predicts breed and flags health observations from a single image. Each surface degrades gracefully when the Gemini API is unavailable — the app never crashes, the last response stays cached.
  • COI Calculator: Coefficient of Inbreeding calculation with risk-level interpretation, integrated into the AI breeding recommendation flow.
  • Pedigree + Health Export (Premium): PDF generation via expo-print for shareable pedigree reports and vaccination schedules. The growth-loop primitive — every shared report carries P3 branding for a buyer who may become the next breeder.

The Architecture

Production-grade mobile infrastructure. React Native 0.81 on Expo SDK 54 with TypeScript 5.9. UI is React Native Paper (Material Design 3) with React Navigation 7 (stack plus bottom tabs). State runs through React Context (Auth, Notification, Offline, Accessibility). The backend is Supabase PostgreSQL with Row-Level Security on every user-data table — user A cannot read user B's dogs, health records, cycles, breeding events, litters, or puppies, period. Auth is Supabase Auth (email plus password) with session persistence. Stripe runs through four Supabase Edge Functions — no card data touches the app, ever. Google Gemini Flash powers the four AI surfaces with a 1,500 req/day free-tier ceiling and graceful degradation. Firebase Cloud Messaging plus Expo Notifications handle push delivery. Offline state is owned by expo-sqlite with NetInfo-driven sync — every CRUD operation works at zero bars and reconciles when signal returns. Forms are validated with Zod 3.

The Three Tiers

Freemium is structurally enforced, not paywalled by judgment. Each tier has a hard ceiling checked at the service layer before any write reaches Supabase.

  • Free — 2 dogs: Full health, heat-cycle, breeding, litter, and puppy tracking. No AI. No export. 30-day data history. Designed to surface the upgrade trigger when a breeder's third dog hits the gate — not to paywall the core workflow.
  • Premium — $9.99 / month or $99.90 / year: 5 dogs. Unlimited data history. All four Gemini AI surfaces. PDF and Excel export. Advanced reminders. Priority sync.
  • Pro — $24.99 / month or $249.90 / year: Unlimited dogs. Everything in Premium. Multi-user kennel access, custom branding, and API access architected for Phase 2.

What's Built (Verified 2026-05-07)

  • 34 screens across the breeding-operations workflow with all 32 P0 screens implemented.
  • 17 service modules: dog, health record, heat cycle, breeding, litter, AI (Gemini), subscription, Stripe, export, offline, notification, smart notification, notification scheduler, image, user profile, plus Supabase config and shared utilities.
  • 7 PostgreSQL tables: user_profiles, dogs, health_records, heat_cycles, breeding_events, litters, puppies — Row-Level Security on every user-data table, ON DELETE CASCADE wired so account deletion removes everything downstream.
  • 5 SQL migrations with auto-create profile trigger and updated_at triggers across mutable tables.
  • 4 Stripe Edge Functions: webhook, create-subscription, cancel-subscription, create-payment-intent. Card data never reaches the app.
  • Offline-first sync: expo-sqlite cache with NetInfo-driven reconciliation. Read and write at zero bars. Queue-and-flush on reconnect.
  • 4 Gemini AI surfaces: health, breeding, pregnancy, photo. All implemented and working with graceful-degradation paths.
  • Tooling discipline: ESLint 9, TypeScript 5.9 strict, Jest plus jest-expo configured, Zod 3 validation, EAS build pipelines for iOS and Android. Bundle target under 50 MB on initial download.

Regulatory Posture

  • PCI-DSS: Stripe handles every card transaction. The application never sees card numbers. PCI scope is minimized by architecture, not by policy.
  • Data Privacy Act of 2012 (Philippines): Account deletion removes all user data via ON DELETE CASCADE through user_profiles. Privacy policy and right-to-deletion deployed pre-launch.
  • GDPR readiness: Data export available on Premium tier. Deletion endpoint already implemented. Consent management on the pre-launch roadmap for international expansion.
  • AI as informational, never veterinary: Every Gemini surface ships with a clear disclaimer — AI provides informational suggestions only, not veterinary advice. The boundary is structural, not advisory.

Out of scope — by design, forever

  • Veterinary clinic management: Different user, different workflow, different regulatory surface. Not building it.
  • Dog show event coordination: Show scheduling, judging, scoring is a separate product category. Not building it.
  • Pet retail / e-commerce: No product catalog, no shopping cart, no retail checkout.
  • Social network: No feeds, follows, likes, or community noise. The marketplace stays a transactional surface, never a feed.
  • GPS / activity / fitness tracking: We are not a pet wearable. We are a breeding operations system.
  • Real-time chat between users: No in-app messaging. Pedigree is the artifact, not the conversation.
  • Desktop-first workflows: Mobile is the design target. Expo web is a bonus surface, not a power-user workbench.

Roadmap

  • Phase 1 — Polish and P0 Gaps (Weeks 1–2): Onboarding flow polish, Zod validation across all services, accessibility audit (WCAG 2.1 AA on critical flows), error and offline state handling, and bundle-size optimization.
  • Phase 2 — Testing and Security (Weeks 3–4): Configure Jest plus jest-expo unit suite across all 17 services, integration tests for auth and the breeding lifecycle, RLS security audit, E2E tests via Maestro or Detox, and crash reporting wired in.
  • Phase 3 — Store Submission and Launch (Weeks 5–6): EAS production builds for both platforms, App Store Connect plus Google Play Console submission, marketing landing surface, analytics event pipeline live, and seed launch into Philippine breeding communities.
  • Phase 4 — Growth Loop Activation (Weeks 7–12): Shareable public pedigree URLs with P3 branding (the product-led growth primitive), puppy weight tracking with breed-standard curves, document attachments per record, CSV import for migrating breeders, and AI-powered notification content.
  • Phase 5 — Expansion (Months 4–6): Marketplace MVP for puppy listings with pedigree data attached, Pro-tier multi-user kennel access, Filipino / Tagalog localization, advanced color and trait genetics, and Southeast Asia expansion (Thailand, Indonesia first).

Why This Matters for the Platform

PupPedigreePro is the PetTech instance of the same operating thesis that runs every HavenWizards 88 venture: humans need externalized structure to behave well under operational pressure. The same systems lens that built Bayanihan Harvest in agriculture, CapitalWizards in behavioral fintech, and AHA eCommerce in decision-grade ecommerce now lives in the breeding-operations category. The Philippine market is the launch surface, not the ceiling. The 15-20 percent annual growth of the Philippine pet industry, the 78 percent smartphone penetration, and the absent Filipino-focused breeding software stack make this a category opening, not a category fight.

Tech Stack

React Native 0.81Expo SDK 54TypeScript 5.9React Native PaperReact Navigation 7Supabase (PostgreSQL + Auth + Storage + Edge Functions + RLS)expo-sqliteStripeGoogle GeminiFirebase Cloud MessagingExpo NotificationsZod 3ESLint 9Jest + jest-expoEAS Build
Explore Our Portfolio

Other Ventures We Build & Operate

Bayanihan Harvest logo

Bayanihan Harvest

AgriTech

National-Scale AgriTech Super-Platform for Philippine Agriculture

GrowthActive
A

AgriForge

AgriTech SaaS

White-Label Agricultural SaaS for Regional Cooperatives

ConceptActive
H

HW88 Education

Education

Practitioner-Led Workshops, Courses, and Masterminds

MVPActive
143 Basketball Haven logo

143 Basketball Haven

Sports Media & Tech

Your Global Basketball Intelligence Hub — Players, Stats, Gear, and Game Insights in One Place.

MVPActive

Get the Founder's Briefing

A bi-weekly, no-fluff dispatch of the systems, playbooks, and decisions we are using right now inside our ventures and partner builds. Expect short, tactical notes you can apply in the same week.

Join 2,000+ founders and operators.

No spam. Unsubscribe anytime.

Partner With Us

Interested in partnering on a venture?

Start a Conversation