SYGNIX

Loading

R&D Lab

Innovation
Vault.

A transparent look into our active technical work, research papers, hardware telemetry, open schemas, and speculative prototypes.

Active R&D Projects

Filterable gallery of ongoing technical initiatives.

Active

MediRoute Realtime Engine

Healthcare

A fully custom geospatial routing engine for MediRoute's last-mile pharmacy delivery network. Handles millions of concurrent coordinate updates, live ETA calculation, and driver tracking in a high-density urban matrix.

RustRedisgRPCPostGIS
Active

TripMate AI Planner

AI

A multi-modal AI travel companion. Generates full itineraries, handles real-time collaborative editing (via CRDTs), syncs calendars, and provides context-aware group consensus on budgets and activities.

PythonTensorFlowReact NativeYjs
R&D

Project Nimbus (Stealth)

Prototypes

An upcoming stealth platform focusing on high-frequency data ingestion and distributed consensus for independent builders. Deep in R&D.

WebAssemblyRustEdge Functions
Active

Sygnix Design System

Open Source

Our internal component library and design tokens, being open-sourced for the community. Powers MediRoute, TripMate, and all our web properties.

ReactTailwindFramer Motion
Completed

Telemetry Pipeline

Infrastructure

Pipeline that publishes our weekly metrics and velocity to the build-in-public dashboard.

GoClickHouse
Completed

Open Health Schemas

Healthcare

Open-source schemas for prescription routing and patient data interoperability.

GraphQLTypeScript

Research & Papers

Whitepapers, system design blueprints, and RFCs.

Published#Geospatial#Healthcare#MediRoute

Geospatial Routing for Last-Mile Medicine Delivery

S. Bansode, M. Patil · Jun 2026

RFC#AI#SystemDesign#TripMate

Collaborative AI Trip Planning: System Design RFC

S. Bansode, V. Gole · May 2026

Draft#Infrastructure#Stealth

Project Nimbus: Distributed Data Ingestion Specs

SYGNIX R&D · Jul 2026

Published#BuildInPublic#Infrastructure

Build-in-Public Telemetry: A Transparency Framework

SYGNIX Labs · Apr 2026

Hardware & Telemetry Logs

Tracking deep technical progress from breadboard to production PCB.

CompletedJan 2026

MediRoute Thermal Tracking v1

Initial IoT sensor array for pharmacy cold-chain monitoring. Temperature, humidity, and GPS tracking on ESP32 breadboard.

12 sensors • 48hr battery life • ±0.3°C accuracy
R&DFeb 2026

MediRoute Drone Payload Specs

Speculative payload testing for autonomous medical delivery. Analyzing vibration damping and thermal regulation at high altitudes.

2.5kg payload limit • -10°C to 40°C tests
CompletedMar 2026

MediRoute PCB Design v1

Custom PCB layout for MediRoute fleet tracking modules. 4-layer board with integrated BLE, GPS, and LoRa connectivity.

42mm × 38mm • 4-layer FR4 • BLE 5.0 + LoRa
In ProgressMay 2026

MediRoute PCB Fabrication

First batch of 50 units sent for fabrication. Assembly and firmware flashing pending arrival for our beta testing fleet.

50 units • JLCPCB • 2-week lead time

Open Schemas & API Specs

Open-source JSON schemas, API specifications, and component structures.

Prescription Routing Schema

json
{
  "schema": "sygnix/prescription-route/v1",
  "prescription_id": "rx_uuid_v4",
  "patient": { "id": "string", "location": "GeoJSON" },
  "pharmacy_candidates": [
    { "id": "string", "stock": "boolean", "eta_mins": "number" }
  ],
  "routing_constraints": {
    "max_distance_km": 5,
    "urgency_level": "standard | urgent | emergency"
  }
}

Trip Itinerary API Spec

json
{
  "endpoint": "POST /api/v1/trips/generate",
  "body": {
    "destination": "string",
    "dates": { "start": "ISO-8601", "end": "ISO-8601" },
    "travelers": "number",
    "budget": { "currency": "INR", "max": "number" },
    "preferences": ["adventure", "culture", "food"]
  },
  "response": {
    "itinerary_id": "string",
    "days": [{ "activities": [], "meals": [], "transport": [] }]
  }
}

Telemetry Event Schema

json
{
  "schema": "sygnix/telemetry/v1",
  "event": "task_completed | sprint_started | deploy",
  "timestamp": "ISO-8601",
  "metadata": {
    "product": "mediroute | tripmate | aurora",
    "engineer": "string",
    "duration_ms": "number"
  }
}