Skip to content
View zeeshan1112's full-sized avatar
💭
For you to do something new, you need to stop doing something old.
💭
For you to do something new, you need to stop doing something old.

Block or report zeeshan1112

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
zeeshan1112/README.md

⚡ Zeeshan Ahmad

Oracle PMTS Georgia Tech AI GPA Profile Views

Senior Engineering Leader with 10+ years of experience specializing in the frontier of Agentic AI. I architect full-stack solutions with a focus on Multi-Agent Orchestration, Model Context Protocol (MCP), and enterprise-grade LLM integrations.

zeeshanahmad.devLinkedInEmail


🤖 AI & Engineering Specialization

  • Agentic Systems: Architecting orchestrators using MCP SSE transport and LLM-driven autonomous planning.
  • Full-Stack Oracle AI: Built NL-to-Logic Dataflow Assistants and Python-based LLM communication layers.
  • Scalable Architectures: Expertise in building multi-tenant SaaS platforms and high-performance microservices.
  • DocScale (SaaS): Architecting a multi-tenant "website factory" using Next.js App Router and Supabase RLS.

🛠️ Technical Ecosystem

category tools & technologies
AI / LLM MCP, Prompt Engineering (CoT), NLP, GPT-4o, Claude 3.5 Sonnet, AI-Driven QA Agents
Languages Python, TypeScript, Java, Node.js, JavaScript (ES6+), T-SQL
Frameworks Next.js, React, Spring Boot, Supabase, Tailwind CSS, Express, Docker
Editors Cursor, Claude Code, GitHub Copilot, Antigravity Codex

🌟 Featured Architecture

Native macOS utility optimized for productivity. Prevents system sleep through Python-based activity simulation.

Python macOS API

B2B SaaS for Healthcare. Automated SEO-optimized site provisioning for clinics with strict tenant isolation.

Next.js Supabase Clerk

Professional portfolio and technical blog built with React, Vite, and Keystatic CMS. Features hybrid Markdown storage and a specialized "Reader Mode" for focus.

React TypeScript Vite CMS

Enterprise clinic platform for Neurology. Integrated appointment booking and patient contact systems with high-performance React/Tailwind frontend.

React Tailwind Netlify

📈 Global Impact & Metrics


"For you to do something new, you need to stop doing something old."

Pinned Loading

  1. KeepMacAwake KeepMacAwake Public

    Keeps your computer awake by simulating activity. A smarter mouse jiggler.

    Python 1

  2. co2-calculator co2-calculator Public

    A mini project on Node.js project to return the amount of C02-equivalent that will be caused when travelling a given distance using a given transportation method.

    JavaScript

  3. CRM CRM Public

    A project to demonstrate how to build RESTful API's with Node.js and Express and MongoDB as your database.

    JavaScript

  4. Javascript-Fast-Forward Javascript-Fast-Forward Public

    This repository will contain learning resources for Javascript developers. It can be seen as a personal notes to quickly go through all the important concepts of Javascript.

  5. Code snippet to add branch informati... Code snippet to add branch information on your mac terminal
    1
    # Git branch in prompt.
    2
    parse_git_branch() {
    3
        git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
    4
    }
    5
    export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "