AI Software Engineer · Cloud Engineer · DevOps Engineer · Solutions Architect
Murtaza
Nipplewala
I build AI-powered applications end to end from backend, frontend, data pipeline, and LLM integrations to the scalable cloud infrastructure they run on.
Skills & Certifications

AWS Certified DevOps Engineer – Professional

AWS Certified Solutions Architect – Associate

AWS Certified Developer – Associate

AWS Certified Data Engineer – Associate
AI & LLMOps
ML & MLOps
Data & DBs
Cloud Platforms
Infrastructure & CI/CD
Observability
Languages & Frameworks
…and always learning
Happy to pick up whatever the next problem needs.
Experience
AI Software Engineer
Bitcoin Culture Hub
As an early team member, I own much of the technical foundation of two products: CLCT, an online marketplace, and OptEn (Opportunity Engine), a professional networking platform — working across frontend, backend, database, infrastructure, and LLM integration.
- Built the AI recommendation systems powering both products — personalized product discovery in CLCT, and connection, job, and event recommendations in OptEn — using embedding models and LLMs via OpenAI and AWS Bedrock.
- Designed organization-to-organization matching that aligns one organization's products and services with another's stated needs, deliberately excluding competitors rather than relying on similarity alone.
- Built a job application portal end to end (posting, submission, applicant tracking, recruiter review) with two-stage applicant ranking: embedding-based retrieval followed by re-ranking with Cohere Rerank 3.5 on Bedrock.
- Instrumented products with OpenTelemetry and AWS Distro for OpenTelemetry (ADOT), exporting distributed traces to X-Ray and metrics and logs to CloudWatch, with alarms on latency, error rate, and AI model cost.
- Built real-time messaging over WebSockets with connection lifecycle handling, message persistence, and delivery state.
- Hardened an inherited codebase with critical security gaps (broken access control, credential exposure, committed secrets), raised test coverage from 10% to 94%, and introduced mutation testing to validate test effectiveness.
- Migrated MySQL to PostgreSQL with AWS DMS, introduced schema version control with Alembic, and built isolated dev and prod environments with a scheduled one-way prod-to-dev sync across RDS and S3 — moving all local development off production data.
- Authored technical documentation used in investor due diligence and audits for both products, and serve as the primary technical point of contact with our AWS account team.
Cloud/DevOps Engineer
Bridge Informatics
- Designed and implemented scalable cloud architecture on AWS for data-intensive applications, using ECS and EKS (Kubernetes) for container orchestration and CloudWatch for centralized monitoring and alerting — reducing client expenditure by 30%.
- Led migration of on-premises applications to AWS using Migration Hub, Application Migration Service (MGN), Database Migration Service (DMS), and DataSync, configuring networking (VPC), access control (IAM, Cognito, SSO), and load balancing (ALB/NLB) for improved performance and lower maintenance costs.
- Built and maintained CI/CD pipelines with AWS CodePipeline and GitHub Actions for automated testing, builds, and zero-downtime deployments across multiple environments.
- Automated infrastructure provisioning with Terraform, CloudFormation, and Ansible, minimizing configuration drift.
Featured Projects
SOC-Claw / Blue Lantern
Multi-Agent Incident Response Coordinator
Apr 2026 – Present
The Problem
Security Operations Center (SOC) teams process thousands of SIEM alerts every day. About 95% are noise, while the remaining 5% represent critical threats that cost millions per breach on average. SOC-Claw automates alert triage so analysts can focus on the threats that matter.
Approach — Why a second agent checks the first
A three-agent AI pipeline (Triage → Verifier → Response) that enriches raw alerts, double-checks its own reasoning, and proposes response plans that an analyst approves before anything runs.
Key Highlights
- Triage Agent enriches raw alerts with IP reputation databases, MITRE ATT&CK technique mapping, and asset CMDB lookups, producing P1–P4 severity scores with confidence ratings and reasoning chains
- Self-correcting Verifier Agent (no tools) runs a 4-point checklist — evidence alignment, reasoning completeness, logical consistency, and bias detection — improving triage accuracy from 78% to 88%
- Response Agent generates prioritized incident response plans with per-step reasoning and urgency levels, requiring analyst approval before execution
- Privacy-aware routing keeps sensitive SOC data (internal IPs, hostnames, alert payloads) on local inference via vLLM, with optional routing to cloud endpoints
- FastAPI backend and Red Hat-themed dashboard for real-time alert analysis, triage visualization, and per-step action approval or rejection
Tech Stack
SavVio
AI Financial Advocate
Jan 2026 – Present
The Problem
Consumers often make impulsive purchases without understanding the true financial impact. Existing budgeting apps track spending but don't proactively evaluate whether a purchase is wise. SavVio bridges this gap by combining AI reasoning with deterministic financial rules to deliver personalized Buy/Wait/Avoid recommendations.
Approach — Why I didn't just use an LLM for everything
An AI-driven financial advocacy tool that evaluates purchase decisions using a hybrid architecture combining LLM-based context understanding with a deterministic financial logic engine for affordability analysis.
Key Highlights
- RAG pipeline with LangChain and pgvector product embeddings for context-aware product utility analysis through GPT-4.1, Claude 4.5, and Gemini 3
- Trained, tuned, and compared classifier and regression models for Buy/Wait/Avoid recommendations, with MLflow experiment tracking and model versioning
- Apache Airflow pipelines for data ingestion and model training, with Great Expectations data validation and Evidently AI drift monitoring
- NVIDIA NeMo Guardrails as FastAPI middleware for pre- and post-LLM response validation
- Containerized FastAPI services on GCP Cloud Run, with CI/CD through GitHub Actions and Cloud Build
- Prometheus, Grafana, and GCP Cloud Monitoring for latency, drift, and cost tracking with billing alerts, plus DVC data versioning on GCP Cloud Storage
Tech Stack
AI Study Guide
Multi-Agent Study Guide Generator
Jul 2026
The Problem
Asking one LLM prompt to plan a topic, explain it, and quiz you on it mixes three jobs and makes each worse. Splitting the work across focused specialists gives cleaner outlines, clearer notes, and better review questions — and it can all run on models hosted on your own machine.
Approach — One job per agent
A multi-agent system that turns any topic into a beginner-friendly study guide — a three-part outline, concise notes, and review questions — saved as clean Markdown, using models hosted locally on Ollama, LM Studio, or any OpenAI-compatible server.
Key Highlights
- Three specialist agents in a sequential pipeline: a planner writes the outline, a teacher turns it into notes, and a quiz writer creates review questions
- Plain Python + LangChain version where a controller function passes each agent's output to the next, timing every step
- LangGraph version of the same flow, with each specialist as a node, shared state, and edges START → planner → teacher → quiz → END
- Runs fully on local models through Ollama, LM Studio, or any OpenAI-compatible server such as vLLM or llama.cpp
- Documents common multi-agent patterns: parallel specialists, orchestrator–subagent, supervisor/router, human-in-the-loop, and review loops
Tech Stack
Nuclear Shelter Location by AI-Optimization
Genetic Algorithm for NP-Hard Optimization
Jan 2026 – Apr 2026 · Northeastern University
The Problem
Placing emergency shelters optimally is an NP-hard problem — brute force is intractable at scale. This project uses evolutionary computation to find near-optimal shelter placements that maximize population coverage while respecting blast zone safety constraints and infrastructure accessibility.
Approach — Using evolutionary computation for real-world facility placement
A Genetic Algorithm for the Uncapacitated Facility Location Problem (UFLP) that identifies optimal nuclear shelter locations across ~30,000 US zip codes, maximizing population coverage while enforcing a 15-mile blast zone exclusion radius around urban targets.
Key Highlights
- Binary chromosome encoding with tournament selection, uniform crossover, and bit-flip mutation, evolving candidate solutions toward high-fitness placements
- Multi-objective fitness: population coverage within a serviceable radius, strategic safety (distance from nuclear targets), and infrastructure accessibility (road networks and power grid)
- Geospatial data from the US Census Bureau (zip code populations), nuclear target databases, and OpenStreetMap road networks
- Spatial joins, distance calculations, and exclusion zone masking with GeoPandas, Shapely, and OSMnx
- Benchmarked against a greedy baseline heuristic, with the GA better balancing competing objectives across large candidate sets
Tech Stack
Kambaz
Learning Management System
Sep 2025 – Dec 2025 · Northeastern University
The Problem
Educational institutions need flexible LMS platforms that handle distinct user workflows — admins managing users, professors building courses, and students consuming content. Kambaz demonstrates end-to-end web development with complex authorization logic and a split deployment architecture.
Approach — Designing for three different user types
A full-stack learning management system similar to Canvas, with a React frontend, a Node.js backend, MongoDB for persistent storage, and a RESTful API.
Key Highlights
- Role-based access control with separate Admin, Professor, and Student views
- Course management, assignment submission, quizzes, exams, and grading workflows
- RESTful API design with a Node.js backend and MongoDB data layer
- Split deployment: frontend on Vercel and backend on Render, with CORS policies and production build pipelines
Tech Stack
More Projects
AutoFinder
Vehicle Marketplace
Jan 2025 – Apr 2025 · Northeastern University
A full-stack vehicle listing application similar to CarGurus, with search, filter, and comparison features backed by optimized SQL queries.
Libre Food Pantry
Full-Stack App on AWS
Jan 2022 – Jul 2022 · Worcester State University
Deployed a full-stack application on AWS serving USDA FSIS data to Libre Food Pantry, containerized with Docker Compose for consistent deployments across staging and production.
OP Credit
Android App
Jan 2021 · Worcester State University
A Java-based Android app that streamlines credit-based work assignments, with separate professor and student login flows and Google Drive file uploads. Led a team of four and presented it at a hackathon.
Car Insurance Report
Distributed Data Analysis
Oct 2020 – Dec 2020 · Worcester State University
Distributed processing of insurance datasets with Apache Spark on AWS EMR, using data mining and statistical analysis to assess correlations between attributes, with Python analysis scripts and R visualization dashboards.