AI Engineer Β· Full-Stack Developer Β· Agentic Systems Builder
Building agentic AI systems, open-source integrations, and real-world automation tools.
| Who | AI Engineer specializing in agentic systems & on-device AI |
| What I Build | Multi-agent pipelines, offline-capable apps, workflow automation |
| Stack | Python Β· Kotlin Β· TypeScript Β· LangGraph Β· RunAnywhere SDK Β· Coral |
| Open Source | 12 PRs to Coral MCP |
| Achievements | Pull Shark (22+ PRs merged) Β· YOLO Β· Quickdraw (< 5 min merge) |
"I build software systems, AI-native products, and agentic interfaces that turn ideas into usable, operational products."
-
AI should operate inside a product, not beside it. A useful system is not just model output. It is the interface, the workflow, the state model, and the decisions around trust.
-
Good AI UX is engineering work. Latency, control, explainability, failure states, response structure, and operator confidence are implementation concerns, not polish afterthoughts.
-
Workflow design matters more than prompt cleverness. The strongest systems are built around routes, actions, validation, and output quality, not one-off prompting tricks.
-
Applied intelligence should feel calm and exact. Serious products communicate precision through restraint, hierarchy, and interface clarity, not through noise.
algsoch β Android AI Study Companion
- 100% Offline β AI runs entirely on-device via RunAnywhere SDK
- 7 Learning Modes β Direct, Explain, Notes, Theory, Creative, Answer, Direction
- SmolLM2-360M + SmolVLM-256M running locally on Android
- Built with Kotlin + Jetpack Compose + RunAnywhere SDK
- YouTube Demo
graph LR
A[User Question] --> B[RunAnywhere SDK]
B --> C[SmolLM2-360M<br/>On-Device LLM]
C --> D[AI Response<br/>Mode-Adapted]
algsochnews β AI-Powered News Pipeline
- 5-Agent orchestration β Article Extraction β News Editor β Visual Packaging β QA β Video Generation
- Parallel processing with conditional retry routing
- Broadcast-native output β Screenplay JSON, timed visuals, MP4 video
- Built with LangGraph + FastAPI + React
- Live: Frontend Β· API
flowchart LR
A[Article URL] --> B[Extraction Agent]
B --> C[News Editor Agent]
C --> D[Visual Packaging]
D --> E[QA Agent]
E -->|Pass| F[Video Generation]
E -->|Retry| C
E -->|Retry| D
careops β Coral-Powered Family Care Coordination
- 9 Coral sources joined via single SQL interface
- Generates doctor-ready visit packets from scattered medical records
- Timeline synthesis across prescriptions, lab reports, symptoms, appointments
- Safety guardrails β never diagnoses or prescribes
- Built with Next.js 15 + Coral SQL + TypeScript
- 22 tests passing (13 careops + 9 coral-cli)
flowchart TD
subgraph App["CareOps Application"]
UI["Next.js UI"] --> API["Next.js API Routes"]
API --> Client["Coral CLI Client"]
Client --> CLI["coral sql --format json"]
end
subgraph Coral["Coral Query Layer"]
CLI --> JOIN["Cross-Source JOIN\n(patient_id key)"]
JOIN --> PAT["careops_patients"]
JOIN --> MED["careops_medications"]
JOIN --> LAB["careops_lab_reports"]
JOIN --> CHAT["careops_doctor_chats"]
JOIN --> PHARM["careops_pharmacy_receipts"]
JOIN --> SYMP["careops_symptom_logs"]
JOIN --> APPT["careops_appointments"]
JOIN --> OCR["careops_prescription_ocr"]
JOIN --> NOTES["careops_family_notes"]
end
CLI --> Result["Joined SQL Result"]
Result --> Agent["CareOps Packet Generator"]
Agent --> Packet["Doctor Visit Packet"]
autopr β GitHub β Social Media Orchestration
- Kestra workflows for event-driven automation
- Generates platform-specific content (LinkedIn, Twitter, Instagram, WhatsApp)
- Parallel AI generation with Gmail notifications
- GitHub webhook-triggered, no backend server required
flowchart LR
A[GitHub Webhook] --> B[Kestra Orchestrator]
B --> C[AI Content Generation]
C --> D1[LinkedIn]
C --> D2[Twitter/X]
C --> D3[Instagram]
C --> D4[WhatsApp]
C --> E[Email Notification]
devalert β LLM-Filtered Opportunity Alerts
- Aggregates from 6 sources: GitHub, MLH, GSoC, Coral, HN, WeMakeDevs
- LLM-powered scoring with configurable threshold
- Telegram + Email notifications via Kestra orchestration
flowchart TD
S1[GitHub] --> AGG[Aggregator]
S2[MLH] --> AGG
S3[GSoC] --> AGG
S4[Coral] --> AGG
S5[HN] --> AGG
S6[WeMakeDevs] --> AGG
AGG --> LLM[LLM Filter/Scorer]
LLM --> T[Telegram Bot]
LLM --> E[Email]
devalert β LLM-Filtered Opportunity Alerts
- Aggregates from 6 sources: GitHub, MLH, GSoC, Coral, HN, WeMakeDevs
- LLM-powered scoring with configurable threshold
- Telegram + Email notifications via Kestra orchestration
Synapse-Graph β AI Autopsy Engine
- Neural circuit discovery β trace which attention heads cause hallucinations
- Causal ablation β O(nΒ²) sweep to isolate defective components
- OpenMetadata governance β tag heads as
DEFECTIVE, mask at runtime - No retraining required β surgical fixes instead of full model updates
- Built with PyTorch + FastAPI + Next.js
flowchart LR
subgraph Dashboard["π¨ Operator Dashboard"]
D["Next.js<br/>React<br/>@xyflow/react"]
end
subgraph Proxy["β‘ Neural Proxy (FastAPI)"]
P["Generation + Tracing<br/>Governance + SSE<br/>HeadMaskStore"]
end
subgraph Generation["π₯ Generation"]
O["Ollama<br/>(Preferred)"]
end
subgraph Tracing["π Tracing"]
T["HF Tracer<br/>PyTorch hooks"]
end
subgraph Governance["π‘οΈ Governance"]
OM["OpenMetadata<br/>Topology + Lineage<br/>Tags β Masks"]
DEF["β DEFECTIVE<br/>β Runtime Mask"]
end
D -->|"REST + SSE"| P
P -->|"Generation"| O
P -->|"Tracing"| T
P -->|"Topology<br/>Lineage<br/>Tags"| OM
OM -->|"tag"| DEF
Demo Β· Product Demo Β· Live Site
CommandBrain β RunAnywhere Command Memory
- Offline-first command copilot that turns natural language into reusable shell commands
- Local command memory stored in IndexedDB β favorites, macros, reminders, patterns
- Safety classification with simulate/real execution modes
- Built with React + TypeScript + RunAnywhere Web SDK
- Live Demo Β· YouTube
flowchart LR
A[Natural Language] --> B[RunAnywhere SDK]
B --> C[Command Generator]
C --> D[Safety Classifier]
D --> E[IndexedDB Memory]
D --> F[Execute/Simulate]
SpeakAI β Local English Practice
- 100% on-device English speaking practice via RunAnywhere Web SDK + llama.cpp WASM
- Browser speech immediately OR optional one-time local model download
- Personality + practice modes with text + voice responses
- No API keys, no server dependency
- Live Demo
| Project | Description | Account |
|---|---|---|
| english_bot | AI conversation practice with speech recognition | algsoch |
| Project | Description | Account |
|---|---|---|
| algsoch | Android AI study companion, 7 learning modes, 100% offline | FiscalMindset |
| algsochvicky | Portfolio website deployed on Render | FiscalMindset |
| Project | Description | Account |
|---|---|---|
| algsochnews | Multi-agent newsroom with 5 agents + video generation | FiscalMindset |
| careops | Coral-powered family care coordination agent | FiscalMindset |
| Synapse-Graph | LLM interpretability with circuit discovery & causal ablation | FiscalMindset |
| Cognivise | Real-time adaptive tutoring with eye tracking | algsoch |
| assistant_chatbot | TDS problem solver & AI assistant, 55+ solvers | algsoch |
| Project | Description | Account |
|---|---|---|
| autopr | GitHub-to-social media via Kestra workflows | FiscalMindset |
| devalert | LLM-filtered developer opportunity alerts | FiscalMindset |
| Project | Description | Account |
|---|---|---|
| english_bot | AI conversation practice with speech recognition | algsoch |
| speakai | On-browser English practice with RunAnywhere WASM | algsoch |
| Project | Description | Account |
|---|---|---|
| brain_tumor | CNN brain tumor detection from MRI | algsoch |
| brain_tumor_cnn | Deep learning tumor classification | algsoch |
| Project | Description | Account |
|---|---|---|
| Sentinel Grid | Kestra-first emergency response with dispatch orchestration Β· Demo | FiscalMindset |
| Kairon | NSUT smart attendance chatbot with Playwright scraping | FiscalMindset |
| polybazar | E-commerce platform | algsoch |
| accomplish | AI desktop agent for file management (contributor) | algsoch |
| smart_terminal | RunAnywhere CommandBrain β offline CLI assistant | algsoch |
Contributor to Coral β SQL-based data abstraction layer for AI agents. Integrated 8 AI providers:
| Provider | PR | Description |
|---|---|---|
| Voyage AI | #1115 | Vector search integration |
| Sarvam AI | #1112 | Indian language TTS/STT |
| Cohere AI | #1098 | Command R integration |
| Mistral AI | #1011 | Mistral model support |
| OpenRouter | #882 | Unified API gateway |
| LM Studio | #834 | Local model serving |
| Ollama | #798 | Local LLM inference |
| Groq AI | #754 | Fast inference provider |
| Category | Technologies |
|---|---|
| On-Device AI | RunAnywhere SDK, ONNX Runtime, WebAssembly, SmolLM2, SmolVLM |
| LLM & Agents | LangChain, LangGraph, Prompt Engineering, RAG, Multi-Agent Systems |
| Model Ops | LLM Evaluation, Hallucination Analysis, Response Evaluation |
| Vision & Speech | Whisper, SmolVLM, Image Analysis, OCR, Web Speech API |
| Category | Technologies |
|---|---|
| Languages | Python, Kotlin, JavaScript, TypeScript, SQL |
| Mobile | Android, Jetpack Compose, React Native |
| Frontend | React, Next.js, Tailwind CSS, Vite |
| Backend | FastAPI, Node.js, PostgreSQL |
| Category | Technologies |
|---|---|
| Orchestration | Kestra, GitHub Actions, Docker |
| Data | Coral SQL, JSONL, SQLite, OpenMetadata |
| Deployment | Render, Vercel, ngrok |
| Article | Publication |
|---|---|
| How I Built CareOps Agent with Coral + OpenCode | Medium |
| Cognivise β Real-Time Cognitive AI Tutor | Medium |
| AI Coding | OpenCode, Codex, AntiGravity, Kimchi, OpenClaw |
| Code Editor | VS Code, Cursor, JetBrains IDEs |
| Terminal | Warp, Hyper, iTerm2 |
| Other | Claude, ChatGPT, Gemini |
| Achievement | Details |
|---|---|
| Coral Hackathon Track 2 | 1st place β CareOps agent with 9 Coral sources |
| Pull Shark | 22+ PRs merged on GitHub |
| YOLO | Fast merge achievement |
| Quickdraw | < 5 min merge time |
| Spoken | English, Hindi |
| Programming | Python, Kotlin, JavaScript, TypeScript, SQL |
| Account | Repos | Stars | PRs Merged | Contributions |
|---|---|---|---|---|
| @FiscalMindset | 20 | 6 | 22 | β |
| @algsoch | 107+ | 24+ | 28 | 350+ |
π Pull Shark (22+ PRs) Β· YOLO Β· Quickdraw (< 5 min merge)
| Project | Impact | Link |
|---|---|---|
| π§ CommandBrain | Offline-first command memory + execution copilot, IndexedDB storage | Live Demo |
| ποΈ SpeakAI | 100% on-device English practice via RunAnywhere WASM | Live Demo |
| π± algsoch Android | 100% offline AI, 7 learning modes, RunAnywhere SDK | GitHub |
| πΊ algsochnews | 5-agent pipeline β broadcast video from any article URL | Live Demo |
| π₯ careops | 9 data sources joined via Coral SQL for family care coordination | GitHub |
| π§ Synapse-Graph | Neural circuit discovery for LLM interpretability | Live Demo |
| π₯ Brain Tumor Detection | 97.9% accuracy CNN model on MRI scans | Live Demo |