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.
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.
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.
Project Nimbus (Stealth)
Prototypes
An upcoming stealth platform focusing on high-frequency data ingestion and distributed consensus for independent builders. Deep in R&D.
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.
Telemetry Pipeline
Infrastructure
Pipeline that publishes our weekly metrics and velocity to the build-in-public dashboard.
Open Health Schemas
Healthcare
Open-source schemas for prescription routing and patient data interoperability.
Research & Papers
Whitepapers, system design blueprints, and RFCs.
Geospatial Routing for Last-Mile Medicine Delivery
S. Bansode, M. Patil · Jun 2026
Collaborative AI Trip Planning: System Design RFC
S. Bansode, V. Gole · May 2026
Project Nimbus: Distributed Data Ingestion Specs
SYGNIX R&D · Jul 2026
Build-in-Public Telemetry: A Transparency Framework
SYGNIX Labs · Apr 2026
Hardware & Telemetry Logs
Tracking deep technical progress from breadboard to production PCB.
MediRoute Thermal Tracking v1
Initial IoT sensor array for pharmacy cold-chain monitoring. Temperature, humidity, and GPS tracking on ESP32 breadboard.
MediRoute Drone Payload Specs
Speculative payload testing for autonomous medical delivery. Analyzing vibration damping and thermal regulation at high altitudes.
MediRoute PCB Design v1
Custom PCB layout for MediRoute fleet tracking modules. 4-layer board with integrated BLE, GPS, and LoRa connectivity.
MediRoute PCB Fabrication
First batch of 50 units sent for fabrication. Assembly and firmware flashing pending arrival for our beta testing fleet.
Open Schemas & API Specs
Open-source JSON schemas, API specifications, and component structures.
Prescription Routing Schema
{
"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
{
"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
{
"schema": "sygnix/telemetry/v1",
"event": "task_completed | sprint_started | deploy",
"timestamp": "ISO-8601",
"metadata": {
"product": "mediroute | tripmate | aurora",
"engineer": "string",
"duration_ms": "number"
}
}