I'm Ved Chauhan โ founder of SNOWBROS, an independent software engineering studio. I build across two worlds:
- Developer tools & systems โ writing a native Rust static-analysis engine (Snowbros Atlas) with a shared semantic IR, a tree-sitter frontend per language, a built-in LSP, and a VS Code extension.
- Full-stack products โ shipping production Next.js + Supabase applications, from luxury e-commerce to education platforms, to paying customers โ plus cross-platform work like Accounic, a multi-currency ledger running on web, Android and Windows off one schema.
I care about work that is deterministic, provable, and fast โ and about UI that feels premium.
struct Engineer {
name: &'static str,
studio: &'static str,
focus: [&'static str; 3],
principle: &'static str,
}
fn main() {
let ved = Engineer {
name: "Ved Chauhan",
studio: "SNOWBROS",
focus: ["Developer Tools", "Systems (Rust)", "Full-Stack Products"],
principle: "Same input in, same result out โ accuracy over quantity.",
};
println!("{} builds {} kinds of things.", ved.name, ved.focus.len());
}As of v0.4.0 Atlas is multi-language by architecture: JavaScript, TypeScript, React, Next.js, and Python all lower into one shared semantic IR, and every rule is either language-agnostic or scoped to a language family in one place โ never an if language == branch inside a detector. It builds whole-project symbol, import, and file graphs, then reports problems it can prove โ circular imports, dead files, server/client boundary leaks, React hook misuse, unused deps, hardcoded secrets, oversized functions โ each with an evidence chain. Ships an LSP + VS Code extension, SARIF/JSON/HTML/Markdown reports, and a guarded auto-fix engine. 23 rules, cross-platform, published to crates.io, npm, Homebrew, and the VS Code Marketplace.
Also building Mentor โ an engineering-intelligence orchestrator skill for Claude Code (TEACH or BUILD mode across the whole stack).
Languages
Frontend
Systems & Backend
Mobile & Cloud
๐ฆ Snowbros Atlas โ Multi-Language Static Analysis Engine (Rust)
Deterministic engineering-intelligence platform. One shared semantic IR across JS/TS and Python; the same rule runs on every language it applies to.
| Category | Details |
|---|---|
| Stack | Rust, Tree-sitter, LSP, VS Code API |
| Languages analyzed | JavaScript, TypeScript, React, Next.js, Python |
| Distribution | crates.io ยท npm ยท Homebrew ยท VS Code Marketplace |
| Highlights | Shared IR ยท 23 rules ยท evidence-first ยท guarded auto-fix ยท SARIF/LSP |
| Repo | github.com/snowbros-labs/atlas |
| Live | snowbros.me/atlas |
๐ค Mentor โ Engineering-Intelligence Skill for Claude Code
A capability orchestrator that composes only the specialist expertise a task needs, in TEACH or BUILD mode across the whole stack.
| Category | Details |
|---|---|
| Type | Claude Code skill / orchestrator |
| Repo | github.com/snowbros-labs/mentor-skill |
| Focus | Software ยท backend ยท frontend ยท architecture ยท security ยท AI ยท DevOps |
๐ Accounic โ Multi-Currency Accounting Ledger (3 clients, 1 backend)
A personal accounting system where the database owns every balance and no client ever adds up a column. Web, Android and Windows all speak to the same Postgres schema through the same validated RPCs.
| Category | Details |
|---|---|
| Stack | Next.js 15 ยท React 19 ยท Flutter 3.29 ยท Supabase / PostgreSQL |
| Clients | Web, Android APK, Windows installer โ one shared data contract |
| Accounting | FIFO settlement allocator, opening balances, retractable history |
| Multi-currency | Entries keep the currency they were entered in; base-currency totals are supplementary, never a replacement. Live mid-market rates (open.er-api.com โ ECB fallback) |
| Security | Forced RLS on every table, anon holds no EXECUTE in public, CSP/HSTS, host-allow-listed update links |
| Tests | 234 SQL assertions ยท 180 Flutter ยท 64 web ยท 71 tenant-isolation checks over real HTTP |
| Updates | Checks GitHub Releases on launch and offers the new build |
| Repo | github.com/VED2107/accounic |
๐ฎ VED.EXE โ Retro-Gaming Developer Portfolio
Production developer portfolio with CRT effects, terminal UI, RPG mechanics, and live GitHub integrations.
| Category | Details |
|---|---|
| Stack | Next.js 16, React 19, GSAP, TypeScript |
| Live | ved.exe.snowbros.me |
| Features | CRT effects, terminal UI, RPG mechanics, GitHub GraphQL integration |
๐๏ธ Vinnys Vogue โ Luxury Fashion E-Commerce
Role-based fashion commerce platform with checkout, order tracking, and admin management.
| Category | Details |
|---|---|
| Stack | Next.js, Supabase, PostgreSQL |
| Features | Catalog, cart, payments, order tracking, admin dashboard |
| Security | Row-Level Security (RLS), auth |
| Live | vinnysvogue.in |
โจ Lunora Studio โ Handmade Bouquet E-Commerce
Cinematic GSAP storytelling landing page + full commerce workflow for handmade bouquets.
| Category | Details |
|---|---|
| Stack | Next.js, Supabase, GSAP, shadcn/ui |
| Features | Custom bouquet requests, coupon engine, admin analytics, CMS |
| Live | lunorastudio.vercel.app |
๐ STC โ Education Platform ยท ๐ฅ Filmica โ Flutter Camera App
STC โ learning-management + attendance system for students (Next.js, Supabase, RBAC).
Filmica โ cross-platform film-companion camera app with AI-powered GLSL shader effects (Flutter, Dart, Firebase).
now:
- Atlas M4 โ more language frontends (Go, Rust, Java) on the shared IR
- Cross-language rules driven by real-world feedback
- Mentor โ expanding the capability orchestrator
principles:
- Deterministic: same code + config -> same findings, always
- Provable: never guess; unresolved is labeled, not hidden
- Fast: native Rust, incremental cache, run-on-save speed
open_to:
- Developer-tools / systems engineering
- Product engineering & founder collaborations
- Open-source contributions
