Harvington Tech

Featured Projects

Transforming organisations with automation and AI

matching.ts
Health Professionals
// Rule-based + vector similarity matching
export function scoreCandidate(candidate: Candidate, shift: Shift): number {
  const skillsScore = intersection(candidate.skills, shift.requiredSkills).length;
  const distanceKm = haversine(candidate.location, shift.location);
  const distanceScore = Math.max(0, 10 - distanceKm / 5);
  const availabilityBonus = candidate.availableFrom <= shift.start ? 5 : 0;
  return skillsScore * 3 + distanceScore + availabilityBonus;
}

export function rank(candidates: Candidate[], shift: Shift) {
  return candidates
    .map(c => ({ c, score: scoreCandidate(c, shift) }))
    .sort((a, b) => b.score - a.score)
    .slice(0, 5);
}
Health Professionals

Health Professionals

A comprehensive healthcare staffing platform that revolutionises how medical professionals connect with healthcare facilities across the United Kingdom.

Key Features

  • Intelligent matching algorithm for optimal staffing solutions
  • Real-time availability management system
  • Automated compliance and certification tracking
HP Mindcare

HP Mindcare

A specialised platform connecting mental health professionals with patients, streamlining the delivery of mental healthcare services throughout the UK.

Key Features

  • End-to-end encrypted video consultations
  • Comprehensive patient management system
  • Seamless appointment booking and management
assistant.ts
HP Mindcare
// Retrieval-augmented chat message
const answer = await assistant.respond({
  question,
  retrieve: [
    { type: 'documents', tags: ['care-plan','policy'] },
  ],
  guardrails: { piiRedaction: true }
});
routes.ts
HP Homecare
// Optimise care routes with simple heuristics
export function optimise(visits: Visit[]) {
  return nearestNeighbour(visits)
    .map(batch => twoOpt(batch));
}
HP Homecare

HP Homecare

An innovative home healthcare management system that enables efficient care delivery and coordination.

Key Features

  • Care schedule management
  • Real-time care updates
  • Family portal access

Have a project in mind?

Let’s discuss outcomes, timelines, and a practical roadmap tailored to you.

Get in touch