I design and build the automation layer that healthcare organizations need — multi-system integrations, e-signature workflows, HIPAA-compliant dashboards, and cloud-native data pipelines. I eliminate paper, reduce manual handoffs, and turn 45-minute admin tasks into one-click processes.
{
"developer": "R.",
"title": "Healthcare Automation Engineer",
"focus": [
"Healthcare Operations Automation",
"Multi-System Integration",
"Cloud-Native Architecture"
],
"skills": {
"automation": ["N8N", "Webhooks", "REST APIs", "OAuth2"],
"serverless": ["AWS Lambda", "Event-Driven", "API Gateway"],
"e_signature": ["E-Sign APIs", "Composite Envelopes"],
"cloud": ["AWS DynamoDB", "Amplify", "Lambda", "IAM"],
"telehealth": ["Virtual Care", "AI Pre-Eval", "E-Rx"],
"frontend": ["SPA Dashboards", "HTML/CSS/JS"],
"compliance": ["HIPAA", "PHI Protection", "Audit Trails"]
},
"languages": ["English", "Spanish"],
"availability": "Remote — Worldwide"
}
Operations, scheduling, referrals, routing, e-signatures, and configuration platforms serving live medical practices
Autonomous pipelines handling patient intake, document routing, status synchronization, and file delivery
Replaced multi-page paper forms and fax machines with one-click digital referrals and legally-binding e-signatures
Multi-step N8N pipelines connecting 5+ services per workflow — webhooks, REST APIs, databases, e-signature platforms, and notification systems running autonomously 24/7.
HIPAA-compliant dashboards for medical operations — patient intake, referral management, provider scheduling, document routing, and multi-tenant access control.
Full API integration with e-signature platforms — composite templates, embedded signing ceremonies, real-time status polling, and automated PDF delivery.
Serverless backends on AWS — DynamoDB for high-throughput NoSQL storage, Lambda for event-driven logic, Amplify for CI/CD hosting, IAM for granular access control.
Event-driven AWS Lambda functions for automated data processing, API endpoints, scheduled tasks, and N8N-to-Lambda pipelines — zero server management.
End-to-end virtual care systems — AI-powered intake, secure video consultations, e-prescriptions, pharmacy fulfillment, and automated follow-up scheduling.
All projects built for live healthcare operations under HIPAA/NDA — details are sanitized
Designed and built a complete digital referral platform that replaced a paper-based referral process for a multi-location medical practice. The system handles 12 medical specialties, generates composite e-signature envelopes with auto-populated patient data, and includes real-time signature status tracking with automated PDF delivery.
Built a centralized operations dashboard for clinic coordinators to manage daily workflows across multiple providers and locations. The platform consolidates patient intake, appointment scheduling, referral routing, and provider assignments into a single real-time interface.
Developed an automated referral routing system that intelligently distributes incoming patient referrals to the correct specialty providers based on diagnosis codes, geographic proximity, and provider availability. Eliminates manual triage and reduces referral processing time from hours to seconds.
Architected a standalone e-signature solution that integrates with multiple signing platforms via their REST APIs. The system handles document preparation, envelope creation with dynamic field mapping, embedded signing ceremonies, real-time status callbacks, and secure signed document retrieval.
Built a complete telehealth platform from scratch — from patient intake form submission through AI-powered pre-evaluation, HIPAA-compliant payment processing, private secure video consultations with physicians, e-prescription generation, pharmacy fulfillment with medication payment, and fully automated follow-up and refill scheduling. Operations receives detailed revenue and error reporting.
Sanitized code patterns from production healthcare systems
Production N8N workflows use composite template patterns to dynamically assemble multi-document e-signature envelopes based on user selections. Each workflow handles error recovery, token refresh, and status synchronization autonomously.
// Pattern: Dynamic Template Assembly
const templateRegistry = loadTemplates(config);
const selectedServices = parseUserSelections(input);
const compositePayload = {
documents: [],
recipients: { signers: [] }
};
for (const service of selectedServices) {
const template = templateRegistry[service.type];
if (!template) continue;
compositePayload.documents.push({
templateId: template.id,
fields: mapPatientData(service, demographics),
anchorTabs: buildFieldAnchors(template.schema)
});
}
// Single signature ceremony for all documents
compositePayload.recipients.signers.push({
name: provider.name,
authMethod: "embedded",
tabs: mergeTabs(compositePayload.documents)
});
return await createEnvelope(compositePayload);
Serverless data pipelines handle real-time record management with strict multi-tenant isolation. Every database operation uses expression-based queries with reserved keyword handling and atomic status transitions.
// Pattern: Status Synchronization Pipeline
async function syncDocumentStatus(records) {
for (const record of records) {
const externalStatus = await checkSigningPlatform(
record.envelopeRef
);
if (externalStatus === "completed") {
await updateRecord({
table: config.TABLE_NAME,
key: {
recordId: record.id,
entityName: record.entity
},
update: "SET #s = :newStatus",
names: { "#s": "status" },
values: { ":newStatus": "completed" }
});
await triggerDownstream(record, "ready");
}
}
}
High-converting Shopify stores and WordPress sites with custom architectures, advanced page builders, and optimized conversion funnels.
{% comment %}
Dynamic Section Rendering from Metafields
{% endcomment %}
{% assign config = product.metafields.custom.config.value %}
{% if config.isActive %}
{{ config.headline }}
{% for item in config.items %}
{{ item.title }}
{{ item.description }}
{% endfor %}
{% endif %}
I audit and optimize for Core Web Vitals, implement structured data, and configure analytics pipelines that capture granular user behavior.
/**
* Defer non-critical loads for optimal LCP/TBT
*/
export const optimizeLoadQueue = () => {
if ('requestIdleCallback' in window) {
requestIdleCallback(() => {
injectAnalytics();
preloadHeavyAssets();
});
} else {
setTimeout(() => { injectAnalytics(); }, 2000);
}
};
const injectAnalytics = () => {
const dataLayer = window.dataLayer || [];
dataLayer.push({
'event': 'core_metrics_ready',
'status': 'optimized'
});
};
All projects in this portfolio were built for live healthcare organizations under strict HIPAA compliance and NDA agreements. I cannot share production URLs, client names, or any interface that could expose Protected Health Information (PHI).
I'm happy to provide a private screen-recorded walkthrough during an interview to demonstrate the depth and complexity of these systems.
Available for remote full-time or contract roles in healthcare automation, workflow engineering, cloud architecture, and full-stack integration.