Booking requests, capacity, and holiday waitlists are the same problem in different shapes: someone submits a request, and it has to check against real availability, then either confirm, decline, or add the person to a queue. That is a scheduling and customer messaging problem, and it is the kind of thing an operations system can run on its own: reading each inbound request, checking the calendar, replying with a decision, and updating the waitlist when a run opens up. It runs the loop day and night, including the busy stretches around holidays when request volume is highest and a kennel owner has the least spare time to answer them by hand.
Vaccination-record chasing is a good example of what an agentic system does well, because it is a repeated loop, not a single task. The system checks each upcoming booking against the records on file, sends the owner a reminder if something is missing or expired, checks again a day or two later, and escalates to a person if nothing has arrived close to drop-off. If a kennel wants owners to upload documents themselves rather than emailing a photo of a vet form, that points toward a small booking portal, which is a full production web app with real storage and multiple users, not just a messaging script. Either way, the system does not decide whether an animal is safe to board without proof of vaccination. That is still a judgment call for staff at the front desk.
Daily photo updates split into two different jobs, and only one of them can be handed to a system. Taking the photo requires a person physically at the kennel with the dog or cat in front of them; no agentic system replaces that. But getting the right photo to the right owner, at the right time, without a staff member stopping mid-shift to text twenty people one by one, is exactly the kind of repetitive routing work a system can own end to end, wired into whatever messaging tool the kennel already uses. The honest boundary is: the system can own the sending, the timing, and the record of who got what. It cannot hold the camera.