The Git-Native Interop Framework

Healthcare Pipelines
Defined as Code.

Stop fighting legacy GUI-based engines. Build, version, and deploy healthcare integration pipelines using YAML and TypeScript.
AI-friendly by design.

$ npm install -g intu-dev
01.

Git-Native Workflow

No more proprietary databases. Everything from channel routing to transformations is a plain text file. Version control your clinical logic like modern software.

02.

AI-Friendly Logic

Built for the age of LLMs. Pure TypeScript transformers and structured YAML configuration make it trivial for AI to generate, audit, and fix your mappings.

03.

Profile Layering

Keep your logic dry. Use `intu.yaml` for base config and layer environment-specific overrides like `intu.prod.yaml` for zero-friction deployments.

Developer-First CLI

A powerful Go-based runtime foundation with an intuitive CLI.

Available Commands
Command Description
intu init <name> Bootstrap a new project structure
intu c <name> Fast alias to add a new channel
intu channel add Interactively add a new channel to project
intu channel list List all configured channels in project
intu channel describe Show detailed configuration for a specific channel
intu validate Check YAML and TypeScript for errors
intu build Compile TypeScript transformers into production runtime

Built for the modern stack.

Legacy integration engines were built for a different era of computing—proprietary XML schemas, heavy Java runtimes, and "click-ops" management.

intu is built for high-velocity engineering teams who value automation, CI/CD, and developer experience.

  • Pure TypeScript Transformers (JSON in, JSON out)
  • Go-based CLI/Runtime (Fast & Lightweight)
  • Root-level named destinations
// transformers/adt-map.ts
export const
transform
= (
msg
:
HL7JSON
) => {
return
{
resourceType: "Patient",
id: msg.PID["3.1"],
name: [{ family: msg.PID["5.1"] }]
}
}