Skip to content
View adityajadhavv18's full-sized avatar

Block or report adityajadhavv18

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
adityajadhavv18/README.md

whoami

class Aditya:
    def __init__(self):
        self.role     = "Agentic AI Engineer"
        self.base     = "Full-Stack Developer"
        self.i_build  = ["multi-agent systems", "tool-using agents", "the infra around them"]
        self.i_obsess = "reliability and evaluation over flashy demos"
        self.mission  = "give software agents a body in the real world"

    def ship(self):
        return "agents that hold up in production"

I'm an Agentic AI Engineer with a full-stack backbone. I design autonomous, multi-agent systems that plan, reason, and use tools, and I build the infrastructure that makes them real, from the model call all the way to the interface a user touches.

The part I actually care about is the hard part: agents that keep their memory intact across long tasks, tool calls that don't shatter on messy input, and orchestration you can still debug when no two runs behave the same. Anyone can demo an agent that works once. I want to know its measured success rate and why it moved.


What I Do

Building agents that work. Designing multi-agent systems with real memory, planning, and reliable tool use, then wrapping them in full-stack products that ship.

Engineering for production. Treating evaluation, observability, and reliability as first-class, so an agent's behavior is measured and debuggable, not a black box.

Bridging software to the physical world. Deeply interested in embodied AI, taking the orchestration I build in software and giving it a way to act in the real world.


Arsenal

Agentic & LLM Orchestration

Agent SDKs

Core & Infrastructure


How I Architect Agents

Not a wrapper around a model call. A system with a control loop, a memory layer, hardened tools, and a measurement layer that tells me when it degrades.

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#161B22','primaryTextColor':'#E6EDF3','primaryBorderColor':'#1F6FEB','lineColor':'#58A6FF','secondaryColor':'#21262D','tertiaryColor':'#0D1117','fontSize':'15px'},'flowchart':{'padding':22,'nodeSpacing':70,'rankSpacing':95,'curve':'basis'}}}%%
flowchart LR
    U([User Goal]) --> P[Planner<br/>decompose into subgoals]
    P --> R{{Reasoning Loop}}
    R -->|select| T[Tool Layer<br/>validated schemas]
    T -->|result| O[Observation<br/>verify and ground]
    O -->|replan on failure| R
    R -->|task complete| A([Answer / Action])

    M[(Memory<br/>working - episodic - semantic)] <--> R
    G[Guardrails<br/>scoped permissions] --- T
    E[Eval and Observability<br/>traces - success rate - cost] -.-> R
    E -.-> T
    E -.-> A

    style U fill:#1F6FEB,stroke:#1F6FEB,color:#fff
    style A fill:#1F6FEB,stroke:#1F6FEB,color:#fff
    style R fill:#21262D,stroke:#58A6FF,color:#E6EDF3
    style E fill:#161B22,stroke:#8B949E,color:#8B949E
    style G fill:#161B22,stroke:#8B949E,color:#8B949E
    style M fill:#161B22,stroke:#58A6FF,color:#E6EDF3
Loading

The two boxes most people skip are the two I refuse to: guardrails on the tool layer, and eval plus observability wrapping the whole loop. An agent you cannot measure is an agent you cannot improve.


In Motion

A short explainer of how an end to end agentic system actually runs a task.

How an agentic system works

Let's Build Something

Pinned Loading

  1. Agentic-Ai-Practical Agentic-Ai-Practical Public

    Python

  2. research_assistant research_assistant Public

    Agentic AI research assistant built with LangGraph, GPT-4o-mini & Tavily. Ask a question, get a sourced, structured report — fully autonomous.

    Python

  3. Openai_SDK Openai_SDK Public

    Python

  4. ecom-analyst ecom-analyst Public

    Python

  5. inventory-system inventory-system Public

    Python

  6. Postgres-MCP Postgres-MCP Public

    JavaScript