We build for consequence.
Stackzy operates out of IIT Bhilai, an institution that rewards correctness over confidence, and ships over noise. That environment shaped how we think about software: as something that either holds or doesn't.
- Full-Stack Development
- AI / LLM Integration
- Web3 & Smart Contracts
- System Architecture
- DevOps & Infrastructure
Experience with
Built in-house
Full-stack dApp for tokenizing real-world assets on Ethereum. Solidity smart contracts handle issuance, ownership transfer, and on-chain governance. React + Vite frontend connects via Hardhat-deployed contracts on a local or test network.
Command-line tool to inspect IIT Bhilai's private blockchain via an RPC endpoint. Browse blocks, transactions, accounts, and live network health, formatted table output and a packaged Windows binary for zero-install use. Built in Node.js using ethers.js.
Decentralised marketplace for trading surplus solar energy between producers and consumers. Solidity smart contracts enforce trade settlement on-chain; React frontend deployed live on Vercel, participants list, bid, and confirm transfers without any intermediary.
Retrieval-Augmented Generation pipeline that grounds LLM responses in user-supplied documents. HuggingFace model backend, LangChain orchestration, and a Streamlit interface, queryable over any uploaded corpus without retraining the model.
TypeScript CLI agent published on npm as @shell-ai/cli. Uses a ReAct (Reason-Act) loop to translate natural language into terminal tool calls, file reads, shell execution, web search, long-term memory. Supports MCP server integration for custom tools. Runs entirely on local Ollama models, zero network calls.
Browser-based LaTeX editor with Monaco, real-time PDF compilation, and a floating AI assistant. Supports Gemini, OpenAI, Anthropic, and local Ollama, user brings their own key or endpoint. Write, debug, fix, and diff-preview AI suggestions before accepting. Live on Vercel with a companion Express proxy for LaTeX compilation.
AI coding assistant for VS Code, published on the VS Code Marketplace. Connects to local Ollama models: no API keys, no telemetry, fully offline. Right-click any selection to explain, refactor, or document with AI. Context-aware: feeds selected files or the full workspace into the prompt. Chat history persisted per workspace.
Production-level CUDA implementation of the DAC 2025 paper iG-kway: Incremental k-way Graph Partitioning on GPU. First GPU-parallel incremental graph partitioner, supports vertex/edge insertion and deletion without full re-partition. Custom warp-aligned bucket-list data structure, parallel refinement kernel using segmented scan, and constrained coarsening. Benchmarked at up to 84× speedup over G-kway on industrial circuit graphs.
A Unix shell implemented in C, not a wrapper, an original. Custom reimplementations of ls, cat, cp, mv, mkdir, pwd, grep, each as a modular header. Built on raw POSIX: fork, exec, wait, file descriptors, I/O redirection. The kind of project that reveals how much the OS is doing while you weren't looking.
A compiler front-end for Go built with Flex and Bison. Lexer tokenises Go source, Yacc grammar parses it, and the pipeline emits three-address code (TAC) as intermediate representation, the stage between source and machine code. Covers lexical analysis, grammar rules, symbol resolution, and IR generation. Compiler construction is one of the few domains where knowing the full stack is not optional.
Full-stack job hunting and recruitment platform built with a production-grade infrastructure stack. Kafka handles async event streaming between services, job postings, applications, notifications. Redis manages session caching and rate limiting. PostgreSQL for relational data, React frontend, Node.js backend, all containerised with Docker. The stack combination is what makes it notable: most job boards don't need Kafka. This one was built to scale as if it did.
A production-ready FastAPI server template with a dynamic Role-Based Access Control system, not hardcoded roles, but runtime-configurable permissions. Roles, resources, and access rules are managed through the API itself. The kind of auth architecture that gets quietly copied into three other projects once someone sees it working.
Real-time chat application built on Socket.IO with React, Express, and Tailwind. State managed globally with Zustand, no prop drilling, no Redux overhead. Rooms, live presence, instant message delivery. The stack is lean precisely because nothing unnecessary is in it.
A lost and found platform built specifically for IIT Bhilai, real users, real campus problem. Items posted with image uploads via Cloudinary, Express + MongoDB backend, React + Tailwind frontend. The IIT Bhilai context matters: this is infrastructure built for a community that uses it. Software that solves a problem for people you know is a different category from software that demonstrates a tutorial.
Selected projects
Full-stack healthcare web app with a live production domain. Express REST API handles auth, patient records, and file uploads via structured controllers, middleware, and models. React + Tailwind frontend built with 313 commits across 2 contributors, the most commit-dense project in the profile.
Real-time polling system built as a task for Intervue, a developer interview platform. Socket.io handles live vote broadcasting across connected clients with zero page refresh. Separate Node.js backend deployed independently on Vercel, both repos live in production.
Rust-based arbitrage detection bot on the Polygon network. Periodically queries WETH/USDC prices across QuickSwap and SushiSwap via Uniswap V2-style routers, calculates net profit after simulated gas cost, and logs actionable opportunities. Built as a fintech engineering task, the only Rust project in the team's public work.
Full-stack submission for the HP problem statement at Inter-IIT Tech Meet 13, India's premier inter-IIT engineering competition. Agentic RAG pipeline built on Pathway's real-time vector store: multi-agent query augmentation, document retrieval, and a Flask + Socket.IO backend streamed live into a React chat interface with speech recognition. 4 contributors, 2 forks.