Skip to content
View AlchemistReturns's full-sized avatar

Block or report AlchemistReturns

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

Abrar Mahmud Hasan

Computer Science Undergraduate • Software Engineer • AI Systems Builder

Currently focused on Multi-Agent Systems, AI Infrastructure and Production ML

Resume LinkedIn GitHub Followers


Image

Featured Projects

Sentinel — Multi Agent AI code auditor

AI engineer that audits codebases with multi-agent LangGraph orchestration and opens validated, human-reviewed fix PRs — never auto-merges

Repository: https://github.com/AlchemistReturns/Sentinel

Highlights

  • Built a multi-agent LangGraph system (Security, Quality, Test analysts) that audits codebases in parallel, grounded in real tool output (semgrep, pip-audit) rather than LLM pattern-matching.
  • Implemented a diagnose-propose-validate-PR pipeline: findings get deterministic risk tiers, fixes are validated via lint/test regression checks before opening GitHub PRs, with risky changes forced to draft for human review.
  • Hardened for production with a Redis-backed task queue, distributed locking to prevent concurrent duplicate fixes, per-audit spend caps, and a kill switch — all verified under real concurrent load.

Architecture

                        +------------------------+
                        |   Next.js Dashboard    |
                        +-----------+------------+
                                    |
                          HTTPS / WebSocket
                                    |
                        +-----------v------------+
                        | FastAPI Orchestrator    |
                        | (REST + WebSocket)      |
                        +-----------+------------+
                                    |
                        +-----------v------------+
                        | LangGraph Audit Graph   |
                        +-----------+------------+
                                    |
                        +-----------v------------+
                        |   Ingest / Scope        |
                        +-----------+------------+
                                    |
          +-------------------------+-------------------------+
          |                         |                         |
+---------v--------+     +----------v---------+     +---------v---------+
| Security Analyst  |     | Quality Analyst    |     | Test Analyst       |
| (semgrep,pip-audit)|     | (dead code)        |     | (coverage gaps)    |
+---------+--------+     +----------+---------+     +---------+---------+
          |                         |                         |
          +-------------------------+-------------------------+
                                    |
                        +-----------v------------+
                        | Diagnose (risk tier,   |
                        | dedup via semantic cache)|
                        +-----------+------------+
                                    |
                        +-----------v------------+
                        | Propose Fix (LLM)      |
                        +-----------+------------+
                                    |
                        +-----------v------------+
                        | Validate (ruff+pytest) |
                        +-----------+------------+
                                    |
                        +-----------v------------+
                        | Open PR (GitHub API)   |
                        | draft if risky          |
                        +------------------------+

        +---------------------+       +----------------------+
        | Postgres + pgvector |<----->| LangGraph Checkpointer|
        +---------------------+       +----------------------+

        +---------------------+
        | Redis: queue, cache,|
        | lock, kill switch,  |
        | spend budgets       |
        +---------------------+

        +---------------------+       +----------------------+
        | OpenAI (LLM calls)  |       | LangSmith (tracing)  |
        +---------------------+       +----------------------+
HealthX — AI-powered telehealth platform

AI-powered telehealth platform built for underserved rural communities with unreliable connectivity.

Repository: https://github.com/AlchemistReturns/HealthX

Highlights

  • Built HealthX, a full-stack telehealth platform (React/Vite, Node.js/Express, Firebase Auth) for underserved rural regions with unreliable connectivity, integrating Google Gemini for context-aware symptom analysis using patient history.
  • Designed a hybrid online/offline architecture with client-side image compression and a hardcoded fallback dataset, ensuring core diagnosis and hospital-lookup features remain functional on unstable 2G/3G networks.
  • Implemented a GPS-based hospital finder combining live OpenStreetMap/Overpass queries with an offline emergency database, plus one-tap Google Maps/Waze navigation handoff.

Architecture

                           +----------------------+
                           |      React App       |
                           +----------+-----------+
                                      |
                +---------------------+----------------------+
                |                                            |
                | Internet Available                         | Offline
                |                                            |
        +-------v--------+                          +---------v---------+
        | Express API    |                          | Local Emergency   |
        +-------+--------+                          | Dataset           |
                |                                   +---------+---------+
        +-------+---------+                                   |
        | Firebase Auth   |                                   |
        +-----------------+                                   |
                |                                              |
        +-------v---------+                           +--------v--------+
        | Gemini API      |                           | Offline Search  |
        +-----------------+                           +-----------------+

                |
        +-------v------------------+
        | OSM / Overpass API       |
        +--------------------------+
                |
        Google Maps / Waze
Valerix — Fault-tolerant microservices platform

Fault-tolerant distributed e-commerce backend with graceful degradation.

Repository: https://github.com/rawadhossain/Valerix

Highlights

  • Designed a fault-tolerant Node.js/Express microservices architecture (Order, Inventory, API Gateway) implementing timeout-triggered fallback from synchronous HTTP calls to asynchronous RabbitMQ messaging, preventing request hangs during downstream service degradation.
  • Engineered idempotent message processing via an IdempotencyLog table to guarantee exactly-once inventory deduction under message retries/duplication, alongside indefinite connection-retry logic for self-healing broker reconnection on startup or outage.
  • Instrumented services with Prometheus (RED metrics) and Grafana dashboards, and built real-time latency-alerting in the frontend, enabling observability into distributed failure modes (simulated via a configurable latency-injection mechanism).

Architecture

                    +-------------------+
                    |     Frontend      |
                    +---------+---------+
                              |
                     API Gateway
                              |
                 +------------+------------+
                 |                         |
         HTTP Success                Timeout
                 |                         |
        +--------v--------+        +-------v--------+
        | Order Service   |------->| RabbitMQ       |
        +--------+--------+        +-------+--------+
                 |                         |
                 |                  Retry / Queue
                 |                         |
        +--------v--------+        +-------v--------+
        | Inventory       |<-------| Worker         |
        | Service         |        +-------+--------+
        +--------+--------+                |
                 |                         |
        +--------v---------+               |
        | Idempotency Log  |               |
        +------------------+               |
                                           |
                +--------------------------+
                |
      Prometheus ---> Grafana ---> Alerts
Grit — Local-first Git intelligence CLI

Local-first Git intelligence CLI for engineering decision tracking.

Repository: https://github.com/AlchemistReturns/grit

Highlights

  • Built grít, a Go CLI that hooks into git pre-commit, post-rewrite, and post-commit stages to run adaptive interviews, capturing the reasoning behind commits, dependency changes, and reverts.
  • Implemented a real-time file watcher with a keyword-based complexity scorer, vague-identifier detection, and paste/AI-assist heuristics, all configurable via .grit.yaml thresholds.
  • Designed a local-first SQLite (WAL mode) storage layer with per-repo isolation, plus stats, decision (ADR-style), and Markdown/JSON push export commands — no cloud dependency.

Architecture

               Developer
                    |
               Git Commit
                    |
      +-------------+--------------+
      |                            |
 pre-commit                 post-commit
      |                            |
      +-------------+--------------+
                    |
               Grit Engine
                    |
     +--------------+----------------------+
     |              |                      |
 File Watcher   Interview Engine   Complexity Analysis
     |              |                      |
     +--------------+----------------------+
                    |
             SQLite (WAL Mode)
                    |
      +-------------+-------------+
      |             |             |
    stats       decision       push
                                 |
                    Markdown / JSON Export
CurioKids — AI-assisted educational platform

AI-assisted educational platform for early learners.

Repository: https://github.com/AlchemistReturns/CurioKids

Highlights

  • Built CurioKids, a cross-platform React Native/Expo educational app with dual parent/child dashboards, an interactive lesson engine, and gamified mini-games (math, literacy, motor skills) for early learners.
  • Designed a Node.js/Express backend with Firebase Authentication and Firestore, syncing progress in real time to give parents actionable analytics and drive point-based rewards and leaderboards.
  • Integrated an AI chatbot via a self-hosted RAG service (FastAPI + Ollama, Dockerized), enabling local LLM-backed learning assistance without external API dependencies.

Architecture

                     React Native App
                            |
         +------------------+-------------------+
         |                                      |
   Parent Dashboard                      Child Dashboard
         |                                      |
         +------------------+-------------------+
                            |
                    Node.js / Express
                            |
          +-----------------+----------------+
          |                                  |
   Firebase Auth                     Firestore
          |                                  |
          +-----------------+----------------+
                            |
                     FastAPI RAG Service
                            |
                         Ollama LLM

Technical Toolkit

LangGraph LangSmith Multi--Agent RAG Fine--tuning

FastAPI Gin Django Spring Boot Next.js SQL NoSQL

Docker Kubernetes Prometheus Grafana


"Intelligence is the system. I build what holds it up."

Pinned Loading

  1. Sentinel Sentinel Public

    AI engineer that audits codebases with multi-agent LangGraph orchestration and opens validated, human-reviewed fix PRs — never auto-merges

    Python

  2. HealthX HealthX Public

    Bridging the healthcare access gap in Bangladesh's hill tracts and rural regions with an AI-powered, offline-capable telehealth platform. Combines Gemini-driven symptom analysis with a hybrid onlin…

    TypeScript

  3. rawadhossain/Valerix rawadhossain/Valerix Public

    Valerix is a Kubernetes-orchestrated microservices platform that demonstrates service resilience, controlled failures, and production style cloud deployment using Docker and AWS EKS.

    TypeScript 2

  4. CurioKids CurioKids Public

    A gamified educational mobile app that turns early learning into interactive play, with parent and child dashboards, mini-games for math and literacy, and an AI chatbot companion. Built with React …

    TypeScript 1

  5. grit grit Public

    A developer friction logger. grít hooks into your git workflow and file editor to capture the moments that actually slow you down — the hard decisions, the vague names, the AI-assisted pastes, the …

    Go