Skip to content
View sbmadhav's full-sized avatar
:octocat:
I may be slow to respond.
:octocat:
I may be slow to respond.

Block or report sbmadhav

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
sbmadhav/README.md

Madhav Srinivasan – Engineering Leader

👋 Hi, I'm Madhav Srinivasan

Senior Director of Engineering | AI Systems Architect | Frontend Platform Leader | DevOps Transformation on GCP

I build and scale high-performing engineering organizations that deliver modern frontend platforms, enterprise-grade AI systems, and mission-critical digital experiences. My work spans AI agents, voice systems, React/Next.js architectures, DevOps acceleration, and organizational design for engineering velocity.

I enjoy solving ambiguous, high-impact problems and driving zero-to-one initiatives from concept to production.


🧭 Leadership Focus Areas

AI & Agentic Systems

  • Led development of enterprise Conversational AI/Voice Agents (Grace) and multimodal digital agents (Ascension Companion)
  • Architect AI platforms using Claude Sonnet, Gemini 2.5, Deepgram, ElevenLabs, Vertex, MCP tool calling, evaluations, RAG
  • Established enterprise processes for AI safety, observability, governance, and PHI/PII compliance

Frontend Platform Engineering

  • Scale Next.js + React architectures serving millions of users
  • Lead development of an enterprise design system (Helix)
  • Drive accessibility, performance, reliability, and SEO excellence

DevOps & Cloud Engineering

  • Modernizing infrastructure from PCF to GCP native (GKE, Cloud Build, Cloud Deploy, Terraform)
  • Nx monorepo acceleration, CI/CD optimization, and engineering productivity improvements
  • Build systems that reduce build times, remove operational drag, and improve stability

Organizational Leadership

  • Lead multi-disciplinary engineering teams (frontend, AI, platform, DevOps)
  • Build culture around accountability, clarity, engineering excellence
  • Lead zero-to-one initiatives in ambiguous problem spaces
  • Partner with Product, Design, Compliance, Call Center Ops, and Marketing to deliver enterprise outcomes

🛠️ Technical Expertise

Core Stack

Python

---

📈 Engineering Impact (Selected)

  • Built a Conversational AI platform decreasing cost per call from ~$1.70/min to ~$0.30/min
  • Increased engineering velocity across frontend & DevOps teams through monorepo strategy and CI/CD optimization
  • Led redesign of enterprise digital experience stack with Next.js, dramatically improving performance & SEO
  • Built multi-agent, evaluation-first architecture for healthcare workflows with PHI-compliant pipelines
  • Scaled engineering teams, improved hiring quality, and instituted modern engineering practices

⚡ My Most Used Language

Madhav's Top Languages

📈 My Github stats

Madhav's Stats

⌨️ My OSS / Personal project contribution this week

Madhav's WakaTime ---

🔗 Connect

Pinned Loading

  1. Delete git branches that did not rec...Delete git branches that did not receive any commits in the last two months
    1
    #!/bin/bash
    2
    forkin$(git branch -r | sed /\*/d);do
    3
    if [ -z"$(git log -1 --since='2 months' -s $k)" ];then
    4
     branch_name_with_no_origin=$(echo $k| sed -e "s/origin\///")
    5
    # echo deleting branch: $branch_name_with_no_origin
  2. VS code Extensions you needVS code Extensions you need
    1
    # The VS code extensions I use all the time #
    2
    3
    ## Code ##
    4
    5
    ### Formatter ###
  3. Errors I have encountered and resolvedErrors I have encountered and resolved
    1
    # Errros I have encountered and resolved #
    2
    ## NVM and VSCode ##
    3
    4
    VSCode would throw error like below:
    5
  4. Life saver git commandsLife saver git commands
    1
    # Delete branches that did not receive commits more than 4 weeks
    2
     for k in $(git branch | sed /\*/d); do 
    3
     if [ -n "$(git log -1 --since='12 weeks ago' -s $k)" ]; then
    4
     git branch -D $k
    5
     fi
  5. Front-End-Architecture-ChecklistFront-End-Architecture-ChecklistPublic

    Forked from rcherny/Front-End-Architecture-Checklist

    Checklist of front end development centric technology structure considerations on a Web site or Web application project.