Title: KennelFlow Vet
Author: Randy Breland
Published: <strong>ജൂൺ 23, 2026</strong>
Last modified: ജൂൺ 30, 2026

---

Search plugins

![](https://ps.w.org/kennelflow-vet/assets/banner-772x250.png?rev=3586735)

![](https://ps.w.org/kennelflow-vet/assets/icon-256x256.png?rev=3586735)

# KennelFlow Vet

 By [Randy Breland](https://profiles.wordpress.org/brelandr/)

[Download](https://downloads.wordpress.org/plugin/kennelflow-vet.0.2.9.zip)

[Live Preview](https://ml.wordpress.org/plugins/kennelflow-vet/?preview=1)

 * [Details](https://ml.wordpress.org/plugins/kennelflow-vet/#description)
 * [Reviews](https://ml.wordpress.org/plugins/kennelflow-vet/#reviews)
 *  [Installation](https://ml.wordpress.org/plugins/kennelflow-vet/#installation)
 * [Development](https://ml.wordpress.org/plugins/kennelflow-vet/#developers)

 [Support](https://wordpress.org/support/plugin/kennelflow-vet/)

## Description

**[Launch the full KennelFlow suite demo on InstaWP](https://app.instawp.io/launch?s=kennelflow&d=v2)**—
temporary WordPress site with Core, Boarding, Vet, Groom, sample data, and the KennelFlow
demo theme; no install on your server.

KennelFlow Vet provides clinical scheduling and record-keeping building blocks that
integrate with KennelFlow shared pets and locations. Install **KennelFlow Core**
first, then activate this add-on.

Primary development and listings use the WordPress.org profile **[@brelandr](https://profiles.wordpress.org/brelandr/).**
Optional commercial services are available via **LandTech Web Designs**.

**Human-readable JavaScript/CSS source (Guideline 4):** Every release includes the
unminified sources under **assets/src/** (see **assets/src/README.txt** for the 
dist-to-source map). Built files under **assets/dist/** are generated via **npm 
run build** (esbuild + Vite). The DICOM viewer bundles **Cornerstone3D** into **
assets/dist/dicom-viewer.js**. Public source: https://github.com/brelandr/kennelflow-
vet — see Developer notes for rebuild steps.

### Try It Live – Preview This Plugin Instantly

**Full KennelFlow suite (InstaWP)**

[Launch KennelFlow on InstaWP](https://app.instawp.io/launch?s=kennelflow&d=v2) —
explore clinic calendar, EMR, boarding desk, grooming schedule, owner portal, and
sample pets on one temporary site. Log in as **admin** / **password** (demo owner:**
demoowner** / **password**).

**Vet + Core only (WordPress Playground)**

Preview KennelFlow Vet in WordPress Playground: the blueprint installs **KennelFlow
Core** and **KennelFlow Vet** from WordPress.org, seeds demo pets and an owner portal,
adds a **Book a Vet Visit** page with `[kennelflow_vet_booking]`, and opens the **
Vet calendar** in wp-admin. Log in as **admin** / **password** (demo owner: **demoowner**/**
password**).

[Preview on WordPress Playground](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/brelandr/kennelflow-vet/main/blueprint.json)

The blueprint ships as `blueprint.json` and `assets/blueprints/blueprint.json`. 
WordPress.org also serves a copy from plugin SVN for directory live preview.

### Developer notes

#### Frontend bundles (readable source and rebuild)

**Public source repository:** https://github.com/brelandr/kennelflow-vet — clone
with `git clone https://github.com/brelandr/kennelflow-vet.git`, then run **npm 
ci** and **npm run build** to regenerate all bundles from the readable sources in**
assets/src/**.

**WordPress.org release package:** each **trunk** or **tag** revision shipped to
WordPress.org should include **assets/src/**, **vite.\*.config.js**, **scripts/build-
assets.mjs**, **package.json**, **package-lock.json**, **tsconfig.json**, and **
assets/dist/** (including the Cornerstone3D-powered **dicom-viewer.js** bundle and**
kennelflow-vet-decode-worker.js**).

**Maintainer zip builds:** From a git checkout you can run **scripts/build-wordpress-
org-zip.sh** locally (repo-only tooling); it stages **release/\*.zip** and verifies**`
assets/dist/`** artefacts and core source entries. Install **Plugin Check** from
https://wordpress.org/plugins/plugin-check/ and validate the staged directory before
uploading to WordPress.org.

**esbuild bundles** (**scripts/build-assets.mjs**) produce **booking-wizard**, **
admin-calendar**, **facility-settings** into **assets/dist/**.

**Vite bundles** rebuild **assets/dist/ai-dictation.\*\*\* from \*\*vite.ai-dictation.
config.js** and **assets/dist/dicom-viewer.\*\*\* from \*\*vite.dicom.config.js**
against the JSX sources listed in **assets/src/README.txt**. Run **`npm run build:
vite`** to rebuild only the Vite targets, or **`npm run build`** / **`npm run build:
all`** for the full pipeline (esbuild + both Vite configs).

**DICOM / Cornerstone3D:** **npm run build** compiles npm packages **@cornerstonejs/
core** and **@cornerstonejs/dicom-image-loader** (upstream https://github.com/cornerstonejs/
cornerstone3D) into **assets/dist/dicom-viewer.js** and **assets/dist/kennelflow-
vet-decode-worker.js** via Vite — no **assets/vendor/** copies and no remote CDNs
load imaging libraries at runtime.

Shipped readable sources map to shipped bundles as follows (see **assets/src/README.
txt** for the definitive table):

 * **assets/dist/booking-wizard.js** / **booking-wizard.css** — TypeScript/React
   in **assets/src/booking-wizard/** (entry **main.tsx**), plus **booking-wizard.
   css**
 * **assets/dist/admin-calendar.js** / **admin-calendar.css** — **assets/src/admin-
   calendar/** (**main.tsx**), plus **admin-calendar.css**
 * **assets/dist/facility-settings.js** / **facility-settings.css** — **assets/src/
   facility-settings/** (**main.tsx**), plus **facility-settings.css**
 * **assets/dist/ai-dictation.js** / **ai-dictation.css** — **assets/src/ai-dictation.
   js** + JSX modules (including **AIDictation.jsx**) via **Vite**
 * **assets/dist/dicom-viewer.js** / **dicom-viewer.css** — **assets/src/dicom-viewer-
   entry.jsx**, **assets/src/DICOMViewer.jsx**, **assets/src/cornerstone3d-bootstrap.
   js**, and **assets/src/dicom-viewer.css**, via **Vite** (bundles Cornerstone3D)
 * **assets/dist/kennelflow-vet-decode-worker.js** — DICOM decode Web Worker emitted
   by the same Vite build (URL passed from PHP; ships beside **dicom-viewer.js**)

Fully regenerate bundles and the DICOM worker from the plugin root (**Node.js current
LTS** recommended):

 1. npm ci
 2. npm run build (alias: **npm run build:all** — esbuild, then AI dictation Vite, 
    then DICOM Vite)

Incremental development:

 * **npm run watch** — esbuild only (booking-wizard, admin-calendar, facility-settings)
 * **npm run watch:vite:ai** — Vite watch for **ai-dictation**
 * **npm run watch:vite:dicom** — Vite watch for **dicom-viewer** and **kennelflow-
   vet-decode-worker.js**

Dependency versions remain pinned via **package.json** / **package-lock.json**.

#### Third-party libraries included in the bundled JS/CSS

The bundled UI loads these runtime OSS libraries straight from the emitted JavaScript
payloads (matching **package.json** majors):

 * React and React DOM — https://react.dev/
 * FullCalendar (core, React adapters, calendars) — https://fullcalendar.io/
 * Cornerstone3D (**@cornerstonejs/core**, **@cornerstonejs/dicom-image-loader**)—
   https://github.com/cornerstonejs/cornerstone3D — https://www.cornerstonejs.org/
 * dicom-parser (transitive dependency of the DICOM image loader) — https://github.
   com/cornerstonejs/dicomParser/

esbuild, Vite, TypeScript, and **@vitejs/plugin-react** are build-time-only developer
dependencies.

#### Admin JavaScript (plain, non-compiled)

The following scripts under **assets/js/** are plain, human-readable JavaScript —
no build step required:

 * **assets/js/admin-ajax.js** — AJAX helpers used across the admin EMR interface
 * **assets/js/admin-emr-confirm.js** — Confirmation dialog for destructive EMR 
   actions
 * **assets/js/admin-emr-pet-search.js** — Pet search autocomplete for EMR admin
   pages

### External Services

This plugin avoids silent network calls beyond what WordPress administrators explicitly
configure.

#### WordPress AI Client (optional SOAP dictation)

Purpose: Clinicians may dictate optional SOAP scaffolding on pet encounter forms.
Audio captured in-browser is processed through the **WordPress AI Client** (`wp_ai_client_prompt()`)
built into WordPress 7.0+ — KennelFlow Vet does **not** call third-party AI HTTP
APIs directly.

Administrator opt-in: **Default-off until a connector is configured.** Site administrators(
typically under **Settings  Connectors**) choose and authorize an AI provider once
at the site level. KennelFlow Vet stores **no** provider API keys. The plugin screen**
KennelFlow Vet  AI dictation** links to Connectors and shows availability status.

When transmissions occur: **Only after** WordPress reports AI support (`wp_supports_ai()`)**
and** a permitted user (EMR edit capability) triggers dictation via the REST route.
The configured connector/provider handles outbound requests; if AI is unavailable,
the route returns an error and no dictation runs.

Data sent: (1) **Audio** — browser-captured dictation uploaded to your WordPress
site, then passed to the AI Client with `with_file()` for transcription; (2) **Transcripts
and prompt snippets** — plain text plus a fixed SOAP-structuring prompt sent through
the same client. No patient identifiers are added by the plugin beyond what clinicians
speak; follow clinic policy when dictating.

Third-party providers: Which external service receives data depends entirely on 
the connector the site owner configures in WordPress (for example OpenAI, Anthropic,
or Google). Review that provider’s terms and privacy policy in Connectors documentation
alongside your facility’s HIPAA/state privacy workflows.

#### DICOM imaging viewer

The bundled DICOM tooling uses self-hosted **Cornerstone3D** JavaScript compiled
into **assets/dist/dicom-viewer.js** (with **assets/dist/kennelflow-vet-decode-worker.
js** for decoding) and does **not**, by itself, relay patient imaging to third-party
viewing platforms.

#### Laboratory webhook ingest (optional, inbound)

Purpose: Clinic staff may configure diagnostic/lab vendors to POST result JSON to
a KennelFlow Vet REST webhook when a shared secret is stored for that provider.

When transmissions occur: **Inbound only** — external lab systems initiate HTTPS
POST requests to your WordPress site at **`/wp-json/kennelflow-vet/v1/lab-integration/
webhook/{provider}`** when an administrator or integration filter configures a webhook
secret for the provider slug. No outbound calls are made to lab vendors by this 
feature.

Authentication: Requests must present the configured shared secret via **`X-KF-Vet-
Lab-Secret`**, **`X-KF-Vet-Lab-Token`**, or **`Authorization: Bearer`** header. 
Requests without a matching secret are rejected (401). If no secret is configured,
the endpoint does not accept data.

Data received: JSON lab result payloads (patient identifiers and result rows as 
supplied by the vendor/integration). Parsed rows are stored in your WordPress database
as EMR lab results for the matched pet. Review vendor agreements and your facility
privacy policy before enabling inbound feeds.

### Privacy

The plugin stores clinical and booking data in your WordPress database and media
library per your configuration. Review your site privacy policy and any other active
plugins for how data is shared.

### Developer Resources

The uncompiled source code, along with build tools and instructions for this plugin,
is publicly available for review, study, and contribution on GitHub: https://github.
com/brelandr/kennelflow-vet . Clone the repo, install dependencies with **npm ci**,
then run **npm run build** so **esbuild** and **Vite** (including the Cornerstone3D
DICOM bundle) all execute (matching the WordPress.org upload layout).

## Screenshots

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

[[

## Installation

 1. Install and activate **KennelFlow Core** from WordPress.org.
 2. Install KennelFlow Vet (upload zip or install from the Plugins screen). The folder
    name should match the plugin slug `/wp-content/plugins/kennelflow-vet/`.
 3. Activate KennelFlow Vet from the Plugins screen.
 4. Configure rooms, locations, and roles for your clinic.

## FAQ

### Does this require another KennelFlow plugin besides Core?

KennelFlow Vet requires KennelFlow Core. Other KennelFlow add-ons are optional.

### Does this send data to external services?

Clinical and booking data ordinarily stay on your WordPress site. **SMTP** mail 
and other unrelated plugins remain outside KennelFlow Vet’s scope. **Laboratory 
ingest** integrations do not transmit data externally unless clinic staff explicitly
configure webhook or ingest flows that invoke other APIs.

**AI SOAP dictation uses the WordPress AI Client (WordPress 7.0+).** KennelFlow 
Vet does not store provider API keys. Site administrators configure AI connectors
under **Settings  Connectors**; only then may permitted clinicians trigger dictation,
which sends in-browser audio and derived text through the configured provider for
transcription and SOAP structuring (see **External Services**). If no connector 
is configured, dictation is unavailable.

The **in-browser DICOM viewer** uses bundled JavaScript shipped with the plugin;
it does **not** upload medical images to a third‑party viewing service by default.

### Where is the non-minified JavaScript and CSS source?

Human-readable sources live under **assets/src/** alongside **assets/src/README.
txt** (dist-to-entry mapping). The same trees ship in every release alongside **
assets/dist/**. Browse or fork from https://github.com/brelandr/kennelflow-vet. 
Run **npm ci** then **npm run build** from the plugin root after edits; see Developer
notes for esbuild vs Vite entrypoints and bundled dependencies.

## Reviews

ഈ പ്ലഗിന് റിവ്യൂകൾ ഒന്നുമില്ല.

## Contributors & Developers

“KennelFlow Vet” is open source software. The following people have contributed 
to this plugin.

Contributors

 *   [ Randy Breland ](https://profiles.wordpress.org/brelandr/)

[Translate “KennelFlow Vet” into your language.](https://translate.wordpress.org/projects/wp-plugins/kennelflow-vet)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/kennelflow-vet/), check
out the [SVN repository](https://plugins.svn.wordpress.org/kennelflow-vet/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/kennelflow-vet/)
by [RSS](https://plugins.trac.wordpress.org/log/kennelflow-vet/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 0.2.9

 * Staff calendar visit photos: load and save on hub `kennelpress_booking` clinic
   rows; grant `upload_files` to clinical desk roles.
 * **Live demo**: InstaWP full KennelFlow suite link in readme; **Live demo** and**
   Get Premium** links on the Plugins screen.

#### 0.2.8

 * Staff calendar **Visit photos** (intake / discharge) on clinic appointments: 
   Take photo, Choose photo, admin meta box, and REST API.

#### 0.2.7

 * Vet bookings: **Reason for visit** and **Appointment notes** fields on the admin
   booking editor, REST API, and registered post meta (`_kf_reason_for_visit`, `
   _kf_appointment_notes`).

#### 0.2.6

 * Veterinarians can open kf_vet_booking appointment posts from the staff calendar(
   map_meta_cap for vet booking CPT).

#### 0.2.5

 * Fix fatal error on Audit Log admin page (removed reference to undefined transient
   constant; object cache only).

#### 0.2.4

 * Vet booking calendar: click an event for details plus **Edit/View appointment**,**
   Edit pet**, **Patient history**, and **Edit owner** links (when permitted).

#### 0.2.3

 * Veterinarian demo/staff: front-end Staff Calendar defaults to **clinic** bookings(
   not boarding kennels).
 * Fix Vet booking calendar and Facility rules admin React mounts (DOM id + localized
   settings matched to built assets).
 * Hub menu access for clinical roles without boarding desk caps; veterinarians 
   can open Pets, Locations, and Rooms.
 * Pet search (Patient history picker and Hub Pets list) matches **owner name** 
   as well as pet name.

#### 0.2.2

 * Vet / clinical staff may view the front-end Staff Calendar (`ltkf_user_can_view_hub_calendar`
   filter).

#### 0.2.0

 * Boarding wizard add-ons: one **pet size** selector per selected pet (multi-pet
   stays); per-pet sizes sent to quote and booking APIs.
 * Dates step: show allowed check-in/out hours; block **Check availability** when
   times are outside facility windows.
 * Add-ons: surface hours errors with **Change check-in/out times**; emergency drop-
   off and extended pick-up flags respected on quote/submit validation.

#### 0.1.9

 * Boarding booking wizard no longer shows the provider/clinician step; that setting
   applies to clinic scheduling, not kennel stays.
 * Booking wizard add-ons step: show a formatted price estimate instead of raw JSON;
   explain when facility uses quote-only pricing (no online rate configured).

#### 0.1.7

 * Fix fatal error in Vet room availability (undefined variable) that returned HTTP
   500 on **Check availability**.
 * Booking wizard: when KennelFlow Boarding is active, use the same boarding availability
   API as My Pets (hub location + kennels); submit bookings via boarding REST.

#### 0.1.6

 * Booking wizard: skip the pet step when pets arrive from the My Pets portal (single
   or multiple); show **Booking for: …** with **Change pets**.
 * Multi-pet boarding: checkbox selection on the pet step; pet count and pricing
   follow selected pets; companion pet IDs sent on submit.

#### 0.1.5

 * Booking wizard: read `kf_pet_id`, `kf_location` (hub location id), `kf_start`,
   and `kf_end` from the URL when arriving from the My Pets portal; map hub locations
   to Vet facility terms, prefill the wizard, and auto-check room availability.

#### 0.1.4

 * Owner portal Medications tab: register `ltkf_portal_medications_panel` and `ltkf_portal_localize_vars`
   so KennelFlow Core shows prescriptions (fixes “Medications are not available 
   on this site” when Vet is active).
 * Refill buttons use Core portal AJAX (`data-kennelflow-vet-refill` / `kennelflow_vet_rx_refill`).

#### 0.1.3

 * Fix undefined `$is_kfvet_cpt` variable in meta capability mapping (typo for `
   $is_kennel_vet_cpt`).

#### 0.1.2

 * Fix Vet calendar and Facility rules admin screens not mounting (React mount element
   and localized config names now match PHP).

#### 0.1.0

 * Initial release on WordPress.org.

## Meta

 *  Version **0.2.9**
 *  Last updated **3 ആഴ്ചകൾ ago**
 *  Active installations **Fewer than 10**
 *  വേർഡ്പ്രസ്സ് പതിപ്പ് ** 6.2 അല്ലെങ്കില്‍ അതിലും ഉയര്‍ന്നത് **
 *  Tested up to **6.8.6**
 *  PHP പതിപ്പ് ** 7.4 അല്ലെങ്കില്‍ അതിലും ഉയര്‍ന്നത് **
 *  Language
 * [English (US)](https://wordpress.org/plugins/kennelflow-vet/)
 * Tags
 * [bookings](https://ml.wordpress.org/plugins/tags/bookings/)[clinic](https://ml.wordpress.org/plugins/tags/clinic/)
   [pets](https://ml.wordpress.org/plugins/tags/pets/)
 *  [Advanced View](https://ml.wordpress.org/plugins/kennelflow-vet/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/kennelflow-vet/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/kennelflow-vet/reviews/)

## Contributors

 *   [ Randy Breland ](https://profiles.wordpress.org/brelandr/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/kennelflow-vet/)